summaryrefslogtreecommitdiff
path: root/mysql-test/t/ctype_utf8mb4.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/ctype_utf8mb4.test')
-rw-r--r--mysql-test/t/ctype_utf8mb4.test12
1 files changed, 8 insertions, 4 deletions
diff --git a/mysql-test/t/ctype_utf8mb4.test b/mysql-test/t/ctype_utf8mb4.test
index 149a9a0498c..060c2aa1afb 100644
--- a/mysql-test/t/ctype_utf8mb4.test
+++ b/mysql-test/t/ctype_utf8mb4.test
@@ -1869,6 +1869,14 @@ set @@collation_connection=utf8mb4_bin;
--echo #
--echo #
+--echo # MDEV-11343 LOAD DATA INFILE fails to load data with an escape character followed by a multi-byte character
+--echo #
+CREATE TABLE t1 (a TEXT CHARACTER SET utf8mb4);
+LOAD DATA INFILE '../../std_data/loaddata/mdev-11343.txt' INTO TABLE t1 CHARACTER SET utf8mb4;
+SELECT HEX(a) FROM t1;
+DROP TABLE t1;
+
+--echo #
--echo # MDEV-6566 Different INSERT behaviour on bad bytes with and without character set conversion
--echo #
@@ -1910,10 +1918,6 @@ DROP TABLE t1;
--echo #
--echo #
---echo # End of tests
---echo #
-
---echo #
--echo # Start of 10.1 tests
--echo #