add concat_ws function compatibility test case
This commit is contained in:
@ -28,4 +28,18 @@ select ''::int;
|
||||
ERROR: invalid input syntax for integer: ""
|
||||
LINE 1: select ''::int;
|
||||
^
|
||||
CONTEXT: referenced column: int4
|
||||
CONTEXT: referenced column: int4
|
||||
|
||||
select concat_ws('','ABCDE', 2, null, 22);
|
||||
concat_ws
|
||||
-----------
|
||||
ABCDE222
|
||||
(1 row)
|
||||
|
||||
|
||||
select concat_ws(null,'ABCDE', 2, null, 22);
|
||||
concat_ws
|
||||
-----------
|
||||
|
||||
(1 row)
|
||||
|
||||
|
||||
@ -13,4 +13,8 @@ select concat(null,'','','') is null;
|
||||
|
||||
select concat('','') is null;
|
||||
|
||||
select ''::int;
|
||||
select ''::int;
|
||||
|
||||
select concat_ws('','ABCDE', 2, null, 22);
|
||||
|
||||
select concat_ws(null,'ABCDE', 2, null, 22);
|
||||
Reference in New Issue
Block a user