summaryrefslogtreecommitdiff
path: root/mysql-test/r/ctype_tis620.result
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2004-09-09 18:44:53 +0500
committerunknown <bar@mysql.com>2004-09-09 18:44:53 +0500
commit8d1e535e4a855eca4dbe3caeda18b9e932f7baa8 (patch)
treea77f26e01a0e361542a42257d210011c3853fbe8 /mysql-test/r/ctype_tis620.result
parentcc12a462d626bf56e0f979f71dd6369a27bbbedd (diff)
downloadmariadb-git-8d1e535e4a855eca4dbe3caeda18b9e932f7baa8.tar.gz
Bug #5430 ctype_tis620 test failure
BitKeeper/deleted/.del-ctype_tis620-master.opt~38b79f80b9348a14: Delete: mysql-test/t/ctype_tis620-master.opt
Diffstat (limited to 'mysql-test/r/ctype_tis620.result')
-rw-r--r--mysql-test/r/ctype_tis620.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/ctype_tis620.result b/mysql-test/r/ctype_tis620.result
index 94c4b295713..1fece515f9f 100644
--- a/mysql-test/r/ctype_tis620.result
+++ b/mysql-test/r/ctype_tis620.result
@@ -116,7 +116,7 @@ CREATE TABLE t1 (
recid int(11) NOT NULL auto_increment,
dyninfo text,
PRIMARY KEY (recid)
-) ENGINE=MyISAM;
+) ENGINE=MyISAM CHARACTER SET tis620;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
@@ -2890,7 +2890,7 @@ SELECT 'a\t' < 'a';
SELECT 'a\t' < 'a ';
'a\t' < 'a '
1
-CREATE TABLE t1 (a char(10) not null);
+CREATE TABLE t1 (a char(10) not null) CHARACTER SET tis620;
INSERT INTO t1 VALUES ('a'),('a\0'),('a\t'),('a ');
SELECT hex(a),STRCMP(a,'a'), STRCMP(a,'a ') FROM t1;
hex(a) STRCMP(a,'a') STRCMP(a,'a ')