diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:24:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:24:36 +0000 |
commit | 06eaf7232e9a920468c0f8d74dcf2fe8b555501c (patch) | |
tree | e2c7b5777f728320e5b5542b6213fd3591ba51e2 /mysql-test/suite/engines/funcs/r/ld_quote.result | |
parent | Initial commit. (diff) | |
download | mariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.tar.xz mariadb-06eaf7232e9a920468c0f8d74dcf2fe8b555501c.zip |
Adding upstream version 1:10.11.6.upstream/1%10.11.6
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/engines/funcs/r/ld_quote.result')
-rw-r--r-- | mysql-test/suite/engines/funcs/r/ld_quote.result | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/suite/engines/funcs/r/ld_quote.result b/mysql-test/suite/engines/funcs/r/ld_quote.result new file mode 100644 index 00000000..fc8e3bb2 --- /dev/null +++ b/mysql-test/suite/engines/funcs/r/ld_quote.result @@ -0,0 +1,19 @@ +DROP TABLE IF EXISTS t1; +CREATE TABLE t1 (c1 INTEGER NOT NULL PRIMARY KEY, c2 VARCHAR(10)); +LOAD DATA LOCAL INFILE 'suite/engines/funcs/t/load_quote.inc' INTO TABLE t1 FIELDS TERMINATED BY ',' ENCLOSED BY '\'' LINES TERMINATED BY '\n'; +Warnings: +Warning 1262 Row 3 was truncated; it contained more data than there were input columns +SELECT * FROM t1 ORDER BY c1; +c1 c2 +1 abc +2 def,ghi +3 "aa +4 efg +TRUNCATE TABLE t1; +SELECT * FROM t1 ORDER BY c1; +c1 c2 +1 abc +2 def,ghi +3 "aa +4 efg +DROP TABLE t1; |