forked from sqlfluff/sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV10.yml
398 lines (366 loc) · 9.25 KB
/
CV10.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
rule: CV10
test_fail_result_of_fix_is_valid_bigquery:
fail_str: |
SELECT
"some string",
'some string'
fix_str: |
SELECT
"some string",
"some string"
configs:
core:
dialect: bigquery
test_fail_result_of_fix_is_valid_hive:
fail_str: |
SELECT
"some string",
'some string'
fix_str: |
SELECT
"some string",
"some string"
configs:
core:
dialect: hive
test_fail_result_of_fix_is_valid_mysql:
fail_str: |
SELECT
"some string",
'some string'
fix_str: |
SELECT
"some string",
"some string"
configs:
core:
dialect: mysql
test_fail_result_of_fix_is_valid_sparksql:
fail_str: |
SELECT
"some string",
'some string'
fix_str: |
SELECT
"some string",
"some string"
configs:
core:
dialect: sparksql
test_pass_preferred_tripple_quotes:
pass_str: |
SELECT """some_string"""
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_alternate_tripple_quotes:
fail_str: |
SELECT '''some_string'''
fix_str: |
SELECT """some_string"""
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_unnecessary_escaping:
fail_str: |
SELECT
'unnecessary \"\"escaping',
"unnecessary \'\'escaping"
fix_str: |
SELECT
'unnecessary ""escaping',
"unnecessary ''escaping"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_bigquery_string_prefixes:
fail_str: |
SELECT
r'some_string',
b'some_string',
R'some_string',
B'some_string'
fix_str: |
SELECT
r"some_string",
b"some_string",
R"some_string",
B"some_string"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_bigquery_string_prefixes_when_style_is_consistent:
fail_str: |
SELECT
r'some_string',
b"some_string"
fix_str: |
SELECT
r'some_string',
b'some_string'
configs:
core:
dialect: bigquery
test_fail_tripple_quoted_strings_with_quotes_in_them:
fail_str: |
SELECT
"""Strings with "" in them""",
'''Strings with "" in them'''
fix_str: |
SELECT
"""Strings with "" in them""",
"""Strings with "" in them"""
configs:
core:
dialect: bigquery
test_fail_tripple_quoted_strings_dont_remove_escapes_single_quotes:
fail_str: |
SELECT
"""Strings escaped quotes \" and \' in them""",
'''Strings escaped quotes \" and \' in them'''
fix_str: |
SELECT
'''Strings escaped quotes \" and \' in them''',
'''Strings escaped quotes \" and \' in them'''
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: single_quotes
test_fail_tripple_quoted_strings_dont_remove_escapes_double_quotes:
fail_str: |
SELECT
"""Strings escaped quotes \" and \' in them""",
'''Strings escaped quotes \" and \' in them'''
fix_str: |
SELECT
"""Strings escaped quotes \" and \' in them""",
"""Strings escaped quotes \" and \' in them"""
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_edge_case_tripple_quoted_string_ending_with_double_quote:
# Test that a trailing preferred quote in triple quote scenario doesn't break
fail_str: |
SELECT
'''Here's a "''',
'''Here's a " '''
fix_str: |
SELECT
'''Here's a "''',
"""Here's a " """
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_lots_of_quotes:
# Test that we can handle complex quoting scenarios
pass_str: |
SELECT
'\\""',
"\\''"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_lots_of_quotes:
# Test that we can handle complex quoting scenarios
fail_str: |
SELECT 'Lots of \\\\\\\\\'quotes\''
fix_str: |
SELECT "Lots of \\\\\\\\'quotes'"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_quote_replace_in_raw_strings:
# Test that we can handle complex quoting scenarios
fail_str: |
SELECT
r'Tricky "quote',
r'Not-so-tricky \"quote'
fix_str: |
SELECT
r'Tricky "quote',
r"Not-so-tricky \"quote"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_dollar_quoted_strings_are_ignored:
# Test that we don't interfere with dollar quoted strings
pass_str: |
SELECT
'some string',
$$some_other_string$$
configs:
core:
dialect: postgres
rules:
convention.quoted_literals:
force_enable: true
preferred_quoted_literal_style: single_quotes
test_pass_date_constructor_strings_are_ignored_1:
# Test that we don't interfere with date constructor strings
pass_str: |
SELECT
"quoted string",
DATE'some string'
test_pass_date_constructor_strings_are_ignored_2:
# Test that we don't interfere with date constructor strings
pass_str: |
SELECT
DATE'some string'
configs:
rules:
convention.quoted_literals:
force_enable: true
preferred_quoted_literal_style: double_quotes
test_pass_empty_string:
pass_str: |
SELECT ""
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_empty_string:
fail_str: |
SELECT ''
fix_str: |
SELECT ""
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_partially_templated_quoted_literals_simple:
pass_str: |
SELECT "{{ 'a string' }}"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_partially_templated_quoted_literals_simple:
fail_str: |
SELECT '{{ "a string" }}'
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_partially_templated_quoted_literals_complex:
pass_str: |
SELECT "this_is_a_lintable_{{ 'string' }}"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_partially_templated_quoted_literals_complex:
fail_str: |
SELECT 'this_is_a_lintable_{{ "string" }}'
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_partially_templated_quoted_literals_with_multiple_templates:
pass_str: |
SELECT "this_{{ 'is' }}_{{ 'a_lintable' }}_{{ 'string' }}"
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_partially_templated_quoted_literals_with_multiple_templates:
fail_str: |
SELECT 'this_{{ "is" }}_{{ "a_lintable" }}_{{ "string" }}'
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_fail_partially_templated_quoted_literals_inside_blocks:
fail_str: |
SELECT
{% if true %}
'{{ "another_templated_string" }}'
{% endif %}
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_fully_templated_quoted_literals_are_ignored:
pass_str: |
SELECT {{ "'a_non_lintable_string'" }}
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_partially_templated_literals_are_ignored_when_some_quotes_are_inside_the_template_1:
pass_str: |
SELECT '{{ "string' FROM table1" }}
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_partially_templated_literals_are_ignored_when_some_quotes_are_inside_the_template_2:
pass_str: |
{{ "SELECT 'stri" -}}ng' FROM table1
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes
test_pass_prefix_chars_are_correctly_detected_as_unlintable:
pass_str: |
SELECT
r{{ "''" }},
r{{ "'project' FROM table1" }}
configs:
core:
dialect: bigquery
rules:
convention.quoted_literals:
preferred_quoted_literal_style: double_quotes