You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by pr...@apache.org on 2019/08/30 09:08:06 UTC

[arrow] branch master updated (407973b -> 99cdb7e)

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

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


    from 407973b  ARROW-6371: [Doc] Row to columnar conversion example mentions arrow::Column in comments
     add 99cdb7e  ARROW-6144: [C++][Gandiva] Implement random functions in Gandiva

No new revisions were added by this update.

Summary of changes:
 cpp/src/gandiva/CMakeLists.txt                     |   4 +-
 cpp/src/gandiva/function_holder_registry.h         |   3 +
 cpp/src/gandiva/function_registry_math_ops.cc      |  10 +-
 cpp/src/gandiva/gdv_function_stubs.cc              |  22 +++++
 cpp/src/gandiva/random_generator_holder.cc         |  45 +++++++++
 cpp/src/gandiva/random_generator_holder.h          |  60 ++++++++++++
 cpp/src/gandiva/random_generator_holder_test.cc    | 103 +++++++++++++++++++++
 .../arrow/gandiva/evaluator/ProjectorTest.java     |  58 ++++++++++++
 8 files changed, 300 insertions(+), 5 deletions(-)
 create mode 100644 cpp/src/gandiva/random_generator_holder.cc
 create mode 100644 cpp/src/gandiva/random_generator_holder.h
 create mode 100644 cpp/src/gandiva/random_generator_holder_test.cc