1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-22602 Disable UPDATE CASCADE for SQL constraints

fix it for named constraints too
This commit is contained in:
Sergei Golubchik
2022-11-03 18:31:42 +01:00
parent 107d54600e
commit a5eff044cb
3 changed files with 5 additions and 1 deletions

View File

@ -4622,7 +4622,7 @@ without_overlaps_err:
my_error(ER_TOO_LONG_IDENT, MYF(0), check->name.str);
DBUG_RETURN(TRUE);
}
if (check_expression(check, &check->name, VCOL_CHECK_TABLE))
if (check_expression(check, &check->name, VCOL_CHECK_TABLE, alter_info))
DBUG_RETURN(TRUE);
}
}