You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ze...@apache.org on 2022/04/21 21:24:08 UTC

[arrow] branch master updated (0e03af446c -> a40102a6f9)

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

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


    from 0e03af446c ARROW-12659: [C++] Support is_valid as a guarantee
     add a40102a6f9 ARROW-15950: [Go] Lift BitSetRunReader to internal/bitutils package

No new revisions were added by this update.

Summary of changes:
 go/arrow/array/array.go                            |  2 +-
 go/arrow/array/dictionary.go                       | 34 ++++-----
 go/arrow/array/dictionary_test.go                  |  4 +-
 go/arrow/internal/dictutils/dict.go                |  3 +-
 go/arrow/ipc/writer.go                             |  4 +-
 go/go.mod                                          |  6 +-
 go/go.sum                                          | 16 ++--
 .../utils => internal/bitutils}/bit_run_reader.go  |  5 +-
 .../bitutils}/bit_run_reader_test.go               | 26 +++----
 .../bitutils}/bit_set_run_reader.go                |  9 ++-
 .../bitutils}/bit_set_run_reader_test.go           | 61 +++++++--------
 go/internal/hashing/xxh3_memo_table.gen.go.tmpl    |  4 +-
 go/{parquet => }/internal/utils/math.go            |  0
 go/parquet/file/column_reader.go                   |  2 +-
 go/parquet/file/column_reader_test.go              |  2 +-
 go/parquet/file/level_conversion.go                |  3 +-
 go/parquet/file/record_reader.go                   |  2 +-
 go/parquet/file/row_group_reader.go                |  2 +-
 go/parquet/internal/encoding/boolean_decoder.go    |  3 +-
 go/parquet/internal/encoding/byte_array_decoder.go |  2 +-
 go/parquet/internal/encoding/byte_array_encoder.go |  9 ++-
 go/parquet/internal/encoding/decoder.go            |  3 +-
 go/parquet/internal/encoding/delta_bit_packing.go  | 13 ++--
 go/parquet/internal/encoding/delta_byte_array.go   |  2 +-
 .../internal/encoding/delta_length_byte_array.go   |  2 +-
 go/parquet/internal/encoding/encoder.go            | 15 ++--
 .../encoding/fixed_len_byte_array_decoder.go       |  2 +-
 .../encoding/fixed_len_byte_array_encoder.go       |  8 +-
 go/parquet/internal/encoding/levels.go             |  5 +-
 go/parquet/internal/encoding/levels_test.go        |  2 +-
 .../internal/encoding/plain_encoder_types.gen.go   | 43 +++++------
 .../encoding/plain_encoder_types.gen.go.tmpl       | 11 +--
 go/parquet/internal/encoding/typed_encoder.gen.go  | 39 +++++-----
 .../internal/encoding/typed_encoder.gen.go.tmpl    |  9 ++-
 go/parquet/internal/encoding/types.go              |  2 +-
 go/parquet/internal/testutils/pagebuilder.go       |  2 +-
 go/parquet/internal/utils/bit_benchmark_test.go    | 25 +++++--
 go/parquet/internal/utils/bit_block_counter.go     |  9 ++-
 go/parquet/internal/utils/bit_reader.go            |  5 +-
 go/parquet/internal/utils/endians_default.go       | 28 -------
 go/parquet/internal/utils/endians_s390x.go         | 31 --------
 go/parquet/internal/utils/rle.go                   | 18 +++--
 go/parquet/internal/utils/typed_rle_dict.gen.go    | 86 +++++++++++-----------
 go/parquet/metadata/statistics.go                  |  6 +-
 go/parquet/metadata/statistics_types.gen.go        | 54 +++++++-------
 go/parquet/metadata/statistics_types.gen.go.tmpl   |  5 +-
 go/parquet/pqarrow/column_readers.go               |  2 +-
 go/parquet/pqarrow/encode_arrow.go                 |  2 +-
 go/parquet/pqarrow/encode_arrow_test.go            |  5 +-
 go/parquet/pqarrow/file_writer.go                  |  2 +-
 go/parquet/pqarrow/path_builder.go                 |  8 +-
 51 files changed, 309 insertions(+), 334 deletions(-)
 rename go/{parquet/internal/utils => internal/bitutils}/bit_run_reader.go (97%)
 rename go/{parquet/internal/utils => internal/bitutils}/bit_run_reader_test.go (84%)
 rename go/{parquet/internal/utils => internal/bitutils}/bit_set_run_reader.go (97%)
 rename go/{parquet/internal/utils => internal/bitutils}/bit_set_run_reader_test.go (77%)
 rename go/{parquet => }/internal/utils/math.go (100%)
 delete mode 100644 go/parquet/internal/utils/endians_default.go
 delete mode 100644 go/parquet/internal/utils/endians_s390x.go