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
opt
Plans generated with Isthmus currently include opt_ as a prefix in function signatures.
opt_
For example
./isthmus -c "CREATE TABLE persons (zip INT)" "SELECT zip + 1 FROM persons"
creates the follow plan (elided for brevity)
{ "extensionUris": [{ "extensionUriAnchor": 1, "uri": "/functions_arithmetic.yaml" }], "extensions": [{ "extensionFunction": { "extensionUriReference": 1, "functionAnchor": 0, "name": "add:opt_i32_i32" } }], ... }
in which the + operators is named "add:opt_i32_i32"
+
"add:opt_i32_i32"
The current spec for Function Signature Compound Names no longer includes opt. This was removed as part of substrait-io/substrait#342.
Isthmus should be updated to omit the opt_ prefix to match the spec.
The text was updated successfully, but these errors were encountered:
Related to #18
Sorry, something went wrong.
Addressed by #124
No branches or pull requests
Plans generated with Isthmus currently include
opt_
as a prefix in function signatures.For example
creates the follow plan (elided for brevity)
in which the
+
operators is named"add:opt_i32_i32"
The current spec for Function Signature Compound Names no longer includes
opt
.This was removed as part of substrait-io/substrait#342.
Isthmus should be updated to omit the
opt_
prefix to match the spec.The text was updated successfully, but these errors were encountered: