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
Here is an example of a self-join query that reuses the TypeFilter twice (because it scans the same table twice):
TypeFilter
select * from t1 as x, t1 as y
When rendering the RelationalExpression with the group references, it does exactly what we expect:
RelationalExpression
However, when rendering without the group references, i.e. calling:
fdb-record-layer/fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/query/plan/cascades/expressions/RelationalExpression.java
Line 812 in ee43d69
with false argument, we get:
false
This is somewhat confusing considering that we use the same logical type filter, however it is still rendered twice.
The text was updated successfully, but these errors were encountered:
Update test cases in FDBSimpleQueryGraphTest to cover cases alleged…
FDBSimpleQueryGraphTest
72b1c32
… in issue FoundationDB#2880
72c36c2
normen662
No branches or pull requests
Here is an example of a self-join query that reuses the
TypeFilter
twice (because it scans the same table twice):When rendering the
RelationalExpression
with the group references, it does exactly what we expect:However, when rendering without the group references, i.e. calling:
fdb-record-layer/fdb-record-layer-core/src/main/java/com/apple/foundationdb/record/query/plan/cascades/expressions/RelationalExpression.java
Line 812 in ee43d69
with
false
argument, we get:This is somewhat confusing considering that we use the same logical type filter, however it is still rendered twice.
The text was updated successfully, but these errors were encountered: