postgresql/src/test/regress/expected/strings.out

18 lines
513 B
Plaintext
Raw Normal View History

QUERY: SELECT 'first line'
' - next line'
' - third line'
AS "Three lines to one";
Three lines to one
-----------------------------------
first line - next line - third line
(1 row)
QUERY: SELECT 'first line'
' - next line' /* this comment is not allowed here */
' - third line';
ERROR: parser: parse error at or near "'"
QUERY: SELECT text(f1) FROM CHAR_TBL;
ERROR: function text(bpchar) does not exist
QUERY: SELECT text(f1) FROM VARCHAR_TBL;
ERROR: function text(varchar) does not exist