pub fn infer_json_schema_from_iterator<I, V>(
value_iter: I,
) -> Result<Schema, ArrowError>
Expand description
Infer the fields of a JSON file by reading all items from the JSON Value Iterator.
The following type coercion logic is implemented:
Int64
andFloat64
are converted toFloat64
- Lists and scalars are coerced to a list of a compatible scalar
- All other cases are coerced to
Utf8
(String)
Note that the above coercion logic is different from what Spark has, where it would default to String type in case of List and Scalar values appeared in the same field.
The reason we diverge here is because we don’t have utilities to deal with JSON data once it’s interpreted as Strings. We should match Spark’s behavior once we added more JSON parsing kernels in the future.