diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-10-30 21:08:34 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-10-30 21:08:34 +0100 |
commit | 319e84350997538cf842bc04e58cf9c939491b1b (patch) | |
tree | c114ce74c4d51f63ea69ceb8cacdd3b4d36fa747 /mysql-test/t/partition_column.test | |
parent | 76e2c7b9dcf3aff01a38734f156c1a68a07e154e (diff) | |
download | mariadb-git-319e84350997538cf842bc04e58cf9c939491b1b.tar.gz |
Fixed so that character set constants are encoded as hex strings in frm file, but as utf8 strings in the same manner as default values in show create table and information schema tables
Diffstat (limited to 'mysql-test/t/partition_column.test')
-rw-r--r-- | mysql-test/t/partition_column.test | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/t/partition_column.test b/mysql-test/t/partition_column.test index 3891610d12d..3d18fcdd337 100644 --- a/mysql-test/t/partition_column.test +++ b/mysql-test/t/partition_column.test @@ -47,7 +47,6 @@ create table t1 (a varchar(2) character set ucs2) partition by list columns (a) (partition p0 values in (0x2020), partition p1 values in ('')); -show create table t1; insert into t1 values (''); insert into t1 values (_ucs2 0x2020); drop table t1; |