[refactor](nereids) print "ifnull" instead of "nvl" in explain #23979

'ifnull' is used more general.
This commit is contained in:
minghong
2023-09-09 20:33:23 +08:00
committed by GitHub
parent a8ed1d87d7
commit 7b62013d21

View File

@ -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);
}
/**