mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
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
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user