mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
18 lines
620 B
Text
18 lines
620 B
Text
#
|
|
# MDEV-15330 Server crash or assertion `table->insert_values' failure in write_record upon LOAD DATA
|
|
#
|
|
--let $datadir= `select @@datadir`
|
|
CREATE TABLE t1 (a INT, b INT, c INT, vc INT AS (c), UNIQUE(a), UNIQUE(b)) WITH SYSTEM VERSIONING;
|
|
INSERT IGNORE INTO t1 (a,b,c) VALUES (1,2,3);
|
|
|
|
--enable_prepare_warnings
|
|
--disable_ps2_protocol
|
|
SELECT a, b, c FROM t1 INTO OUTFILE '15330.data';
|
|
--disable_prepare_warnings
|
|
--enable_ps2_protocol
|
|
LOAD DATA INFILE '15330.data' IGNORE INTO TABLE t1 (a,b,c);
|
|
LOAD DATA INFILE '15330.data' REPLACE INTO TABLE t1 (a,b,c);
|
|
|
|
# Cleanup
|
|
DROP TABLE t1;
|
|
--remove_file $datadir/test/15330.data
|