You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Dominik Moritz (Jira)" <ji...@apache.org> on 2021/02/28 18:02:00 UTC

[jira] [Created] (ARROW-11827) [Rust] Support JSON array of objects

Dominik Moritz created ARROW-11827:
--------------------------------------

             Summary: [Rust] Support JSON array of objects
                 Key: ARROW-11827
                 URL: https://issues.apache.org/jira/browse/ARROW-11827
             Project: Apache Arrow
          Issue Type: Bug
            Reporter: Dominik Moritz


The JSON parser should also support arrays of object, which are a common format for data in JSON (albeit not very efficient). 

```json
[{
    "a": 42,
    "b": true
}, {
    "a": 12,
    "b": false
}, {
    "a": 7,
    "b": true
}]
```



--
This message was sent by Atlassian Jira
(v8.3.4#803005)