Commit 6cf9fd7c authored by unknown's avatar unknown
Browse files

ctype_utf8.test, ctype_utf8.result:

  Typo fix


mysql-test/r/ctype_utf8.result:
  Typo fix
mysql-test/t/ctype_utf8.test:
  Typo fix
parent b368cb3f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -362,13 +362,13 @@ c_a
б
drop table t1;
create table t1 (
c char(10) character set utf8 collate utf8_bin,
c char(10) character set utf8,
unique key a using btree (c(1))
) engine=heap;
show create table t1;
Table	Create Table
t1	CREATE TABLE `t1` (
  `c` char(10) character set utf8 collate utf8_bin default NULL,
  `c` char(10) character set utf8 default NULL,
  UNIQUE KEY `a` TYPE BTREE (`c`(1))
) ENGINE=HEAP DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
+1 −1
Original line number Diff line number Diff line
@@ -265,7 +265,7 @@ drop table t1;
# Check HEAP+BTREE, case insensitive collation
#
create table t1 (
c char(10) character set utf8 collate utf8_bin,
c char(10) character set utf8,
unique key a using btree (c(1))
) engine=heap;
show create table t1;