mirror of
https://github.com/MariaDB/server.git
synced 2026-04-23 08:45:33 +02:00
Bug fixes:
Use %windir% instead of c:\winnt\ (Bug #3786) Fixed wrong foreign key test in crash-me (Bug #3740) VC++Files/libmysql/libmysql.dsp: Use %windir% instead of c:\winnt\ (Bug #3786) sql-bench/crash-me.sh: Fixed wrong foreign key test (Bug #3740) sql-bench/limits/mysql.cfg: Updated results
This commit is contained in:
parent
32f2ecd475
commit
220b9e3a86
3 changed files with 252 additions and 4 deletions
|
|
@ -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"],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue