tustvold commented on code in PR #3718:
URL: https://github.com/apache/arrow-rs/pull/3718#discussion_r1105990039
##########
parquet/src/arrow/arrow_writer/levels.rs:
##########
@@ -1121,7 +1121,7 @@ mod tests {
// Note: we are using the JSON Arrow reader for brevity
let json_content = r#"
{"stocks":{"long": "$AAA", "short": "$BBB"}}
- {"stocks":{"long": null, "long": "$CCC", "short": null}}
+ {"stocks":{"long": "$CCC", "short": null}}
Review Comment:
This wasn't actually valid JSON, it contained a duplicate key - the
RawReader handles this differently (preserving the duplicate) than the old JSON
reader which preserves only the last instance
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]