-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[multistage][test] add from expression queries #9782
Conversation
680d921
to
4b87a67
Compare
Codecov Report
@@ Coverage Diff @@
## master #9782 +/- ##
=============================================
+ Coverage 24.55% 70.22% +45.67%
- Complexity 53 4920 +4867
=============================================
Files 1952 1964 +12
Lines 104676 105029 +353
Branches 15856 15894 +38
=============================================
+ Hits 25700 73755 +48055
+ Misses 76347 26137 -50210
- Partials 2629 5137 +2508
Flags with carried forward coverage won't be shown. Click here to find out more.
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
dff6aae
to
09969c1
Compare
...rc/main/java/org/apache/pinot/query/runtime/operator/LeafStageTransferableBlockOperator.java
Outdated
Show resolved
Hide resolved
...ry-runtime/src/main/java/org/apache/pinot/query/runtime/operator/operands/FilterOperand.java
Show resolved
Hide resolved
pinot-query-runtime/src/main/java/org/apache/pinot/query/service/QueryConfig.java
Outdated
Show resolved
Hide resolved
431397d
to
8cefcc3
Compare
} | ||
] | ||
}, | ||
"extended_join_features": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we have a test where left or right table is empty?
Can we add join with using condition and where exists?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- added several where clauses that matches nothing on left or right table already. but yes I can add several explicit joins where left or right table is entirely empty
- where exists is not supported.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm...last time I tested where exists, it was supported. Let me double check
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where exists is also added in #9817 and ignored.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added empty table explicit tests
c2f96f5
to
42bf2b0
Compare
from PostgresQL doc section 7.2.1
mostly testing the join features
depend on #9807