mihaibudiu commented on code in PR #3883:
URL: https://github.com/apache/calcite/pull/3883#discussion_r1698771530
##########
core/src/main/java/org/apache/calcite/rel/metadata/RelMdUtil.java:
##########
@@ -831,6 +831,9 @@ public static double getMinusRowCount(RelMetadataQuery mq,
Minus minus) {
}
double innerRowCount = left * right * selectivity;
switch (join.getJoinType()) {
+ case ASOF:
+ case LEFT_ASOF:
Review Comment:
In this implementation we have both ASOF and LEFT ASOF.
ASOF itself is an INNER join.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]