summaryrefslogtreecommitdiff
path: root/mysql-test/main/long_unique_innodb.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/long_unique_innodb.result')
-rw-r--r--mysql-test/main/long_unique_innodb.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/main/long_unique_innodb.result b/mysql-test/main/long_unique_innodb.result
index 96e5fac7310..8ed45ce6b10 100644
--- a/mysql-test/main/long_unique_innodb.result
+++ b/mysql-test/main/long_unique_innodb.result
@@ -11,7 +11,7 @@ t1 CREATE TABLE `t1` (
`c` int(11) DEFAULT NULL,
UNIQUE KEY `c` (`c`),
UNIQUE KEY `a` (`a`) USING HASH
-) ENGINE=InnoDB DEFAULT CHARSET=latin1
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
drop table t1;
#test for concurrent insert of long unique in innodb
create table t1(a blob unique) engine= InnoDB;
@@ -20,7 +20,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
`a` blob DEFAULT NULL,
UNIQUE KEY `a` (`a`) USING HASH
-) ENGINE=InnoDB DEFAULT CHARSET=latin1
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
connect 'con1', localhost, root,,;
connect 'con2', localhost, root,,;
connection con1;