blob: 2d8cc516ac7dd4f8f17cfc845849463bb7fd20ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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: func_get_detail: function text(bpchar) does not exist
QUERY: SELECT text(f1) FROM VARCHAR_TBL;
ERROR: func_get_detail: function text(varchar) does not exist
|