diff options
author | unknown <serg@serg.mylan> | 2004-08-13 18:29:25 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-08-13 18:29:25 +0200 |
commit | b6f6d5b2fd920c5f8c8e611c9b58b43077b21f8d (patch) | |
tree | 9f1d56d26b0dc04c637b834bdb89d3d7be9af018 /mysql-test/r/binary.result | |
parent | 4a0f586bc735abb1b9d0129210ab349cfb629d40 (diff) | |
download | mariadb-git-b6f6d5b2fd920c5f8c8e611c9b58b43077b21f8d.tar.gz |
apply UNIQUE constrain correctly for multi-byte charsets
only MyISAM is fixed
include/m_ctype.h:
my_charpos() macro
myisam/mi_key.c:
apply UNIQUE constrain correctly for multi-byte charsets
mysql-test/r/binary.result:
new test
mysql-test/r/key.result:
apply UNIQUE constrain correctly for multi-byte charsets
mysql-test/t/binary.test:
new test
mysql-test/t/func_gconcat.test:
make test to pass w/o InnoDB
mysql-test/t/key.test:
apply UNIQUE constrain correctly for multi-byte charsets
Diffstat (limited to 'mysql-test/r/binary.result')
-rw-r--r-- | mysql-test/r/binary.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/binary.result b/mysql-test/r/binary.result index f6ad190b05a..000c0c16d77 100644 --- a/mysql-test/r/binary.result +++ b/mysql-test/r/binary.result @@ -62,6 +62,10 @@ concat("-",a,"-",b,"-") select concat("-",a,"-",b,"-") from t1 ignore index (b) where b="hello "; concat("-",a,"-",b,"-") alter table t1 modify b tinytext not null, drop key b, add key (b(100)); +select concat("-",a,"-",b,"-") from t1; +concat("-",a,"-",b,"-") +-hello-hello- +-hello2-hello2- select concat("-",a,"-",b,"-") from t1 where b="hello "; concat("-",a,"-",b,"-") -hello-hello- |