-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable mixed types as string in GpuJsonScan (#9993)
* Enable mixed types as string when reading JSON Signed-off-by: Andy Grove <[email protected]> * mixed type test passes * test for mixed primitive arrays * enable another test * trigger build * disable mixed type as string in GpuJsonToStruct --------- Signed-off-by: Andy Grove <[email protected]>
- Loading branch information
Showing
5 changed files
with
18 additions
and
4 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
3 changes: 3 additions & 0 deletions
3
integration_tests/src/test/resources/mixed-primitive-arrays.ndjson
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,3 @@ | ||
{ "var0": [1, 2, 3] } | ||
{ "var0": [false, false, true] } | ||
{ "var0": ["one", "two", "three"] } |
2 changes: 2 additions & 0 deletions
2
integration_tests/src/test/resources/mixed-types-in-struct.ndjson
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,2 @@ | ||
{ "var0": [1, 2, 3] } | ||
{ "var0": { "a": 54321} } |
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