summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb-autoinc-18274.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/r/innodb-autoinc-18274.result')
-rw-r--r--mysql-test/suite/innodb/r/innodb-autoinc-18274.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/r/innodb-autoinc-18274.result b/mysql-test/suite/innodb/r/innodb-autoinc-18274.result
index 22afc65a649..0f030a8c16f 100644
--- a/mysql-test/suite/innodb/r/innodb-autoinc-18274.result
+++ b/mysql-test/suite/innodb/r/innodb-autoinc-18274.result
@@ -7,7 +7,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
`c1` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`c1`)
-) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
DELETE FROM t1;
OPTIMIZE TABLE t1;
Table Op Msg_type Msg_text
@@ -18,7 +18,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
`c1` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`c1`)
-) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
+) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
INSERT INTO t1 VALUES(null);
SELECT * FROM t1;
c1