diff options
author | bar@mysql.com <> | 2004-08-19 15:15:10 +0500 |
---|---|---|
committer | bar@mysql.com <> | 2004-08-19 15:15:10 +0500 |
commit | 2496e85b84aad64a273dcb6ee45bb4a706c4b87d (patch) | |
tree | 01ac6df006d72fc8d39e0e1c185bc3c8bc11a7bb /mysql-test/r/myisam.result | |
parent | 6b90806a4a5ee31ec9f5d9e59f1cd9e722dd1866 (diff) | |
download | mariadb-git-2496e85b84aad64a273dcb6ee45bb4a706c4b87d.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/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 354675cd4d4..0109097d3a1 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -412,6 +412,7 @@ aaa. aaa . select concat(a,'.') from t1 where binary a='aaa'; concat(a,'.') +aaa . aaa. update t1 set a='bbb' where a='aaa'; select concat(a,'.') from t1; |