Bug #10541 | Load DATA not support to 'ENUM' And 'SET' data type | ||
---|---|---|---|
Submitted: | 11 May 2005 11:21 | Modified: | 12 May 2005 21:24 |
Reporter: | Disha | Email Updates: | |
Status: | Not a Bug | Impact on me: | |
Category: | MySQL Server | Severity: | S2 (Serious) |
Version: | 5.0.5-beta-nt | OS: | Windows (Windows xp) |
Assigned to: | MySQL Verification Team | CPU Architecture: | Any |
[11 May 2005 11:21]
Disha
[11 May 2005 17:36]
MySQL Verification Team
The behavior reported only happens on Windows server, on Linux server it works: mysql> LOAD DATA INFILE '/home/miguel/f/t1.txt' INTO TABLE t1// Query OK, 3 rows affected (0.01 sec) Records: 3 Deleted: 0 Skipped: 0 Warnings: 0 mysql> select * from t1; -> // +----+ | s1 | +----+ | a | | b | | c | +----+ 3 rows in set (0.00 sec)
[12 May 2005 21:24]
MySQL Verification Team
mysql> LOAD DATA INFILE 'c:\\t1.txt' INTO TABLE t1 LINES TERMINATED BY "\r\n"// Query OK, 3 rows affected (0.01 sec) Records: 3 Deleted: 0 Skipped: 0 Warnings: 0 mysql> select * from t1// +----+ | s1 | +----+ | a | | b | | c | +----+ 3 rows in set (0.01 sec) mysql> select version()// +---------------+ | version() | +---------------+ | 5.0.6-beta-nt | +---------------+ 1 row in set (0.03 sec)