-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(source): support array flattening for json (#8061)
- support array flattening for json #6794 Approved-By: tabVersion
- Loading branch information
Showing
11 changed files
with
94 additions
and
85 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{"v1": 1, "v2": "1"} | ||
{"v1": 2, "v2": "22"} | ||
{"v1": 3, "v2": "333"} | ||
{"v1": 4, "v2": "4444"} | ||
[{"v1": 3, "v2": "333"},{"v1": 4, "v2": "4444"}] |
File renamed without changes.
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{"v1": 1, "v2": "1"} | ||
{"v1": 2, "v2": "22"} | ||
{"v1": 3, "v2": "333"} | ||
{"v1": 4, "v2": "4444"} | ||
[{"v1": 3, "v2": "333"},{"v1": 4, "v2": "4444"}] |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
{"v1": 1, "v2": "1"} | ||
{"v1": 2, "v2": "22"} | ||
{"v1": 3, "v2": "333"} | ||
{"v1": 4, "v2": "4444"} | ||
[{"v1": 3, "v2": "333"},{"v1": 4, "v2": "4444"}] |
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 |
---|---|---|
|
@@ -15,6 +15,5 @@ | |
mod simd_json_parser; | ||
|
||
mod operators; | ||
mod util; | ||
|
||
pub use simd_json_parser::*; |
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 was deleted.
Oops, something went wrong.
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