mariadb/mysql-test/suite/vcol/t/load_data.test
Lena Startseva 0a5e4a0191 MDEV-31005: Make working cursor-protocol
Updated tests: cases with bugs or which cannot be run
with the cursor-protocol were excluded with
"--disable_cursor_protocol"/"--enable_cursor_protocol"

Fix for v.10.5
2024-09-18 18:39:26 +07:00

17 lines
616 B
Text

#
# MDEV-7968 Virtual column set to NULL using load data infile
#
create table t1 ( c1 varchar(10), c2 varchar(10), c3 int );
insert into t1 values ("a" , "b", 1), ("a" , "b", 2);
create table t2 like t1 ;
alter table t2 add column c4 bigint unsigned as (CONV(LEFT(MD5(concat(c1,c2,c3)), 16), 16, 10)) persistent unique key;
--disable_cursor_protocol
--disable_ps2_protocol
select * into outfile 't1.csv' from t1;
--enable_ps2_protocol
--enable_cursor_protocol
load data infile 't1.csv' ignore into table t2 ;
select * from t2;
insert into t2 (c1,c2,c3) values ("a" , "b", 4);
select * from t2;
drop table t1, t2;