Skip to content

Commit

Permalink
[refactor](nereids) print "ifnull" instead of "nvl" in explain apache…
Browse files Browse the repository at this point in the history
…#23979

'ifnull' is used more general.
  • Loading branch information
englefly authored Sep 9, 2023
1 parent a8ed1d8 commit 7b62013
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 7b62013

Please sign in to comment.