Re: Arrow FunctionRegsitry usage in Python

2022-06-23 Thread Vibhatha Abeykoon
Hello Mura, You can also take a look at the compute registration example [1], [2] in the Arrow source code to get an idea how to write a custom function and use it in C++. Assuming your objective is to add a new function to C++ permanently and use it in Python, you may need to take a look at the e

Re: Arrow FunctionRegsitry usage in Python

2022-06-23 Thread Aldrin
Hi Mura, The short answer is: yes, it is possible. Naively, to expose such a function something may need to be added in cython. I am learning more about how to add new compute functions, so I am not sure yet if functions in the function registry are automatically exposed to other languages (e.g. R

Arrow FunctionRegsitry usage in Python

2022-06-22 Thread Murali S
Hi , I was wondering if it is possible to add a C++ Function to the Compute FunctionRegistry and then use the functions in python. Would be great if you could provide examples of such usage. Also are all