summaryrefslogtreecommitdiff
path: root/mysql-test/main/check.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/check.result')
-rw-r--r--mysql-test/main/check.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/check.result b/mysql-test/main/check.result
index 11ed734da0c..d58c5044031 100644
--- a/mysql-test/main/check.result
+++ b/mysql-test/main/check.result
@@ -75,7 +75,7 @@ t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL,
`b` int(11) DEFAULT NULL,
`c` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
CREATE OR REPLACE TABLE t1 (a INT, b INT, c INT, CHECK (a+b>0)) ENGINE=MyISAM;
ALTER TABLE t1 DROP COLUMN b, DROP CONSTRAINT `CONSTRAINT_1`;
SHOW CREATE TABLE t1;
@@ -83,7 +83,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL,
`c` int(11) DEFAULT NULL
-) ENGINE=MyISAM DEFAULT CHARSET=latin1
+) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
DROP TABLE t1;
create temporary table t1 (
id int not null auto_increment primary key,