Fix skip test for another load data issue

This commit is contained in:
Tim Sehn
2025-05-30 14:03:19 -07:00
parent a70097c2e2
commit bdc44571e1

View File

@@ -39,7 +39,6 @@ SQL
}
@test "sql-load-data: load with unknown file throws error" {
skip "Different error msg on windows."
run dolt sql << SQL
CREATE TABLE test(pk int primary key, c1 int, c2 int, c3 int, c4 int, c5 int);
LOAD DATA INFILE 'hello-ints.csv' INTO TABLE test CHARACTER SET UTF8MB4 FIELDS TERMINATED BY '||' ESCAPED BY '' LINES TERMINATED BY '\n' IGNORE 1 LINES;