summaryrefslogtreecommitdiff
path: root/mysql-test/suite/versioning
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2018-02-23 20:33:48 +0100
committerSergei Golubchik <serg@mariadb.org>2018-02-24 01:28:51 +0100
commit22073cbf3b507969eccee09cf4282aa70cd4c914 (patch)
treedb87bc4d3ed85c5fe1de51ef693905befde2ed96 /mysql-test/suite/versioning
parent5c7a40e3cf0b9869c7023e2f8c48b7c6e65a87dd (diff)
downloadmariadb-git-22073cbf3b507969eccee09cf4282aa70cd4c914.tar.gz
omit system invisible fields from the duplicate key error
just as SHOW CREATE TABLE omits them from the index definition
Diffstat (limited to 'mysql-test/suite/versioning')
-rw-r--r--mysql-test/suite/versioning/r/load_data.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/versioning/r/load_data.result b/mysql-test/suite/versioning/r/load_data.result
index 83d64cee787..5e7b36c9a6a 100644
--- a/mysql-test/suite/versioning/r/load_data.result
+++ b/mysql-test/suite/versioning/r/load_data.result
@@ -3,6 +3,6 @@ INSERT IGNORE INTO t1 (a,b,c) VALUES (1,2,3);
SELECT a, b, c FROM t1 INTO OUTFILE '15330.data';
LOAD DATA INFILE '15330.data' IGNORE INTO TABLE t1 (a,b,c);
Warnings:
-Warning 1062 Duplicate entry '1-2038-01-19 04:14:07.999999' for key 'a'
+Warning 1062 Duplicate entry '1' for key 'a'
LOAD DATA INFILE '15330.data' REPLACE INTO TABLE t1 (a,b,c);
DROP TABLE t1;