raulcd commented on code in PR #46566:
URL: https://github.com/apache/arrow/pull/46566#discussion_r2120346861
##########
python/pyarrow/_acero.pyx:
##########
@@ -373,15 +379,17 @@ class HashJoinNodeOptions(_HashJoinNodeOptions):
output_suffix_for_right : str
Suffix added to names of output fields coming from right input,
see `output_suffix_for_left` for details.
+ filter: Expression
Review Comment:
```suggestion
filter: pyarrow.compute.Expression
```
##########
python/pyarrow/table.pxi:
##########
@@ -5665,6 +5665,8 @@ cdef class Table(_Tabular):
in the join result.
use_threads : bool, default True
Whether to use multithreading or not.
+ filter: Expression
Review Comment:
```suggestion
filter: pyarrow.compute.Expression
```
##########
python/pyarrow/acero.py:
##########
@@ -114,6 +114,8 @@ def _perform_join(join_type, left_operand, left_keys,
in the join result.
output_type: Table or InMemoryDataset
The output type for the exec plan result.
+ filter: Expression
Review Comment:
```suggestion
filter: pyarrow.compute.Expression
```
--
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]