aboutsummaryrefslogtreecommitdiff
path: root/src/test/regress/expected/comments.out
blob: 5fcfa44b866b2228afff27b3408585f1b75688c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
QUERY: SELECT 'trailing' AS first;
first   
--------
trailing
(1 row)

QUERY:  
SELECT /* embedded single line */ 'embedded' AS second;
second  
--------
embedded
(1 row)

QUERY: SELECT /* both embedded and trailing single line */ 'both' AS third;
third
-----
both 
(1 row)

QUERY:  
SELECT 'before multi-line' AS fourth;
fourth           
-----------------
before multi-line
(1 row)

QUERY: /* This is an example of SQL which should not execute:
 * select 'multi-line';
 */
SELECT 'after multi-line' AS fifth;
fifth           
----------------
after multi-line
(1 row)