1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-11 05:52:26 +03:00

Character set sets now check if required non-dynamic charsets were really compiled

BitKeeper/deleted/.del-ctype_ujis-master.opt~9f5cc09930fc1cf9:
  Delete: mysql-test/t/ctype_ujis-master.opt
This commit is contained in:
unknown
2003-05-23 15:10:05 +05:00
parent d7ab5da88f
commit f461dea4d7
9 changed files with 35 additions and 11 deletions

View File

@@ -1,3 +1,5 @@
-- source include/have_ucs2.inc
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings

View File

@@ -1 +0,0 @@
--default-character-set=ujis

View File

@@ -1,3 +1,5 @@
-- source include/have_ujis.inc
#
# Tests with the ujis character set
#
@@ -9,7 +11,7 @@ drop table if exists t1;
# Test problem with LEFT()
#
create table t1 (c text);
create table t1 (c text character set ujis);
insert into t1 values (0xa4a2),(0xa4a3);
select hex(left(c,1)) from t1 group by c;
drop table t1;