Skip to content

Commit ea8b123

Browse files
Bug fixes:
Use %windir% instead of c:\winnt\ (Bug #3786) Fixed wrong foreign key test in crash-me (Bug #3740)
1 parent 8e2ff7d commit ea8b123

3 files changed

Lines changed: 252 additions & 4 deletions

File tree

VC++Files/libmysql/libmysql.dsp

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sql-bench/crash-me.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,8 +414,7 @@ if ($dbh->do("create table crash_q (a integer, b integer,c1 CHAR(10))") &&
414414
["with add primary key",
415415
"alter table crash_q1 add primary key(c1)"]);
416416
report("Alter table add foreign key",'alter_add_foreign_key',
417-
"alter table crash_q add constraint f1 foreign key(c1)",
418-
" references crash_q1(c1)");
417+
"alter table crash_q add constraint f1 foreign key(c1) references crash_q1(c1)");
419418
try_and_report("Alter table drop foreign key",'alter_drop_foreign_key',
420419
["with drop constraint",
421420
"alter table crash_q drop constraint f1"],

0 commit comments

Comments
 (0)