Browse Source

tweak the test to pass, until the upstream bug#61209 is *completely* fixed

(see my comments starting from [9 Apr 22:18])
pull/57/head
Sergei Golubchik 14 years ago
parent
commit
9f010e3294
  1. 2
      mysql-test/suite/innodb/r/innodb-autoinc-61209.result
  2. 2
      mysql-test/suite/innodb/t/innodb-autoinc-61209.test

2
mysql-test/suite/innodb/r/innodb-autoinc-61209.result

@ -1,6 +1,6 @@
DROP TABLE IF EXISTS bug_61209;
CREATE TABLE bug_61209 (a INT auto_increment, PRIMARY KEY(a)) ENGINE=InnoDB;
INSERT INTO bug_61209 VALUES (), ();
INSERT INTO bug_61209 VALUES (), (), (), ();
# Connect con1

2
mysql-test/suite/innodb/t/innodb-autoinc-61209.test

@ -15,7 +15,7 @@ DROP TABLE IF EXISTS bug_61209;
#
CREATE TABLE bug_61209 (a INT auto_increment, PRIMARY KEY(a)) ENGINE=InnoDB;
INSERT INTO bug_61209 VALUES (), ();
INSERT INTO bug_61209 VALUES (), (), (), ();
--echo
--echo # Connect con1

Loading…
Cancel
Save