You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/11/09 05:10:29 UTC

[arrow-rs] branch master updated (fe3318bba -> 8d75101e3)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


    from fe3318bba Split out arrow-csv (#2594) (#3044)
     add 8d75101e3 Split out arrow-json (#3044) (#3049)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/arrow.yml                        |   5 +
 .github/workflows/arrow_flight.yml                 |   1 +
 .github/workflows/dev_pr/labeler.yml               |   1 +
 .github/workflows/integration.yml                  |   1 +
 .github/workflows/miri.yaml                        |   1 +
 .github/workflows/parquet.yml                      |   1 +
 Cargo.toml                                         |   3 +-
 {arrow-csv => arrow-json}/Cargo.toml               |  15 +--
 arrow/src/json/mod.rs => arrow-json/src/lib.rs     |   0
 {arrow/src/json => arrow-json/src}/reader.rs       | 136 ++++++++++-----------
 {arrow/src/json => arrow-json/src}/writer.rs       |  98 ++++++++-------
 {arrow => arrow-json}/test/data/arrays.json        |   0
 {arrow => arrow-json}/test/data/basic.json         |   0
 {arrow => arrow-json}/test/data/basic_nulls.json   |   0
 .../test/data/list_string_dict_nested.json         |   0
 .../test/data/list_string_dict_nested_nulls.json   |   0
 {arrow => arrow-json}/test/data/mixed_arrays.json  |   0
 .../test/data/mixed_arrays.json.gz                 | Bin
 .../test/data/nested_structs.json                  |   0
 arrow/Cargo.toml                                   |  18 ++-
 arrow/benches/json_reader.rs                       |   5 +-
 arrow/src/lib.rs                                   |   6 +-
 dev/release/rat_exclude_files.txt                  |   1 +
 23 files changed, 148 insertions(+), 144 deletions(-)
 copy {arrow-csv => arrow-json}/Cargo.toml (77%)
 rename arrow/src/json/mod.rs => arrow-json/src/lib.rs (100%)
 rename {arrow/src/json => arrow-json/src}/reader.rs (97%)
 rename {arrow/src/json => arrow-json/src}/writer.rs (95%)
 rename {arrow => arrow-json}/test/data/arrays.json (100%)
 rename {arrow => arrow-json}/test/data/basic.json (100%)
 rename {arrow => arrow-json}/test/data/basic_nulls.json (100%)
 rename {arrow => arrow-json}/test/data/list_string_dict_nested.json (100%)
 rename {arrow => arrow-json}/test/data/list_string_dict_nested_nulls.json (100%)
 rename {arrow => arrow-json}/test/data/mixed_arrays.json (100%)
 rename {arrow => arrow-json}/test/data/mixed_arrays.json.gz (100%)
 rename {arrow => arrow-json}/test/data/nested_structs.json (100%)