forked from xwb1989/sqlparser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpredicate_rewriting_test.go
195 lines (180 loc) · 5.69 KB
/
predicate_rewriting_test.go
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
/*
Copyright 2022 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package sqlparser
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestSimplifyExpression(in *testing.T) {
tests := []struct {
in string
expected string
}{{
in: "not (not A = 3)",
expected: "A = 3",
}, {
in: "not (A = 3 and B = 2)",
expected: "not A = 3 or not B = 2",
}, {
in: "not (A = 3 or B = 2)",
expected: "not A = 3 and not B = 2",
}, {
in: "A xor B",
expected: "(A or B) and not (A and B)",
}, {
in: "(A and B) or C",
expected: "(A or C) and (B or C)",
}, {
in: "C or (A and B)",
expected: "(C or A) and (C or B)",
}, {
in: "A and A",
expected: "A",
}, {
in: "A OR A",
expected: "A",
}, {
in: "A OR (A AND B)",
expected: "A",
}, {
in: "A OR (B AND A)",
expected: "A",
}, {
in: "(A AND B) OR A",
expected: "A",
}, {
in: "(B AND A) OR A",
expected: "A",
}, {
in: "(A and B) and (B and A)",
expected: "A and B",
}, {
in: "(A or B) and A",
expected: "A",
}, {
in: "A and (A or B)",
expected: "A",
}, {
in: "(A and B) OR (A and C)",
expected: "A and (B or C)",
}, {
in: "(A and B) OR (C and A)",
expected: "A and (B or C)",
}, {
in: "(B and A) OR (A and C)",
expected: "A and (B or C)",
}, {
in: "(B and A) OR (C and A)",
expected: "A and (B or C)",
}}
parser := NewTestParser()
for _, tc := range tests {
in.Run(tc.in, func(t *testing.T) {
expr, err := parser.ParseExpr(tc.in)
require.NoError(t, err)
expr, changed := simplifyExpression(expr)
assert.True(t, changed)
assert.Equal(t, tc.expected, String(expr))
})
}
}
func TestRewritePredicate(in *testing.T) {
tests := []struct {
in string
expected string
}{{
in: "A xor B",
expected: "(A or B) and (not A or not B)",
}, {
in: "(A and B) and (B and A) and (B and A) and (A and B)",
expected: "A and B",
}, {
in: "((A and B) OR (A and C) OR (A and D)) and E and F",
expected: "A and (B or C or D) and E and F",
}, {
in: "(A and B) OR (A and C)",
expected: "A and (B or C)",
}, {
in: "(A and B) OR (C and A)",
expected: "A and (B or C)",
}, {
in: "(B and A) OR (A and C)",
expected: "A and (B or C)",
}, {
in: "(A and B) or (A and C) or (A and D)",
expected: "A and (B or C or D)",
}, {
in: "(a=1 or a IN (1,2)) or (a = 2 or a = 3)",
expected: "a in (1, 2, 3)",
}, {
in: "A and (B or A)",
expected: "A",
}, {
in: "(a = 1 and b = 41) or (a = 2 and b = 42)",
// this might look weird, but it allows the planner to either a or b in a vindex operation
expected: "a in (1, 2) and (a = 1 or b = 42) and ((b = 41 or a = 2) and b in (41, 42))",
}, {
in: "(a = 1 and b = 41) or (a = 2 and b = 42) or (a = 3 and b = 43)",
expected: "a in (1, 2, 3) and (a in (1, 2) or b = 43) and ((a = 1 or b = 42 or a = 3) and (a = 1 or b = 42 or b = 43)) and ((b = 41 or a = 2 or a = 3) and (b = 41 or a = 2 or b = 43) and ((b in (41, 42) or a = 3) and b in (41, 42, 43)))",
}, {
// the following two tests show some pathological cases that would grow too much, and so we abort the rewriting
in: "a = 1 and b = 41 or a = 2 and b = 42 or a = 3 and b = 43 or a = 4 and b = 44 or a = 5 and b = 45 or a = 6 and b = 46",
expected: "a = 1 and b = 41 or a = 2 and b = 42 or a = 3 and b = 43 or a = 4 and b = 44 or a = 5 and b = 45 or a = 6 and b = 46",
}, {
in: "a = 5 and B or a = 6 and C",
expected: "a in (5, 6) and (a = 5 or C) and ((B or a = 6) and (B or C))",
}, {
in: "(a = 5 and b = 1 or b = 2 and a = 6)",
expected: "(a = 5 or b = 2) and a in (5, 6) and (b in (1, 2) and (b = 1 or a = 6))",
}, {
in: "(a in (1,5) and B or C and a = 6)",
expected: "(a in (1, 5) or C) and a in (1, 5, 6) and ((B or C) and (B or a = 6))",
}, {
in: "(a in (1, 5) and B or C and a in (5, 7))",
expected: "(a in (1, 5) or C) and a in (1, 5, 7) and ((B or C) and (B or a in (5, 7)))",
}, {
in: "not n0 xor not (n2 and n3) xor (not n2 and (n1 xor n1) xor (n0 xor n0 xor n2))",
expected: "not n0 xor not (n2 and n3) xor (not n2 and (n1 xor n1) xor (n0 xor n0 xor n2))",
}}
parser := NewTestParser()
for _, tc := range tests {
in.Run(tc.in, func(t *testing.T) {
expr, err := parser.ParseExpr(tc.in)
require.NoError(t, err)
output := RewritePredicate(expr)
assert.Equal(t, tc.expected, String(output))
})
}
}
func TestExtractINFromOR(in *testing.T) {
tests := []struct {
in string
expected string
}{{
in: "a = 1 and b = 41 or a = 2 and b = 42 or a = 3 and b = 43 or a = 4 and b = 44 or a = 5 and b = 45 or a = 6 and b = 46",
expected: "(a, b) in ((1, 41), (2, 42), (3, 43), (4, 44), (5, 45), (6, 46))",
}, {
in: "a = 1 or a = 2 or a = 3 or a = 4 or a = 5 or a = 6",
expected: "(a) in ((1), (2), (3), (4), (5), (6))",
}}
parser := NewTestParser()
for _, tc := range tests {
in.Run(tc.in, func(t *testing.T) {
expr, err := parser.ParseExpr(tc.in)
require.NoError(t, err)
output := ExtractINFromOR(expr.(*OrExpr))
assert.Equal(t, tc.expected, String(AndExpressions(output...)))
})
}
}