mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
e5bc21af37
skip NULL VARCHAR key parts like it's done elsewhere
7 lines
319 B
Text
7 lines
319 B
Text
#
|
|
# MDEV-4813 Replication fails on updating a MEMORY table with an index using btree
|
|
#
|
|
create table t1 (f1 varchar(128), f2 varchar(128), key (f2,f1) using btree) engine=memory;
|
|
insert into t1 values (null,'not'),('one',null),('two',null),('three','');
|
|
select * from t1 where f1 = 'one' and f2 is null;
|
|
drop table t1;
|