You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
steps:
step1. create file 'file1.txt' and fill contents in both dble and mysql respectively:
1,1,,
step2. execute sqls in both dble and mysql respectively
createtabletest3(id int, c1 char(5), c2 char(5), c3 char(5));
load data local infile "./file1.txt" replace into table test3 fields terminated by ',' lines terminated by '\n';
step3.dble and mysql results :
dble resultsets:
mysql> load data local infile "./file1.txt" replace into table test3 fields terminated by ',' lines terminated by '\n';
ERROR 2013 (HY000): Lost connection to MySQL server during query
mysql resultsets:
mysql>load data local infile "./file1.txt" replace into table test3 fields terminated by ',' lines terminated by '\n';
Query OK, 1 row affected (0.01 sec)
Records: 1 Deleted: 0 Skipped: 0 Warnings: 0
expect result:
step3 dble get same result with mysql
real result:
step3 dble get different result with mysql
supplements:
capture package with tcpdump for dble and mysql respectively during step3: loaddata_dble.txt loaddata_mysql.txt
for the package after query [load data...], dble lack 0a( that is \n ASCII) compare with mysql
/label ~BUG
The text was updated successfully, but these errors were encountered:
dble version:
5.6.29-dble-2.18.10.0-c683b99-20181015051308
preconditions :
test3 is a base table
steps:
step1. create file 'file1.txt' and fill contents in both dble and mysql respectively:
dble resultsets:
mysql resultsets:
loaddata_dble.txt
loaddata_mysql.txt
for the package after query [load data...], dble lack 0a( that is \n ASCII) compare with mysql
/label ~BUG
The text was updated successfully, but these errors were encountered: