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
In hybrid mode (where we convert Morel to expressions to relational algebra) a query on an empty list gives an error:
= Sys.set ("hybrid", true); val it = () : unit = from e in [] yield {a = 1, b = 2}; bad INTERSECT/UNION/EXCEPT input count
The problem is that we are trying to create a Calcite Union relational operator with zero inputs.
Union
The text was updated successfully, but these errors were encountered:
[MOREL-59] Converting an empty list to relational algebra throws
78d3c33
See #59
Fixed in 78d3c33.
Sorry, something went wrong.
No branches or pull requests
In hybrid mode (where we convert Morel to expressions to relational algebra) a query on an empty list gives an error:
The problem is that we are trying to create a Calcite
Union
relational operator with zero inputs.The text was updated successfully, but these errors were encountered: