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
Part of #9494
Having a good example helps to make features easier to use in DataFusion
In this case the usecase is programmatic construction of SQL using the DataFUsion LogicalPlan s using the api from #9726
Extend the example from @edmondop 's great work in #10528 with the following cases:
Bonus points for also adding 3. Parse SQL like SELECT * from foo into a DataFrame, adding a filter, and then converting that back to SQL
SELECT * from foo
Here is an example of creating a dataframe example https://docs.rs/datafusion/latest/datafusion/index.html#dataframe
You can call DataFrame::logical_plan to get the plan
DataFrame::logical_plan
Then call plan_to_sql and demonstrate the SQL that was created
plan_to_sql
https://github.com/apache/datafusion/blob/842f3933e3496a022984c2a37254475a3bcde1bf/datafusion/sql/tests/sql_integration.rs#L4689C1-L4690C51
No response
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Part of #9494
Is your feature request related to a problem or challenge?
Having a good example helps to make features easier to use in DataFusion
In this case the usecase is programmatic construction of SQL using the DataFUsion LogicalPlan s using the api from #9726
Describe the solution you'd like
Extend the example from @edmondop 's great work in #10528 with the following cases:
Bonus points for also adding
3. Parse SQL like
SELECT * from foo
into a DataFrame, adding a filter, and then converting that back to SQLDescribe alternatives you've considered
Here is an example of creating a dataframe example https://docs.rs/datafusion/latest/datafusion/index.html#dataframe
You can call
DataFrame::logical_plan
to get the planThen call
plan_to_sql
and demonstrate the SQL that was createdhttps://github.com/apache/datafusion/blob/842f3933e3496a022984c2a37254475a3bcde1bf/datafusion/sql/tests/sql_integration.rs#L4689C1-L4690C51
Additional context
No response
The text was updated successfully, but these errors were encountered: