-
Notifications
You must be signed in to change notification settings - Fork 0
19924: Support JSON arrays reader/parse for datafusion #206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -125,6 +125,7 @@ async fn json_opener() -> Result<()> { | |
| projected, | ||
| FileCompressionType::UNCOMPRESSED, | ||
| Arc::new(object_store), | ||
| false, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. value:useful; category:bug; feedback:The Augment AI reviewer is correct! The example uses NDJSON formatted data, so it should tell the file opener to use the newline_delimited format. Prevents breaking the example by trying to read NDJSON file as a JSON array. |
||
| ); | ||
|
|
||
| let scan_config = FileScanConfigBuilder::new( | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Example passes wrong format flag for NDJSON data
High Severity
The
json_openerexample creates NDJSON data (newline-delimited JSON objects), but passesfalsefor thenewline_delimitedparameter toJsonOpener::new. Whennewline_delimitedisfalse, the reader expects JSON array format ([{...}, {...}]), not NDJSON. This mismatch causes the reader to fail becauseserde_json::from_str::<Vec<Value>>cannot parse NDJSON as a JSON array. The parameter should betrueto match the actual data format.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
value:useful; category:bug; feedback:The Bugbot AI reviewer is correct! The example uses NDJSON formatted data, so it should tell the file opener to use the newline_delimited format. Prevents breaking the example by trying to read NDJSON file as a JSON array.