diff options
author | unknown <bar@mysql.com> | 2004-08-19 15:15:10 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-08-19 15:15:10 +0500 |
commit | 7fbc796d4ad9681fa2381791f8c895be4cbd738b (patch) | |
tree | 01ac6df006d72fc8d39e0e1c185bc3c8bc11a7bb /mysql-test/r/endspace.result | |
parent | 6cf9fd7cdb9d102ee1e12408f5a8e871d069618d (diff) | |
download | mariadb-git-7fbc796d4ad9681fa2381791f8c895be4cbd738b.tar.gz |
Bug#4521: unique key prefix interacts poorly with utf8.
Fix for binary collations for MyISAM and HEAP BTREE.
This patch also changes trailing spaces behaviour for
binary collations. Binary collations now have PAD
characteristic too.
Diffstat (limited to 'mysql-test/r/endspace.result')
-rw-r--r-- | mysql-test/r/endspace.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/endspace.result b/mysql-test/r/endspace.result index 4800bbf4ecb..167adea6674 100644 --- a/mysql-test/r/endspace.result +++ b/mysql-test/r/endspace.result @@ -19,7 +19,7 @@ select 'a a' > 'a', 'a \0' < 'a'; 1 1 select binary 'a a' > 'a', binary 'a \0' > 'a', binary 'a\0' > 'a'; binary 'a a' > 'a' binary 'a \0' > 'a' binary 'a\0' > 'a' -1 1 1 +1 0 0 create table t1 (text1 varchar(32) not NULL, KEY key1 (text1)); insert into t1 values ('teststring'), ('nothing'), ('teststring\t'); check table t1; |