Skip to content

Commit

Permalink
Fix expression reference
Browse files Browse the repository at this point in the history
  • Loading branch information
wjones127 committed May 4, 2022
1 parent 76fab4c commit dac1264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyarrow/gandiva.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ cdef class TreeExprBuilder(_Weakrefable):

def make_expression(self, Node root_node not None,
Field return_field not None):
cdef shared_ptr[CExpression] r = TreeExprBuilder_MakeExpression(
cdef shared_ptr[CGandivaExpression] r = TreeExprBuilder_MakeExpression(
root_node.node, return_field.sp_field)
cdef Expression expression = Expression()
expression.init(r)
Expand Down

0 comments on commit dac1264

Please sign in to comment.