-
-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7123 from dolthub/aaron/import-supports-bom
dolt table import: json,csv: Support BOM file headers.
- Loading branch information
Showing
12 changed files
with
273 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+344 Bytes
integration-tests/bats/helper/employees-tbl-schema-unordered.utf16bebom.csv
Binary file not shown.
Binary file added
BIN
+344 Bytes
integration-tests/bats/helper/employees-tbl-schema-unordered.utf16lebom.csv
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
integration-tests/bats/helper/employees-tbl-schema-unordered.utf8bom.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
id, title, start date, end date, first name, last name | ||
0, "ceo", "", "", "tim", "sehn" | ||
1, "founder", "", "", "aaron", "son" | ||
2, "founder", "", "", "brian", "hendriks" |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"rows": [ | ||
{ | ||
"id": 0, | ||
"first name": "tim", | ||
"last name": "sehn", | ||
"title": "ceo", | ||
"start date": "", | ||
"end date": "" | ||
}, | ||
{ | ||
"id": 1, | ||
"first name": "aaron", | ||
"last name": "son", | ||
"title": "founder", | ||
"start date": "", | ||
"end date": "" | ||
}, | ||
{ | ||
"id": 2, | ||
"first name": "brian", | ||
"last name": "hendricks", | ||
"title": "founder", | ||
"start date": "", | ||
"end date": "" | ||
} | ||
] | ||
} |
Oops, something went wrong.