mirror of
https://github.com/MariaDB/server.git
synced 2026-03-06 08:28:40 +01:00
14 lines
380 B
Text
14 lines
380 B
Text
connection node_2;
|
|
connection node_1;
|
|
#
|
|
# MDEV-38374 nonsense code in wsrep_store_key_val_for_row()
|
|
#
|
|
create table t1 (
|
|
id int auto_increment primary key,
|
|
blob_data longblob not null,
|
|
unique key idx_blob_prefix (blob_data(3072))
|
|
) engine=innodb;
|
|
insert into t1 (blob_data) values ('a');
|
|
update t1 set blob_data = repeat('x', 4000) where id = 1;
|
|
drop table t1;
|
|
# End of 10.6 tests
|