-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adds the Excel format as one of the formats supported when creating a data link. - The data link can choose to read the file as a workbook, or read a sheet or range from it as a table, like `Excel_Format`. - Also updated Delimited format dialog to allow customizing the quote style.
- Loading branch information
Showing
20 changed files
with
357 additions
and
23 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,6 @@ | |
"type": "format", | ||
"subType": "delimited", | ||
"delimiter": " ", | ||
"headers": false | ||
"headers": "infer" | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
test/Table_Tests/data/datalinks/example-http-format-delimited-custom-quote.datalink
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,18 @@ | ||
{ | ||
"type": "HTTP", | ||
"libraryName": "Standard.Base", | ||
"method": "GET", | ||
"uri": "http://http-test-helper.local/testfiles/table.tsv", | ||
"format": { | ||
"type": "format", | ||
"subType": "delimited", | ||
"delimiter": "\t", | ||
"headers": true, | ||
"quote_style": { | ||
"type": "quote_style", | ||
"subType": "with_quotes", | ||
"quote": "'", | ||
"escape": "\\" | ||
} | ||
} | ||
} |
16 changes: 16 additions & 0 deletions
16
test/Table_Tests/data/datalinks/example-http-format-delimited-ignore-quote.datalink
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,16 @@ | ||
{ | ||
"type": "HTTP", | ||
"libraryName": "Standard.Base", | ||
"method": "GET", | ||
"uri": "http://http-test-helper.local/testfiles/js.txt", | ||
"format": { | ||
"type": "format", | ||
"subType": "delimited", | ||
"delimiter": " ", | ||
"headers": false, | ||
"quote_style": { | ||
"type": "quote_style", | ||
"subType": "no_quotes" | ||
} | ||
} | ||
} |
Oops, something went wrong.