简单的字符串 return 函数,默认参数作为 NULL 传递,returns NULL 而不是字符串

Simple string return function with default param passed as NULL, returns NULL instead of string

我有以下功能:

CREATE OR REPLACE FUNCTION public.get_string(cmd_type text, udf_name text, 
group_name character varying DEFAULT 'usage'::character varying)
 RETURNS text
 LANGUAGE plpgsql
 AS $function$ 
BEGIN
 return 'This is the string: '''|| group_name ||''''::text;
END;
$function$

当我这样称呼它时:

select public.get_string('test', 'myudf!', group_name=>null::character varying); 

它 return 为 NULL。

我希望它至少 return:

This is the string: ''

然而,当我这样称呼它时:

select public.get_string('test', 'myudf!');

我得到了预期的结果:

This is the string: 'usage'

为什么将 NULL 传递给可选参数会使整个字符串为 NULL?

这并不神秘 - 对 NULL 值的任何操作再次为 NULL。

postgres=# select ('Hello' || null) is null ;
┌──────────┐
│ ?column? │
╞══════════╡
│ t        │
└──────────┘
(1 row)

您应该使用 coalesce 函数并针对 NULL 值清理表达式。

postgres=# select ('Hello' || coalesce(null,'')) ;
┌──────────┐
│ ?column? │
╞══════════╡
│ Hello    │
└──────────┘
(1 row)

也许您知道 Oracle 数据库,其中 NULL 和空字符串是相等的。但是只对Oracle是这样,其他地方NULL就是NULL,比较激进。