-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature](function) support new function replace_empty (#36283)
## Proposed changes Add new function `replace_empty()`. It acts all like `replace()`, instead for the search string(the second param) is empty. If the search string is empty, it will insert the third string in front of all characters of the first string, as well as the end of the first string. eg: ``` mysql> select replace("abc", '', 'xyz'); +---------------------------+ | replace('abc', '', 'xyz') | +---------------------------+ | abc | +---------------------------+ 1 row in set (0.01 sec) mysql> select replace_empty("abc", '', 'xyz'); +---------------------------------+ | replace_empty('abc', '', 'xyz') | +---------------------------------+ | xyzaxyzbxyzcxyz | +---------------------------------+ 1 row in set (0.00 sec) ``` Doc: apache/doris-website#749 This function is for compatibility of Presto/Trino, it behave exactly same as `replace()` function in Presto/Trino.
- Loading branch information
1 parent
2c795a9
commit a819ca4
Showing
8 changed files
with
520 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
...c/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/ReplaceEmpty.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// 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.scalar; | ||
|
||
import org.apache.doris.catalog.FunctionSignature; | ||
import org.apache.doris.nereids.trees.expressions.Expression; | ||
import org.apache.doris.nereids.trees.expressions.functions.ExplicitlyCastableSignature; | ||
import org.apache.doris.nereids.trees.expressions.functions.PropagateNullable; | ||
import org.apache.doris.nereids.trees.expressions.shape.TernaryExpression; | ||
import org.apache.doris.nereids.trees.expressions.visitor.ExpressionVisitor; | ||
import org.apache.doris.nereids.types.StringType; | ||
import org.apache.doris.nereids.types.VarcharType; | ||
|
||
import com.google.common.base.Preconditions; | ||
import com.google.common.collect.ImmutableList; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* ScalarFunction 'replace_empty'. | ||
*/ | ||
public class ReplaceEmpty extends ScalarFunction | ||
implements TernaryExpression, ExplicitlyCastableSignature, PropagateNullable { | ||
|
||
public static final List<FunctionSignature> SIGNATURES = ImmutableList.of( | ||
FunctionSignature.ret(VarcharType.SYSTEM_DEFAULT) | ||
.args(VarcharType.SYSTEM_DEFAULT, VarcharType.SYSTEM_DEFAULT, VarcharType.SYSTEM_DEFAULT), | ||
FunctionSignature.ret(StringType.INSTANCE) | ||
.args(StringType.INSTANCE, StringType.INSTANCE, StringType.INSTANCE) | ||
); | ||
|
||
/** | ||
* constructor with 3 arguments. | ||
*/ | ||
public ReplaceEmpty(Expression arg0, Expression arg1, Expression arg2) { | ||
super("replace_empty", arg0, arg1, arg2); | ||
} | ||
|
||
/** | ||
* withChildren. | ||
*/ | ||
@Override | ||
public ReplaceEmpty withChildren(List<Expression> children) { | ||
Preconditions.checkArgument(children.size() == 3); | ||
return new ReplaceEmpty(children.get(0), children.get(1), children.get(2)); | ||
} | ||
|
||
@Override | ||
public List<FunctionSignature> getSignatures() { | ||
return SIGNATURES; | ||
} | ||
|
||
@Override | ||
public <R, C> R accept(ExpressionVisitor<R, C> visitor, C context) { | ||
return visitor.visitReplaceEmpty(this, context); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.