-
Notifications
You must be signed in to change notification settings - Fork 315
New issue
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
Supports prepare and execute statement #769
Comments
Note that the "prepare" and "execute" statement in datafusion only support postgresql style. We can follow the postgresql's document for implementing this feature: https://www.postgresql.org/docs/current/sql-prepare.html |
All other necessary features like plan cache and parameter type parsing and binding are implemented now, so I think this issue is relatively simple to Implement. Release to "good first issue". |
Is this still active? If so, I'd like to take it :) All stmts through client are treated as greptimedb/src/servers/src/mysql/handler.rs Line 357 in 7de336f
|
@CookiePieWw On first thought, it's a viable option. Thanks for your interest, assigned. |
@MichaelScofield I created a draft PR for this. Now I get stuck in 2 problems here:
Would you like to give me some advice? Thanks! :) |
|
What problem does the new feature solve?
For example:
May depend on #470
What does the feature do?
Supports
prepare
andexecute
statements.Implementation challenges
No response
The text was updated successfully, but these errors were encountered: