diff options
author | joreland@mysql.com <> | 2005-01-09 11:00:37 +0100 |
---|---|---|
committer | joreland@mysql.com <> | 2005-01-09 11:00:37 +0100 |
commit | 7b0748ed9a3dfb7540ab4f85340c8a29ef9f280b (patch) | |
tree | efa8424f5b6fe5eb8c39b2b2db1c9a2b86aac68c /mysql-test/r/ndb_charset.result | |
parent | 75014076d6c81bee9cee9e41fcc0b0020ec5b595 (diff) | |
download | mariadb-git-7b0748ed9a3dfb7540ab4f85340c8a29ef9f280b.tar.gz |
ndb -
Fix ndb_limit, handle cmpDate of length 3
Remove ucs2 test as it requires one to configure --with-extra-charsets
Diffstat (limited to 'mysql-test/r/ndb_charset.result')
-rw-r--r-- | mysql-test/r/ndb_charset.result | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/mysql-test/r/ndb_charset.result b/mysql-test/r/ndb_charset.result index 752a4fba630..500b0497890 100644 --- a/mysql-test/r/ndb_charset.result +++ b/mysql-test/r/ndb_charset.result @@ -305,31 +305,6 @@ count(*) 48 drop table t1; create table t1 ( -a char(5) character set ucs2, -b varchar(7) character set utf8, -primary key(a, b) -) engine=ndb; -insert into t1 values -('a','A '),('B ','b'),('c','C '),('D','d'),('e ','E'),('F','f '), -('A','b '),('b ','C'),('C','d '),('d','E'),('E ','f'), -('a','C '),('B ','d'),('c','E '),('D','f'); -insert into t1 values('d','f'); -ERROR 23000: Duplicate entry '' for key 1 -select a,b,length(a),length(b) from t1 order by a,b limit 3; -a b length(a) length(b) -a A 2 2 -A b 2 2 -a C 2 2 -select a,b,length(a),length(b) from t1 order by a desc, b desc limit 3; -a b length(a) length(b) -F f 2 3 -E f 2 1 -e E 2 1 -select a,b,length(a),length(b) from t1 where a='c' and b='c'; -a b length(a) length(b) -c C 2 5 -drop table t1; -create table t1 ( a char(10) primary key ) engine=ndb; insert into t1 values ('jonas % '); |