forked from sqlfluff/sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CV11.yml
384 lines (355 loc) · 9 KB
/
CV11.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
rule: CV11
test_pass_cast:
pass_str: |
select cast(1 as varchar) as bar
from foo;
test_pass_casting_operator:
pass_str: |
select 1::varchar as bar
from foo;
test_pass_multi_casting_operator:
pass_str: |
select 1::int::varchar as bar
from foo;
test_pass_convert:
pass_str: |
select convert(varchar, 1) as bar
from foo;
test_pass_3_argument_convert:
pass_str: |
select convert(varchar, 1, 126) as bar
from foo;
# maybe someday we can have fixes for cast and convert with comments
test_pass_convert_with_comment:
pass_str: |
select convert( -- convert the value
int, /*
to an integer
*/ 1) as bar;
test_pass_cast_with_comment:
pass_str: |
select cast( -- cast the value
1 /*
to an integer
*/ as int) as bar;
test_fail_cast_with_comment_when_config_is_set_to_convert:
fail_str: |
select cast( -- cast the value
1 /*
to an integer
*/ as int) as bar;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: convert
test_fail_cast_with_comment_when_config_is_set_to_shorthand:
fail_str: |
select cast( -- cast the value
1 /*
to an integer
*/ as int) as bar;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: shorthand
test_fail_3_argument_convert_when_config_is_set_to_cast:
fail_str: |
select convert(varchar, 1, 126) as bar
from foo;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: cast
test_fail_3_argument_convert_when_config_is_set_to_shorthand:
fail_str: |
select convert(varchar, 1, 126) as bar
from foo;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: shorthand
test_fail_inconsistent_type_casting_prior_convert:
fail_str: |
select
convert(int, 1) as bar,
100::int::text,
cast(10
as text) as coo
from foo;
fix_str: |
select
convert(int, 1) as bar,
convert(text, convert(int, 100)),
convert(text, 10) as coo
from foo;
test_fail_inconsistent_type_casting_with_comment:
fail_str: |
select
cast(10 as text) as coo,
convert( -- Convert the value
int, /*
to an integer
*/ 1) as bar,
100::int::text
from foo;
fix_str: |
select
cast(10 as text) as coo,
convert( -- Convert the value
int, /*
to an integer
*/ 1) as bar,
cast(cast(100 as int) as text)
from foo;
test_fail_inconsistent_type_casting_prior_cast:
fail_str: |
select
cast(10 as text) as coo,
convert(int, 1) as bar,
100::int::text,
from foo;
fix_str: |
select
cast(10 as text) as coo,
cast(1 as int) as bar,
cast(cast(100 as int) as text),
from foo;
test_fail_inconsistent_type_casting_prior_cast_3_arguments_convert:
fail_str: |
select
cast(10 as text) as coo,
convert(int, 1, 126) as bar,
100::int::text
from foo;
fix_str: |
select
cast(10 as text) as coo,
convert(int, 1, 126) as bar,
cast(cast(100 as int) as text)
from foo;
test_fail_inconsistent_type_casting_prior_convert_cast_with_comment:
fail_str: |
select
convert(int, 126) as bar,
cast(
1 /* cast the value
to an integer
*/ as int) as coo,
100::int::text
from foo;
fix_str: |
select
convert(int, 126) as bar,
cast(
1 /* cast the value
to an integer
*/ as int) as coo,
convert(text, convert(int, 100))
from foo;
test_fail_inconsistent_type_casting_prior_shorthand:
fail_str: |
select
100::int::text,
cast(10 as text) as coo,
convert(int, 1) as bar
from foo;
fix_str: |
select
100::int::text,
10::text as coo,
1::int as bar
from foo;
test_fail_inconsistent_type_casting_prior_shorthand_3_arguments_convert:
fail_str: |
select
100::int::text,
convert(int, 1, 126) as bar,
cast(10 as text) as coo
from foo;
fix_str: |
select
100::int::text,
convert(int, 1, 126) as bar,
10::text as coo
from foo;
test_fail_inconsistent_type_casting_prior_shorthand_cast_with_comment:
fail_str: |
select
100::int::text,
convert(int, 126) as bar,
cast(
1 /* cast the value
to an integer
*/ as int) as coo
from foo;
fix_str: |
select
100::int::text,
126::int as bar,
cast(
1 /* cast the value
to an integer
*/ as int) as coo
from foo;
test_fail_inconsistent_type_casting_when_config_cast:
fail_str: |
select
convert(int, 1) as bar,
100::int::text,
cast(10 as text) as coo
from foo;
fix_str: |
select
cast(1 as int) as bar,
cast(cast(100 as int) as text),
cast(10 as text) as coo
from foo;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: cast
test_fail_inconsistent_type_casting_3_arguments_convert_when_config_cast:
fail_str: |
select
convert(int, 1, 126) as bar,
100::int::text,
cast(10 as text) as coo
from foo;
fix_str: |
select
convert(int, 1, 126) as bar,
cast(cast(100 as int) as text),
cast(10 as text) as coo
from foo;
violations_after_fix:
- code: CV11
description: Used type casting style is different from the preferred type
casting style.
name: "convention.casting_style"
warning: false
fixes: []
start_line_no: 2
start_line_pos: 5
start_file_pos: 11
end_line_no: 2
end_line_pos: 25
end_file_pos: 31
configs:
rules:
convention.casting_style:
preferred_type_casting_style: cast
test_fail_inconsistent_type_casting_when_config_convert:
fail_str: |
select
convert(int, 1) as bar,
100::int::text,
cast(10 as text) as coo
from foo;
fix_str: |
select
convert(int, 1) as bar,
convert(text, convert(int, 100)),
convert(text, 10) as coo
from foo;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: convert
test_fail_inconsistent_type_casting_when_config_shorthand:
fail_str: |
select
convert(int, 1) as bar,
100::int::text,
cast(10 as text) as coo
from foo;
fix_str: |
select
1::int as bar,
100::int::text,
10::text as coo
from foo;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: shorthand
test_fail_inconsistent_type_casting_3_arguments_convert_when_config_shorthand:
fail_str: |
select
convert(int, 1, 126) as bar,
100::int::text,
cast(10 as text) as coo
from foo;
fix_str: |
select
convert(int, 1, 126) as bar,
100::int::text,
10::text as coo
from foo;
violations_after_fix:
- code: CV11
description: Used type casting style is different from the preferred type
casting style.
name: "convention.casting_style"
warning: false
fixes: []
start_line_no: 2
start_line_pos: 5
start_file_pos: 11
end_line_no: 2
end_line_pos: 25
end_file_pos: 31
configs:
rules:
convention.casting_style:
preferred_type_casting_style: shorthand
test_pass_when_dialect_is_teradata:
pass_str: |
select convert(varchar, 1) as bar
from foo;
configs:
core:
dialect: teradata
test_fail_parenthesize_expression_when_config_shorthand_from_cast:
fail_str: |
select
id::int,
cast(calendar_date||' 11:00:00' as timestamp) as calendar_datetime
from foo;
fix_str: |
select
id::int,
(calendar_date||' 11:00:00')::timestamp as calendar_datetime
from foo;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: shorthand
test_fail_parenthesize_expression_when_config_shorthand_from_convert:
fail_str: |
select
id::int,
convert(timestamp, calendar_date||' 11:00:00') as calendar_datetime
from foo;
fix_str: |
select
id::int,
(calendar_date||' 11:00:00')::timestamp as calendar_datetime
from foo;
configs:
rules:
convention.casting_style:
preferred_type_casting_style: shorthand
test_fail_snowflake_semi_structured_cast_4453:
# https://github.com/sqlfluff/sqlfluff/issues/4453
fail_str: |
select (trim(value:Longitude::varchar))::double as longitude;
select col:a.b:c::varchar as bar;
fix_str: |
select cast((trim(cast(value:Longitude as varchar))) as double) as longitude;
select cast(col:a.b:c as varchar) as bar;
configs:
core:
dialect: snowflake
rules:
convention.casting_style:
preferred_type_casting_style: cast