[opt](Nereids) use date signature for date arithmetic as far as possible (#36060)
pick from master #35863
This commit is contained in:
@ -0,0 +1,59 @@
|
||||
// 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.trees.expressions.functions;
|
||||
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.annotation.Developing;
|
||||
import org.apache.doris.nereids.trees.expressions.literal.DateV2Literal;
|
||||
import org.apache.doris.nereids.trees.expressions.literal.StringLikeLiteral;
|
||||
import org.apache.doris.nereids.types.DateType;
|
||||
import org.apache.doris.nereids.types.DateV2Type;
|
||||
import org.apache.doris.nereids.types.IntegerType;
|
||||
|
||||
/**
|
||||
* use for date arithmetic, such as date_sub('2024-05-28', INTERVAL 1 day).
|
||||
* if the first argument is string like literal and could cast to legal date literal,
|
||||
* then use date/dateV2 signature
|
||||
*/
|
||||
@Developing
|
||||
public interface ComputeSignatureForDateArithmetic extends ComputeSignature {
|
||||
|
||||
@Override
|
||||
default FunctionSignature computeSignature(FunctionSignature signature) {
|
||||
FunctionSignature ret = ComputeSignature.super.computeSignature(signature);
|
||||
if (child(0) instanceof StringLikeLiteral) {
|
||||
try {
|
||||
String s = ((StringLikeLiteral) child(0)).getStringValue().trim();
|
||||
// avoid use date/dateV2 signature for '2020-02-02 00:00:00'
|
||||
if (s.length() <= 10) {
|
||||
new DateV2Literal(s);
|
||||
if (Config.enable_date_conversion) {
|
||||
return FunctionSignature.ret(DateV2Type.INSTANCE)
|
||||
.args(DateV2Type.INSTANCE, IntegerType.INSTANCE);
|
||||
} else {
|
||||
return FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE);
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
// string like literal cannot cast to a legal date/dateV2 literal
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
@ -20,6 +20,7 @@ package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -39,7 +40,8 @@ import java.util.List;
|
||||
* ScalarFunction 'days_add'.
|
||||
*/
|
||||
public class DaysAdd extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
private static final List<FunctionSignature> SIGNATURES = Config.enable_date_conversion ? ImmutableList.of(
|
||||
|
||||
@ -20,6 +20,7 @@ package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -39,7 +40,8 @@ import java.util.List;
|
||||
* ScalarFunction 'days_sub'.
|
||||
*/
|
||||
public class DaysSub extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
private static final List<FunctionSignature> SIGNATURES = Config.enable_date_conversion ? ImmutableList.of(
|
||||
|
||||
@ -18,7 +18,9 @@
|
||||
package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -38,14 +40,23 @@ import java.util.List;
|
||||
* ScalarFunction 'months_add'.
|
||||
*/
|
||||
public class MonthsAdd extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
|
||||
private static final List<FunctionSignature> SIGNATURES = ImmutableList.of(
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
private static final List<FunctionSignature> SIGNATURES = Config.enable_date_conversion ? ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE)
|
||||
) : ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE)
|
||||
);
|
||||
|
||||
public MonthsAdd(Expression arg0, Expression arg1) {
|
||||
|
||||
@ -18,7 +18,9 @@
|
||||
package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -38,14 +40,23 @@ import java.util.List;
|
||||
* ScalarFunction 'months_sub'.
|
||||
*/
|
||||
public class MonthsSub extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
|
||||
private static final List<FunctionSignature> SIGNATURES = ImmutableList.of(
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
private static final List<FunctionSignature> SIGNATURES = Config.enable_date_conversion ? ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE)
|
||||
) : ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE)
|
||||
);
|
||||
|
||||
public MonthsSub(Expression arg0, Expression arg1) {
|
||||
|
||||
@ -20,6 +20,7 @@ package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -39,7 +40,8 @@ import java.util.List;
|
||||
* ScalarFunction 'weeks_add'.
|
||||
*/
|
||||
public class WeeksAdd extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
|
||||
@ -20,6 +20,7 @@ package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -39,7 +40,8 @@ import java.util.List;
|
||||
* ScalarFunction 'weeks_sub'.
|
||||
*/
|
||||
public class WeeksSub extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
|
||||
@ -18,7 +18,9 @@
|
||||
package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -38,14 +40,23 @@ import java.util.List;
|
||||
* ScalarFunction 'days_add'.
|
||||
*/
|
||||
public class YearsAdd extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
|
||||
private static final List<FunctionSignature> SIGNATURES = ImmutableList.of(
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
private static final List<FunctionSignature> SIGNATURES = Config.enable_date_conversion ? ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE)
|
||||
) : ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE)
|
||||
);
|
||||
|
||||
public YearsAdd(Expression arg0, Expression arg1) {
|
||||
|
||||
@ -18,7 +18,9 @@
|
||||
package org.apache.doris.nereids.trees.expressions.functions.scalar;
|
||||
|
||||
import org.apache.doris.catalog.FunctionSignature;
|
||||
import org.apache.doris.common.Config;
|
||||
import org.apache.doris.nereids.trees.expressions.Expression;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ComputeSignatureForDateArithmetic;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature;
|
||||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullableOnDateLikeV2Args;
|
||||
import org.apache.doris.nereids.trees.expressions.shape.BinaryExpression;
|
||||
@ -38,14 +40,23 @@ import java.util.List;
|
||||
* ScalarFunction 'days_add'.
|
||||
*/
|
||||
public class YearsSub extends ScalarFunction
|
||||
implements BinaryExpression, ExplicitlyCastableSignature, PropagateNullableOnDateLikeV2Args {
|
||||
implements BinaryExpression, ExplicitlyCastableSignature,
|
||||
ComputeSignatureForDateArithmetic, PropagateNullableOnDateLikeV2Args {
|
||||
|
||||
private static final List<FunctionSignature> SIGNATURES = ImmutableList.of(
|
||||
// When enable_date_conversion is true, we prefer to V2 signature.
|
||||
// This preference follows original planner. refer to ScalarType.getDefaultDateType()
|
||||
private static final List<FunctionSignature> SIGNATURES = Config.enable_date_conversion ? ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE)
|
||||
) : ImmutableList.of(
|
||||
FunctionSignature.ret(DateTimeType.INSTANCE).args(DateTimeType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateType.INSTANCE).args(DateType.INSTANCE, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateTimeV2Type.SYSTEM_DEFAULT)
|
||||
.args(DateTimeV2Type.SYSTEM_DEFAULT, IntegerType.INSTANCE),
|
||||
FunctionSignature.ret(DateV2Type.INSTANCE).args(DateV2Type.INSTANCE, IntegerType.INSTANCE)
|
||||
);
|
||||
|
||||
public YearsSub(Expression arg0, Expression arg1) {
|
||||
|
||||
Reference in New Issue
Block a user