mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
fix some quoting in error messages
add_identifier change comes from 5.7, everything else is a follow-up
This commit is contained in:
@@ -469,9 +469,9 @@ ERROR HY000: Cannot drop column 'b': needed in a foreign key constraint 't2_ibfk
|
||||
alter table t2 DROP COLUMN b;
|
||||
ERROR HY000: Cannot drop column 'b': needed in a foreign key constraint 'test/t2_ibfk_1'
|
||||
alter table t1 DROP COLUMN b, ALGORITHM=COPY;
|
||||
ERROR HY000: Cannot drop column 'b': needed in a foreign key constraint 't2_ibfk_1' of table 'test.t2'
|
||||
ERROR HY000: Cannot drop column 'b': needed in a foreign key constraint 't2_ibfk_1' of table `test`.`t2`
|
||||
alter table t1 DROP COLUMN b;
|
||||
ERROR HY000: Cannot drop column 'b': needed in a foreign key constraint 'test/t2_ibfk_1' of table '"test"."t2"'
|
||||
ERROR HY000: Cannot drop column 'b': needed in a foreign key constraint 'test/t2_ibfk_1' of table `test`.`t2`
|
||||
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
|
||||
create unique index dc on t2 (d,c);
|
||||
affected rows: 0
|
||||
|
Reference in New Issue
Block a user