We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
By default DataFusion doesn't support many operators, for example ->
->
> set datafusion.sql_parser.dialect = postgres; 0 row(s) fetched. Elapsed 0.001 seconds. > select 'foo'->'bar'; This feature is not implemented: Unsupported SQL binary operator Arrow
However, you can use the ExprPlanner API to support htem
ExprPlanner
However, when @dadepo asked about this in #15264 it was not clear it was supported
After some digging I found an example in our tests:
datafusion/datafusion/core/tests/user_defined/expr_planner.rs
Lines 35 to 124 in 87eec43
I would like a secton in in the docs that has an example of how to do this
Perhaps in this page: https://datafusion.apache.org/library-user-guide/adding-udfs.html Or maybe it needs its own page 🤔
No response
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
There might be an example in https://github.com/apache/datafusion/tree/main/datafusion-examples you could port to the docs
Thank you very much, I've done with this issue, will submit PR soon after test
Jiashu-Hu
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
By default DataFusion doesn't support many operators, for example
->
However, you can use the
ExprPlanner
API to support htemHowever, when @dadepo asked about this in #15264 it was not clear it was supported
After some digging I found an example in our tests:
datafusion/datafusion/core/tests/user_defined/expr_planner.rs
Lines 35 to 124 in 87eec43
Describe the solution you'd like
I would like a secton in in the docs that has an example of how to do this
Perhaps in this page: https://datafusion.apache.org/library-user-guide/adding-udfs.html
Or maybe it needs its own page 🤔
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: