diff options
author | unknown <joreland@mysql.com> | 2004-12-01 10:13:18 +0100 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-12-01 10:13:18 +0100 |
commit | 3887dd5bc632c62b5b96934dd3abed647424000d (patch) | |
tree | 01e7bf3cd68ccbb73525bbd4a65fc56b2a640cbf /mysql-test/r/ndb_charset.result | |
parent | 1c5a01e17c07e78e88b74a4da0ff3917390e4143 (diff) | |
download | mariadb-git-3887dd5bc632c62b5b96934dd3abed647424000d.tar.gz |
testcase for bug#6871, ndb, replace with collations
mysql-test/r/ndb_charset.result:
testcase for bug#6871
mysql-test/t/ndb_charset.test:
testcase for bug#6871
Diffstat (limited to 'mysql-test/r/ndb_charset.result')
-rw-r--r-- | mysql-test/r/ndb_charset.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_charset.result b/mysql-test/r/ndb_charset.result index 501bec99ea3..00bc36a7c0d 100644 --- a/mysql-test/r/ndb_charset.result +++ b/mysql-test/r/ndb_charset.result @@ -189,3 +189,13 @@ p a 5 aaa 6 AAA drop table t1; +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 % '); +select * from t1; +a +jonas % +drop table t1; |