Merge with 4.0 to get fixes for Windows project files

This commit is contained in:
monty@mysql.com 2004-05-25 02:47:25 +03:00
commit af44187bff
56 changed files with 354 additions and 118 deletions

View file

@ -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"],