8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c407a38 commit 1d9ad88Copy full SHA for 1d9ad88
src/test/regress/expected/comments.out
@@ -0,0 +1,35 @@
1
+QUERY: SELECT 'trailing' AS first;
2
+first
3
+--------
4
+trailing
5
+(1 row)
6
+
7
+QUERY:
8
+SELECT /* embedded single line */ 'embedded' AS second;
9
+second
10
11
+embedded
12
13
14
+QUERY: SELECT /* both embedded and trailing single line */ 'both' AS third;
15
+third
16
+-----
17
+both
18
19
20
21
+SELECT 'before multi-line' AS fourth;
22
+fourth
23
+-----------------
24
+before multi-line
25
26
27
+QUERY: /* This is an example of SQL which should not execute:
28
+ * select 'multi-line';
29
+ */
30
+SELECT 'after multi-line' AS fifth;
31
+fifth
32
+----------------
33
+after multi-line
34
35
0 commit comments