Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions integration-tests/bats/sql-load-data.bats
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ SQL
}

@test "sql-load-data: works when column order is mismatched" {
skip "This needs to be fixed."

cat <<DELIM > 1pk2col-ints.csv
pk,c1
"hi","1"
Expand All @@ -161,7 +159,7 @@ DELIM

dolt sql << SQL
CREATE TABLE test(pk int, c1 longtext);
LOAD DATA INFILE '1pk2col-ints.csv' INTO TABLE test FIELDS ENCLOSED BY '"' TERMINATED BY ',' IGNORE 1 LINES (c1,pk);
LOAD DATA INFILE '1pk2col-ints.csv' INTO TABLE test FIELDS TERMINATED BY ',' ENCLOSED BY '"' IGNORE 1 LINES (c1,pk);
SQL

run dolt sql -r csv -q "select * from test"
Expand Down