You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ra...@apache.org on 2022/02/01 06:17:30 UTC

[arrow] branch master updated (40ac810 -> adfb913)

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

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


    from 40ac810  ARROW-15509: [Go][Parquet] Parquet cmds crash
     add adfb913  ARROW-12516: [C++][Gandiva] Implements castINTERVALDAY(varchar) and castINTERVALYEAR(varchar) functions

No new revisions were added by this update.

Summary of changes:
 cpp/src/gandiva/CMakeLists.txt                     |   4 +-
 cpp/src/gandiva/function_holder_registry.h         |  18 +-
 cpp/src/gandiva/function_registry_datetime.cc      |  24 +
 cpp/src/gandiva/gdv_function_stubs.cc              |  96 ++++
 cpp/src/gandiva/interval_holder.cc                 | 397 ++++++++++++++++
 cpp/src/gandiva/interval_holder.h                  | 158 +++++++
 cpp/src/gandiva/interval_holder_test.cc            | 503 +++++++++++++++++++++
 .../arrow/gandiva/evaluator/ProjectorTest.java     | 136 +++++-
 8 files changed, 1324 insertions(+), 12 deletions(-)
 create mode 100644 cpp/src/gandiva/interval_holder.cc
 create mode 100644 cpp/src/gandiva/interval_holder.h
 create mode 100644 cpp/src/gandiva/interval_holder_test.cc