mihaibudiu commented on code in PR #4229:
URL: https://github.com/apache/calcite/pull/4229#discussion_r1985499545
##########
core/src/main/java/org/apache/calcite/rel/rules/FilterCalcMergeRule.java:
##########
@@ -105,7 +106,8 @@ public interface Config extends RelRule.Config {
default Config withOperandFor(Class<? extends Filter> filterClass,
Class<? extends Calc> calcClass) {
return withOperandSupplier(b0 ->
- b0.operand(filterClass).oneInput(b1 ->
+ b0.operand(filterClass).predicate(filter ->
Review Comment:
I would personally indent this using a dot on each line, I find that easier
to follow.
```
b0.operand()
.predicate()
.oneInput()
```
--
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]