summaryrefslogtreecommitdiff
path: root/mysql-test/main/bug46760.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/bug46760.result')
-rw-r--r--mysql-test/main/bug46760.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/main/bug46760.result b/mysql-test/main/bug46760.result
index f05d6c5ef99..d9c13c2cd7d 100644
--- a/mysql-test/main/bug46760.result
+++ b/mysql-test/main/bug46760.result
@@ -19,7 +19,7 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT 10
-) ENGINE=InnoDB DEFAULT CHARSET=latin1
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
DROP TABLE t1;
#
# MySQL Bug#39200: optimize table does not recognize
@@ -30,7 +30,7 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=COMPRESSED
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPRESSED
OPTIMIZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 optimize status Table is already up to date
@@ -38,6 +38,6 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1 ROW_FORMAT=COMPRESSED
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPRESSED
DROP TABLE t1;
End of 5.1 tests