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 f4fd1e0 commit 992e7b1Copy full SHA for 992e7b1
tests/data/lexer/lexWildcardThenComment.in
@@ -1,4 +1,33 @@
1
SELECT */* comment */
2
+
3
SELECT /* comment */*
4
5
SELECT 2*/* comment */3
-SELECT 2/* comment */*3
6
7
+SELECT 2/* comment */*3
8
9
+SELECT */*
10
+comment
11
+on
12
+multiple
13
+lines
14
+*/FROM
15
16
+DELETE foo.*/* foo */ USING
17
18
+DELETE foo.*/* foo */,bar.*/*bar*/ USING
19
20
+SELECT `*`/*with comment*/ AS star_field
21
22
+SELECT `*`,*/*with comment*/
23
24
+DELETE a.*/*multi
25
+line /* with C open tag
26
+comment inside */ USING
27
28
+SELECT 2*/* operator */3 + 3/* operator */*2,/* start wildcard */*/* end wildcard */
29
30
+SELECT `*`/*a*/*/*b*/`*`
31
32
+-- invalid queries
33
+/* SELECT */*
0 commit comments