summaryrefslogtreecommitdiff
path: root/sql-bench/crash-me.sh
diff options
context:
space:
mode:
authormonty@mysql.com <>2004-05-20 13:54:52 +0300
committermonty@mysql.com <>2004-05-20 13:54:52 +0300
commitea8b1234bcb8d84dca2c040aaf71ab1412ccaa3f (patch)
treeff46c1674b5ce4effc88bc4e7579db39c82ea66b /sql-bench/crash-me.sh
parent8e2ff7d13546e90eed7e3d05ad7f6a8d047ecdad (diff)
downloadmariadb-git-ea8b1234bcb8d84dca2c040aaf71ab1412ccaa3f.tar.gz
Bug fixes:
Use %windir% instead of c:\winnt\ (Bug #3786) Fixed wrong foreign key test in crash-me (Bug #3740)
Diffstat (limited to 'sql-bench/crash-me.sh')
-rw-r--r--sql-bench/crash-me.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/sql-bench/crash-me.sh b/sql-bench/crash-me.sh
index 00989fc0bc8..8009fc36586 100644
--- a/sql-bench/crash-me.sh
+++ b/sql-bench/crash-me.sh
@@ -414,8 +414,7 @@ if ($dbh->do("create table crash_q (a integer, b integer,c1 CHAR(10))") &&
["with add primary key",
"alter table crash_q1 add primary key(c1)"]);
report("Alter table add foreign key",'alter_add_foreign_key',
- "alter table crash_q add constraint f1 foreign key(c1)",
- " references crash_q1(c1)");
+ "alter table crash_q add constraint f1 foreign key(c1) references crash_q1(c1)");
try_and_report("Alter table drop foreign key",'alter_drop_foreign_key',
["with drop constraint",
"alter table crash_q drop constraint f1"],