xiedeyantu commented on code in PR #4632:
URL: https://github.com/apache/calcite/pull/4632#discussion_r2525414542
##########
core/src/test/java/org/apache/calcite/test/RelOptRulesTest.java:
##########
@@ -8634,7 +8491,7 @@ private void checkSemiJoinRuleOnAntiJoin(RelOptRule rule)
{
@Test void testExpandProjectInNullable() {
final String sql = "with e2 as (\n"
- + " select empno, case when true then deptno else null end as
deptno\n"
+ + " select empno, case when deptno>0 then deptno else null end as
deptno\n"
Review Comment:
```suggestion
+ " select empno, case when deptno > 0 then deptno else null end as
deptno\n"
```
--
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]