diff options
author | unknown <pekka@mysql.com> | 2005-11-16 11:52:09 +0100 |
---|---|---|
committer | unknown <pekka@mysql.com> | 2005-11-16 11:52:09 +0100 |
commit | 563e5c8d7961c79106fcf3b83656942ece4b4cd4 (patch) | |
tree | f31a926bcc942a2bf4249bf4b48531f305810fa0 /mysql-test/t/ndb_charset.test | |
parent | 467deb4cb7aeb456086838cadcdf10b25b667a36 (diff) | |
download | mariadb-git-563e5c8d7961c79106fcf3b83656942ece4b4cd4.tar.gz |
ndb - bug#14007 4.1 [re-commit for LenZ merge]
mysql-test/r/ndb_charset.result:
bug#14007 test [re-commit]
mysql-test/t/ndb_charset.test:
bug#14007 test [re-commit]
ndb/include/kernel/AttributeDescriptor.hpp:
bug#14007 4.1 need getSizeInBytes [re-commit]
ndb/src/kernel/blocks/dbtup/DbtupRoutines.cpp:
bug#14007 4.1 *** do not AUTOmerge to 5.0 *** [re-commit]
Diffstat (limited to 'mysql-test/t/ndb_charset.test')
-rw-r--r-- | mysql-test/t/ndb_charset.test | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/mysql-test/t/ndb_charset.test b/mysql-test/t/ndb_charset.test index 89f1ed17cfb..a885427f593 100644 --- a/mysql-test/t/ndb_charset.test +++ b/mysql-test/t/ndb_charset.test @@ -159,14 +159,17 @@ select * from t1 where a = 'AaA' order by p; select * from t1 where a = 'AAA' order by p; drop table t1; -# bug +# bug#14007 create table t1 ( - a varchar(10) primary key -) engine=ndb; -insert into t1 values ('jonas % '); -replace into t1 values ('jonas % '); -replace into t1 values ('jonas % '); + a char(10) primary key +) engine=ndbcluster default charset=latin1; + +insert into t1 values ('aaabb'); +select * from t1; +replace into t1 set a = 'AAABB'; +select * from t1; +replace into t1 set a = 'aAaBb'; +select * from t1; +replace into t1 set a = 'aaabb'; select * from t1; drop table t1; - -# End of 4.1 tests |