[fix](nereids) remove useless cast in in-predicate (#23171)
consider sql "select * from test_simplify_in_predicate_t where a in ('1992-01-31', '1992-02-01', '1992-02-02', '1992-02-03', '1992-02-04');"
before:
```
| 0:VOlapScanNode |
| TABLE: default_cluster:bugfix.test_simplify_in_predicate_t(test_simplify_in_predicate_t), PREAGGREGATION: OFF. Reason: No aggregate on scan. |
| PREDICATES: CAST(a[#0] AS DATETIMEV2(0)) IN ('1992-01-31 00:00:00', '1992-02-01 00:00:00', '1992-02-02 00:00:00', '1992-02-03 00:00:00', '1992-02-04 00:00:00') AND __DORIS_DELETE_SIGN__[#1] = 0 |
| partitions=0/1, tablets=0/0, tabletList= |
| cardinality=1, avgRowSize=0.0, numNodes=1 |
| pushAggOp=NONE |
| projections: a[#0] |
| project output tuple id: 1 |
| tuple ids: 0
```
after:
```
| 0:VOlapScanNode |
| TABLE: default_cluster:bugfix.test_simplify_in_predicate_t(test_simplify_in_predicate_t), PREAGGREGATION: OFF. Reason: No aggregate on scan. |
| PREDICATES: a[#0] IN ('1992-01-31', '1992-02-01', '1992-02-02', '1992-02-03', '1992-02-04') AND __DORIS_DELETE_SIGN__[#1] = 0 |
| partitions=0/1, tablets=0/0, tabletList= |
| cardinality=1, avgRowSize=0.0, numNodes=1 |
| pushAggOp=NONE |
| projections: a[#0] |
| project output tuple id: 1 |
| tuple ids: 0
```
This commit is contained in:
@ -29,6 +29,7 @@ import org.apache.doris.nereids.trees.plans.RelationId;
|
||||
import org.apache.doris.nereids.types.BigIntType;
|
||||
import org.apache.doris.nereids.types.BooleanType;
|
||||
import org.apache.doris.nereids.types.DataType;
|
||||
import org.apache.doris.nereids.types.DateV2Type;
|
||||
import org.apache.doris.nereids.types.DoubleType;
|
||||
import org.apache.doris.nereids.types.IntegerType;
|
||||
import org.apache.doris.nereids.types.StringType;
|
||||
@ -85,7 +86,7 @@ public abstract class ExpressionRewriteTestHelper {
|
||||
Assertions.assertEquals(expectedExpression.toSql(), rewrittenExpression.toSql());
|
||||
}
|
||||
|
||||
private Expression replaceUnboundSlot(Expression expression, Map<String, Slot> mem) {
|
||||
protected Expression replaceUnboundSlot(Expression expression, Map<String, Slot> mem) {
|
||||
List<Expression> children = Lists.newArrayList();
|
||||
boolean hasNewChildren = false;
|
||||
for (Expression child : expression.children()) {
|
||||
@ -103,7 +104,7 @@ public abstract class ExpressionRewriteTestHelper {
|
||||
return hasNewChildren ? expression.withChildren(children) : expression;
|
||||
}
|
||||
|
||||
private Expression typeCoercion(Expression expression) {
|
||||
protected Expression typeCoercion(Expression expression) {
|
||||
return FunctionBinder.INSTANCE.rewrite(expression, null);
|
||||
}
|
||||
|
||||
@ -121,6 +122,8 @@ public abstract class ExpressionRewriteTestHelper {
|
||||
return VarcharType.SYSTEM_DEFAULT;
|
||||
case 'B':
|
||||
return BooleanType.INSTANCE;
|
||||
case 'C':
|
||||
return DateV2Type.INSTANCE;
|
||||
default:
|
||||
return BigIntType.INSTANCE;
|
||||
}
|
||||
|
||||
@ -0,0 +1,53 @@
|
||||
// Licensed to the Apache Software Foundation (ASF) under one
|
||||
// or more contributor license agreements. See the NOTICE file
|
||||
// distributed with this work for additional information
|
||||
// regarding copyright ownership. The ASF licenses this file
|
||||
// to you under the Apache License, Version 2.0 (the
|
||||
// "License"); you may not use this file except in compliance
|
||||
// with the License. You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing,
|
||||
// software distributed under the License is distributed on an
|
||||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
package org.apache.doris.nereids.rules.expression;
|
||||
|
||||
import org.apache.doris.nereids.rules.expression.rules.FoldConstantRule;
|
||||
import org.apache.doris.nereids.rules.expression.rules.SimplifyInPredicate;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.Slot;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.Maps;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
public class SimplifyInPredicateTest extends ExpressionRewriteTestHelper {
|
||||
|
||||
@Test
|
||||
public void test() {
|
||||
executor = new ExpressionRuleExecutor(ImmutableList.of(
|
||||
FoldConstantRule.INSTANCE,
|
||||
SimplifyInPredicate.INSTANCE
|
||||
));
|
||||
Map<String, Slot> mem = Maps.newHashMap();
|
||||
Expression rewrittenExpression = PARSER.parseExpression("cast(CA as DATETIME) in ('1992-01-31 00:00:00', '1992-02-01 00:00:00')");
|
||||
rewrittenExpression = typeCoercion(replaceUnboundSlot(rewrittenExpression, mem));
|
||||
rewrittenExpression = executor.rewrite(rewrittenExpression, context);
|
||||
Expression expectedExpression = PARSER.parseExpression("CA in (cast('1992-01-31' as date), cast('1992-02-01' as date))");
|
||||
expectedExpression = replaceUnboundSlot(expectedExpression, mem);
|
||||
executor = new ExpressionRuleExecutor(ImmutableList.of(
|
||||
FoldConstantRule.INSTANCE
|
||||
));
|
||||
expectedExpression = executor.rewrite(expectedExpression, context);
|
||||
Assertions.assertEquals(expectedExpression.toSql(), rewrittenExpression.toSql());
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user