-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 5.5.52, 5.5.53
-
Component/s: Character Sets
-
Labels:None
Bug MDEV-11343 still exist in 5.5.52 and 5.5.53
Same steps to reproduce
echo "\ä" >/tmp/test.txt
|
Now I try to load this file into a table:
DROP TABLE IF EXISTS t1; |
CREATE TABLE t1 (a VARCHAR(10) CHARACTER SET utf8); |
LOAD DATA INFILE '/tmp/test.txt' INTO TABLE t1 CHARACTER SET utf8; |
It fails with this error:
ERROR 1300 (HY000): Invalid utf8 character string: ''
|
- relates to
-
MDEV-11343 LOAD DATA INFILE fails to load data with an escape character followed by a multi-byte character
-
- Closed
-