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

kszucs pushed a change to branch maint-1.0.x
in repository https://gitbox.apache.org/repos/asf/arrow.git.


 discard b24b7e9  ARROW-9598: [C++][Parquet] Fix writing nullable structs
 discard f925588  ARROW-9606: [C++][Dataset] Support 
`"a"_.In(<>).Assume(<compound>)`
 discard 91d8494  ARROW-9402: [C++] Rework portable wrappers for checked 
integer arithmetic
 discard ccecca6  ARROW-9536: [Java] Miss parameters in 
PlasmaOutOfMemoryException.java
 discard abf6b07  ARROW-9643: [C++] Only register the SIMD variants when it's 
supported.
 discard 51d0c45  ARROW-9573: [Python][Dataset] Provide 
read_table(ignore_prefixes=)
 discard d9166a3  ARROW-9609: [C++][Dataset] CsvFileFormat reads all virtual 
columns as null
 discard ac43896  ARROW-9597: [C++] AddAlias in compute::FunctionRegistry 
should be synchronized
 discard b1428d9  ARROW-9600: [Rust] pin proc macro
 discard 10d3705  ARROW-9599: [CI] Appveyor toolchain build fails because CMake 
detects different C and C++ compilers
 discard b9ed76f  ARROW-9600: [Rust][Arrow] pin older version of proc-macro2 
during build
 discard 127ada2  ARROW-9575: [R] gcc-UBSAN failure on CRAN
 discard 6dd9152  ARROW-9596: [CI][Crossbow] Fix homebrew-cpp again, again
 discard 4c8774d  ARROW-9589: [C++/R] Forward declare structs as structs
 discard 25eb4cb  ARROW-9570: [Doc] Clean up sphinx sidebar
 discard 68ce1f6  ARROW-9544: [R] Fix version argument of write_parquet()
 discard 1803b36  ARROW-9574: [R] Cleanups for CRAN 1.0.0 release
 discard e56e827  ARROW-9569: [CI][R] Fix rtools35 builds for msys2 key change
 discard 2b7d190  ARROW-9563: [Dev][Release] Use archery's changelog generator 
