From 6cc16c50191951e1d4fe3eb657fa53eb3f44da9d Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 24 Jan 2006 13:54:34 +0100 Subject: [PATCH] Test "ctype_ucs": Disable warnings if "InnoDB" is not configured ("classic" build) (bug#16730). mysql-test/t/ctype_ucs.test: Disable warnings if "InnoDB" is not configured ("classic" build) (bug#16730). --- mysql-test/t/ctype_ucs.test | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql-test/t/ctype_ucs.test b/mysql-test/t/ctype_ucs.test index ed55287ca05..bd37d008173 100644 --- a/mysql-test/t/ctype_ucs.test +++ b/mysql-test/t/ctype_ucs.test @@ -422,7 +422,9 @@ drop table t1; # # Bug #14583 Bug on query using a LIKE on indexed field with ucs2_bin collation # +--disable_warnings create table t1(f1 varchar(5) CHARACTER SET ucs2 COLLATE ucs2_bin NOT NULL) engine=InnoDB; +--enable_warnings insert into t1 values('a'); create index t1f1 on t1(f1); select f1 from t1 where f1 like 'a%';