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
At the moment INSERT INTO statement is not supported in ballista, test: https://github.com/apache/datafusion-ballista/blob/c28ccaf006c2e30f6bf5c67ca5873e12f6abea68/ballista/client/tests/context_unsupported.rs#L155 fails with:
INSERT INTO
Error: Internal(failed to serialize logical plan: Internal(LogicalPlan serde is not yet implemented for Dml))
LogicalPlan::Dml(DmlStatement) is does not support serde
LogicalPlan::Dml(DmlStatement)
It would be great if LogicalPlan::Dml(DmlStatement {...} ) gets proto serde mapping
LogicalPlan::Dml(DmlStatement {...} )
Alternative would be to implement LogicalPlan::Dml(DmlStatement {...} ) in ballista code
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem or challenge?
At the moment
INSERT INTO
statement is not supported in ballista, test: https://github.com/apache/datafusion-ballista/blob/c28ccaf006c2e30f6bf5c67ca5873e12f6abea68/ballista/client/tests/context_unsupported.rs#L155 fails with:LogicalPlan::Dml(DmlStatement)
is does not support serdeDescribe the solution you'd like
It would be great if
LogicalPlan::Dml(DmlStatement {...} )
gets proto serde mappingDescribe alternatives you've considered
Alternative would be to implement
LogicalPlan::Dml(DmlStatement {...} )
in ballista codeAdditional context
No response
The text was updated successfully, but these errors were encountered: