summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_charset.result
diff options
context:
space:
mode:
authorunknown <joreland@mysql.com>2004-12-01 10:13:18 +0100
committerunknown <joreland@mysql.com>2004-12-01 10:13:18 +0100
commit3887dd5bc632c62b5b96934dd3abed647424000d (patch)
tree01e7bf3cd68ccbb73525bbd4a65fc56b2a640cbf /mysql-test/r/ndb_charset.result
parent1c5a01e17c07e78e88b74a4da0ff3917390e4143 (diff)
downloadmariadb-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.result10
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;