summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/foreign_key.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2019-02-03 22:37:56 +0100
committerSergei Golubchik <serg@mariadb.org>2019-02-05 01:34:17 +0100
commit676f43da3a1951e4e41d1cdb08d2c6c7833cb26e (patch)
treedfba6ef184ea9b062f961b5a741c8761b669af55 /mysql-test/suite/innodb/r/foreign_key.result
parentef4ccb6ce2fd36014a7d065c3c4cf7611d113211 (diff)
downloadmariadb-git-676f43da3a1951e4e41d1cdb08d2c6c7833cb26e.tar.gz
cleanup: don't ---replace_regex /#sql-.*/#sql-temporary/
no longer needed
Diffstat (limited to 'mysql-test/suite/innodb/r/foreign_key.result')
-rw-r--r--mysql-test/suite/innodb/r/foreign_key.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb/r/foreign_key.result b/mysql-test/suite/innodb/r/foreign_key.result
index c4c7fd6990e..74f113e1715 100644
--- a/mysql-test/suite/innodb/r/foreign_key.result
+++ b/mysql-test/suite/innodb/r/foreign_key.result
@@ -10,7 +10,7 @@ ERROR HY000: Can't create table `test`.`t2` (errno: 150 "Foreign key constraint
create table t2 (f1 int primary key,
constraint c1 foreign key (f1) references t1(f1)) engine=innodb;
alter table t2 add constraint c1 foreign key (f1) references t1(f1);
-ERROR HY000: Can't create table `test`.`#sql-temporary` (errno: 121 "Duplicate key on write or update")
+ERROR HY000: Can't create table `test`.`t2` (errno: 121 "Duplicate key on write or update")
set foreign_key_checks = 0;
alter table t2 add constraint c1 foreign key (f1) references t1(f1);
ERROR HY000: Duplicate FOREIGN KEY constraint name 'test/c1'