forked from sqlfluff/sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ST01.yml
67 lines (59 loc) · 1.23 KB
/
ST01.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
rule: ST01
no_redundant_else_null:
pass_str: |
select
case
when name = 'cat' then 'meow'
when name = 'dog' then 'woof'
end
from x
redundant_else_null:
fail_str: |
select
case
when name = 'cat' then 'meow'
when name = 'dog' then 'woof'
else null
end
from x
fix_str: |
select
case
when name = 'cat' then 'meow'
when name = 'dog' then 'woof'
end
from x
alternate_case_when_syntax:
fail_str: |
select
case name
when 'cat' then 'meow'
when 'dog' then 'woof'
else null
end
from x
fix_str: |
select
case name
when 'cat' then 'meow'
when 'dog' then 'woof'
end
from x
alternate_case_when_syntax_boolean:
pass_str: |
select
case name
when 'cat' then true
when 'dog' then true
else name is null
end
from x
else_expression:
pass_str: |
select
case name
when 'cat' then 'meow'
when 'dog' then 'woof'
else iff(wing_type is not null, 'tweet', 'invalid')
end
from x