felipecrv commented on code in PR #34570:
URL: https://github.com/apache/arrow/pull/34570#discussion_r1144106323
##########
python/pyarrow/_compute.pyx:
##########
@@ -1335,6 +1335,31 @@ class DictionaryEncodeOptions(_DictionaryEncodeOptions):
self._set_options(null_encoding)
+cdef class _RunEndEncodeOptions(FunctionOptions):
+ def _set_options(self, run_end_type=None):
+ run_end_ty = ensure_type(run_end_type, allow_none=True)
+ if run_end_ty is None:
+ self.wrapped.reset(new CRunEndEncodeOptions())
Review Comment:
Removing. Nice cleanup.
--
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]