amol- commented on a change in pull request #11830:
URL: https://github.com/apache/arrow/pull/11830#discussion_r761191789
##########
File path: docs/source/conf.py
##########
@@ -463,3 +464,40 @@ def setup(app):
# This will also rebuild appropriately when the value changes.
app.add_config_value('cuda_enabled', cuda_enabled, 'env')
app.add_config_value('flight_enabled', flight_enabled, 'env')
+ app.add_directive('computefuncs', ComputeFunctionsTableDirective)
+
+
+class ComputeFunctionsTableDirective(Directive):
+ has_content = True
+ option_spec = {
+ "kind": directives.unchanged
+ }
+
+ def run(self):
+ from docutils.statemachine import ViewList
+ from docutils import nodes
+ import pyarrow._compute
Review comment:
Just because I was using `get_function_registry`, I'll switch to use the
compute module itself.
--
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]