You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2018/12/10 01:50:16 UTC

[arrow] branch master updated: ARROW-3967: [Gandiva] [C++] Make node.h public

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

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


The following commit(s) were added to refs/heads/master by this push:
     new a4063ed  ARROW-3967: [Gandiva] [C++] Make node.h public
a4063ed is described below

commit a4063edf262caeb57c6cb7365e08756788c736a3
Author: Yosuke Shiro <yo...@gmail.com>
AuthorDate: Mon Dec 10 10:50:03 2018 +0900

    ARROW-3967: [Gandiva] [C++] Make node.h public
    
    Because some methods in node.h is useful in bindings.
    C GLib Gandiva bindings want to use LiteralNode::holder() to access raw literal data.
    
    Author: Yosuke Shiro <yo...@gmail.com>
    
    Closes #3135 from shiro615/make-gandiva-node-header-public and squashes the following commits:
    
    5950c52b <Yosuke Shiro>   Make node.h public
---
 cpp/src/gandiva/CMakeLists.txt | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/cpp/src/gandiva/CMakeLists.txt b/cpp/src/gandiva/CMakeLists.txt
index bd497dc..68f02f0 100644
--- a/cpp/src/gandiva/CMakeLists.txt
+++ b/cpp/src/gandiva/CMakeLists.txt
@@ -112,9 +112,13 @@ install(FILES
   expression.h
   expression_registry.h
   filter.h
+  func_descriptor.h
   function_signature.h
   gandiva_aliases.h
+  literal_holder.h
   logging.h
+  node.h
+  node_visitor.h
   projector.h
   selection_vector.h
   tree_expr_builder.h