Commits


Neville Dipale authored and Andy Grove committed c494f88fc43
ARROW-4540: [Rust] Basic JSON reader Replaces #3624 ___ An initial JSON reader for Rust, which reads JSON line-delimited files into record batches. Supports: * schema inference and user-supplied schema * projection by column names * reading lists * reading lists and scalars, converting scalars to single-value lists Excluded in this PR are: * Struct arrays * Nesting in lists. The list or struct is replaced with null for now * Extremely mixed types, e.g [int, bool, float, list(_)] Author: Neville Dipale <nevilledips@gmail.com> Closes #3685 from nevi-me/rust/json-reader2 and squashes the following commits: 594d056 <Neville Dipale> ARROW-4540: Basic JSON reader