vibhatha commented on code in PR #13344:
URL: https://github.com/apache/arrow/pull/13344#discussion_r899044178
##########
python/pyarrow/_compute.pyx:
##########
@@ -2067,16 +2067,18 @@ def _group_by(args, keys, aggregations):
vector[CAggregate] c_aggregations
CDatum result
CAggregate c_aggr
+ shared_ptr[CFunctionOptions] null_opts
_pack_compute_args(args, &c_args)
_pack_compute_args(keys, &c_keys)
for aggr_func_name, aggr_opts in aggregations:
c_aggr.function = tobytes(aggr_func_name)
if aggr_opts is not None:
- c_aggr.options = (<FunctionOptions?> aggr_opts).get_options()
+ # (<FunctionOptions?> aggr_opts).get_options()
Review Comment:
Ah that's typo. I will remove this.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]