This is an automated email from the ASF dual-hosted git repository.
westonpace pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.
from 7ffeead ARROW-14539: [C++] Dataset scanner test failing a DCHECK
add 7190a94 ARROW-14355: [C++] Create naive implementation of algorithm
to estimate table/batch buffer size
No new revisions were added by this update.
Summary of changes:
cpp/src/arrow/CMakeLists.txt | 1 +
cpp/src/arrow/compute/exec.cc | 8 +++
cpp/src/arrow/compute/exec.h | 9 +++
cpp/src/arrow/datum.cc | 20 +++++++
cpp/src/arrow/datum.h | 5 ++
cpp/src/arrow/datum_test.cc | 16 ++++++
cpp/src/arrow/util/CMakeLists.txt | 1 +
cpp/src/arrow/util/byte_size.cc | 107 +++++++++++++++++++++++++++++++++++
cpp/src/arrow/util/byte_size.h | 53 +++++++++++++++++
cpp/src/arrow/util/byte_size_test.cc | 104 ++++++++++++++++++++++++++++++++++
10 files changed, 324 insertions(+)
create mode 100644 cpp/src/arrow/util/byte_size.cc
create mode 100644 cpp/src/arrow/util/byte_size.h
create mode 100644 cpp/src/arrow/util/byte_size_test.cc