diff options
author | unknown <matthias@three.local.lan> | 2004-12-13 12:24:35 +0100 |
---|---|---|
committer | unknown <matthias@three.local.lan> | 2004-12-13 12:24:35 +0100 |
commit | 0e21e51188634edbddf0f035f897405ce81ae9cf (patch) | |
tree | 115057dc49082454e338023aebcaae314e5fa95d /mysql-test/include | |
parent | f6725e5640a83ad68b5f0bd7fd8e9dbe1f2d1086 (diff) | |
parent | 0a3590f6d08342512deecfe15e91424eb01c0be4 (diff) | |
download | mariadb-git-0e21e51188634edbddf0f035f897405ce81ae9cf.tar.gz |
Merge mleich@bk-internal.mysql.com:/home/bk/mysql-4.1
into three.local.lan:/home/matthias/Arbeit/mysql-4.1/src
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/ctype_common.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/include/ctype_common.inc b/mysql-test/include/ctype_common.inc index 77937bdb854..202c508a9c9 100644 --- a/mysql-test/include/ctype_common.inc +++ b/mysql-test/include/ctype_common.inc @@ -25,6 +25,7 @@ USE d1; CREATE TABLE t1 (c CHAR(10), KEY(c)); --enable_warnings # check the column was created with the expected charset/collation +--replace_result select,insert,update,references "" SHOW FULL COLUMNS FROM t1; INSERT INTO t1 VALUES ('aaa'),('aaaa'),('aaaaa'); SELECT c as want3results FROM t1 WHERE c LIKE 'aaa%'; @@ -37,6 +38,7 @@ DROP TABLE t1; CREATE TABLE t1 (c1 varchar(15), KEY c1 (c1(2))); --enable_warnings # check the column was created with the expected charset/collation +--replace_result select,insert,update,references "" SHOW FULL COLUMNS FROM t1; INSERT INTO t1 VALUES ('location'),('loberge'),('lotre'),('boabab'); SELECT c1 as want3results from t1 where c1 like 'l%'; |