LakeShen commented on code in PR #3382:
URL: https://github.com/apache/calcite/pull/3382#discussion_r1299451523
##########
core/src/main/java/org/apache/calcite/rel/metadata/RelMdMinRowCount.java:
##########
@@ -103,6 +104,10 @@ public Double getMinRowCount(Filter rel, RelMetadataQuery
mq) {
return mq.getMinRowCount(rel.getInput());
}
+ public @Nullable Double getMinRowCount(Sample rel, RelMetadataQuery mq) {
+ return mq.getMinRowCount(rel.getInput());
Review Comment:
Same as above.
--
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]