Commit 95dacf85 authored by Robert Haas's avatar Robert Haas

Put back accidentally-deleted quote_literal() regression tests.

parent 506070be
......@@ -52,7 +52,7 @@ LINE 1: select 3 || 4.0;
^
HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.
/*
* string functions
* various string functions
*/
select concat('one');
concat
......@@ -118,6 +118,27 @@ select i, left('ahoj', i), right('ahoj', i) from generate_series(-5, 5) t(i) ord
5 | ahoj | ahoj
(11 rows)
select quote_literal('');
quote_literal
---------------
''
(1 row)
select quote_literal('abc''');
quote_literal
---------------
'abc'''
(1 row)
select quote_literal(e'\\');
quote_literal
---------------
E'\\'
(1 row)
/*
* format
*/
select format(NULL);
format
--------
......
......@@ -30,7 +30,7 @@ select 'four: ' || 2+2;
select 3 || 4.0;
/*
* string functions
* various string functions
*/
select concat('one');
select concat(1,2,3,'hello',true, false, to_date('20100309','YYYYMMDD'));
......@@ -41,7 +41,13 @@ select concat_ws('',10,20,null,30);
select concat_ws(NULL,10,20,null,30) is null;
select reverse('abcde');
select i, left('ahoj', i), right('ahoj', i) from generate_series(-5, 5) t(i) order by i;
select quote_literal('');
select quote_literal('abc''');
select quote_literal(e'\\');
/*
* format
*/
select format(NULL);
select format('Hello');
select format('Hello %s', 'World');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment