This is an automated email from the ASF dual-hosted git repository.
englefly pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 7b62013d21 [refactor](nereids) print "ifnull" instead of "nvl" in
explain #23979
7b62013d21 is described below
commit 7b62013d2175bc935937f57b441cbaf8b609fc7e
Author: minghong <[email protected]>
AuthorDate: Sat Sep 9 20:33:23 2023 +0800
[refactor](nereids) print "ifnull" instead of "nvl" in explain #23979
'ifnull' is used more general.
---
.../apache/doris/nereids/trees/expressions/functions/scalar/Nvl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/Nvl.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/Nvl.java
index 5e5e8736b6..945feec9d2 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/Nvl.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/Nvl.java
@@ -82,7 +82,7 @@ public class Nvl extends ScalarFunction
* constructor with 2 arguments.
*/
public Nvl(Expression arg0, Expression arg1) {
- super("nvl", arg0, arg1);
+ super("ifnull", arg0, arg1);
}
/**
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]