when creating release notes for the website
 discard 9605092  ARROW-9560: [Packaging] Add required conda-forge.yml
 discard e905430  ARROW-9549 [Rust] Fixed version in dependency in parquet.
 discard 9da43be  ARROW-9535: [Python] Remove symlink fixes from conda recipe

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/maint-1.0.x (b0d6239)
            \
             O -- O -- O   (b24b7e9)

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 LICENSE.txt                                        |   16 -
 ci/appveyor-cpp-setup.bat                          |    1 -
 ci/docker/linux-r.dockerfile                       |    8 +-
 ci/docker/ubuntu-18.04-r-sanitizer.dockerfile      |  100 ++
 ci/scripts/r_docker_configure.sh                   |   13 +-
 ci/scripts/r_sanitize.sh                           |    6 +-
 ci/scripts/r_windows_build.sh                      |    3 -
 cpp/src/arrow/array/concatenate.cc                 |    2 +-
 cpp/src/arrow/array/data.cc                        |    2 +-
 cpp/src/arrow/array/validate.cc                    |   16 +-
 cpp/src/arrow/buffer.cc                            |    2 +-
 cpp/src/arrow/compute/kernels/aggregate_basic.cc   |   24 -
 cpp/src/arrow/compute/kernels/codegen_internal.h   |  353 ++-----
 cpp/src/arrow/compute/kernels/scalar_arithmetic.cc |  148 +--
 .../compute/kernels/scalar_arithmetic_benchmark.cc |   57 +-
 .../compute/kernels/scalar_arithmetic_test.cc      |  280 ++---
 .../arrow/compute/kernels/scalar_cast_boolean.cc   |    8 +-
 .../arrow/compute/kernels/scalar_cast_numeric.cc   |   50 +-
 .../arrow/compute/kernels/scalar_cast_temporal.cc  |   12 +-
 cpp/src/arrow/compute/kernels/scalar_nested.cc     |    4 +-
 cpp/src/arrow/compute/kernels/scalar_string.cc     |   10 +-
 cpp/src/arrow/compute/kernels/test_util.cc         |  113 +--
 cpp/src/arrow/compute/kernels/test_util.h          |   10 -
 cpp/src/arrow/compute/registry.cc                  |   11 -
 cpp/src/arrow/dataset/file_csv.cc                  |   93 +-
 cpp/src/arrow/dataset/file_csv_test.cc             |   17 -
 cpp/src/arrow/dataset/file_ipc_test.cc             |   18 -
 cpp/src/arrow/dataset/file_parquet.h               |    2 +-
 cpp/src/arrow/dataset/filter.cc                    |  259 +----
 cpp/src/arrow/dataset/filter.h                     |   10 -
 cpp/src/arrow/dataset/filter_test.cc               |   13 +-
 cpp/src/arrow/dataset/partition.cc                 |   39 +-
 cpp/src/arrow/pretty_print.cc                      |    2 +-
 cpp/src/arrow/scalar.h                             |   16 +-
 cpp/src/arrow/util/basic_decimal.cc                |    2 +-
 cpp/src/arrow/util/bit_block_counter.cc            |   23 +-
 cpp/src/arrow/util/bit_block_counter.h             |  186 +---
 cpp/src/arrow/util/bit_block_counter_test.cc       |   92 --
 cpp/src/arrow/util/decimal.cc                      |    2 +-
 cpp/src/arrow/util/int_util.h                      |   94 ++
 cpp/src/arrow/util/int_util_internal.h             |  124 ---
 cpp/src/arrow/util/int_util_test.cc                |    1 -
 cpp/src/arrow/util/windows_fixup.h                 |   11 -
 cpp/src/arrow/vendored/portable-snippets/README.md |   10 -
 .../arrow/vendored/portable-snippets/safe-math.h   | 1071 --------------------
 cpp/src/arrow/visitor_inline.h                     |   90 +-
 cpp/src/parquet/arrow/arrow_reader_writer_test.cc  |   17 -
 cpp/src/parquet/arrow/path_internal.cc             |    3 +-
 cpp/src/parquet/arrow/reader_internal.cc           |    4 +-
 cpp/src/parquet/column_reader.cc                   |   24 +-
 cpp/src/parquet/column_writer.cc                   |    9 +-
 cpp/src/parquet/types.h                            |    1 +
 dev/archery/archery/cli.py                         |   17 -
 dev/release/post-03-website.sh                     |    3 +-
 dev/tasks/conda-recipes/arrow-cpp/bld-pyarrow.bat  |   23 +-
 dev/tasks/conda-recipes/conda-forge.yml            |    1 -
 dev/tasks/homebrew-formulae/travis.osx.yml         |    3 +-
 docker-compose.yml                                 |    7 +-
 docs/source/index.rst                              |    6 +-
 .../exceptions/PlasmaOutOfMemoryException.java     |    8 -
 .../org/apache/arrow/plasma/PlasmaClientTest.java  |   17 +-
 python/pyarrow/dataset.py                          |    2 +-
 python/pyarrow/parquet.py                          |   23 +-
 python/pyarrow/tests/test_parquet.py               |   24 -
 r/NEWS.md                                          |    6 -
 r/R/parquet.R                                      |    5 +-
 r/README.md                                        |    2 +-
 r/configure                                        |   21 +-
 r/cran-comments.md                                 |    2 +-
 r/man/write_parquet.Rd                             |    3 +-
 r/src/arrow_exports.h                              |   12 +-
 r/tests/testthat/test-dataset.R                    |   27 -
 r/tests/testthat/test-parquet.R                    |   14 -
 rust/arrow-flight/Cargo.toml                       |    4 +-
 rust/arrow-flight/src/arrow.flight.protocol.rs     |   20 +-
 rust/parquet/Cargo.toml                            |    2 +-
 76 files changed, 785 insertions(+), 2949 deletions(-)
 create mode 100644 ci/docker/ubuntu-18.04-r-sanitizer.dockerfile
 delete mode 100644 cpp/src/arrow/util/int_util_internal.h
 delete mode 100644 cpp/src/arrow/vendored/portable-snippets/README.md
 delete mode 100644 cpp/src/arrow/vendored/portable-snippets/safe-math.h
 delete mode 100644 dev/tasks/conda-recipes/conda-forge.yml

Reply via email to