forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboolean.slt
387 lines (308 loc) · 7.39 KB
/
boolean.slt
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
# Copyright Materialize, Inc. and contributors. All rights reserved.
#
# Use of this software is governed by the Business Source License
# included in the LICENSE file at the root of this repository.
#
# As of the Change Date specified in that file, in accordance with
# the Business Source License, use of this software will be governed
# by the Apache License, Version 2.0.
mode cockroach
statement ok
CREATE TABLE bools (b bool)
statement ok
INSERT INTO bools VALUES (TRUE), (FALSE), (NULL);
statement ok
CREATE TABLE bools_text (b text)
statement ok
INSERT INTO bools_text VALUES
('t'), ('tr'), ('tR'), ('tRuE'), ('TRUE'), (' tr '),
('f'), ('fa'), ('faL'), ('fAlsE'), ('FALSE'), (' fal '),
('on'), ('off'), ('On'), ('Off'), ('ON'), ('oFf'),
('1'), ('0'), (' 1'), ('0 ')
query TB rowsort
SELECT replace(b, ' ', 'x'), b::bool FROM bools_text
----
xxxxxxxxxxxxxxx1 true
xxxxxxxxxxxfalx false
xxxxtrxxxx true
0xxxxxxxx false
0 false
1 true
f false
fa false
faL false
fAlsE false
FALSE false
off false
oFf false
Off false
on true
On true
ON true
t true
tr true
tR true
tRuE true
TRUE true
query error invalid input syntax for type boolean: "blah"
SELECT 'blah'::bool
query error NOT argument must have type boolean, not type integer
SELECT NOT 1
query error AND argument must have type boolean, not type integer
SELECT 1 AND 1
query error OR argument must have type boolean, not type integer
SELECT 1 OR 1
query error OR argument must have type boolean, not type integer
SELECT 1 OR FALSE
query error OR argument must have type boolean, not type integer
SELECT FALSE OR 1
query error AND argument must have type boolean, not type integer
SELECT 1 AND FALSE
query error AND argument must have type boolean, not type integer
SELECT FALSE AND 1
query B colnames
SELECT TRUE
----
bool
true
query B colnames
SELECT FALSE
----
bool
false
query B
SELECT NOT TRUE
----
false
query B
SELECT NOT FALSE
----
true
query BBB rowsort
SELECT a.b, b.b, a.b AND b.b FROM bools AS a CROSS JOIN bools AS b;
----
true true true
true false false
true NULL NULL
false true false
false false false
false NULL false
NULL true NULL
NULL false false
NULL NULL NULL
# Boolean AND error cases
query error division by zero
SELECT (1/0 > 0) AND TRUE;
# Postgres returns the error instead
query B
SELECT (1/0 > 0) AND FALSE;
----
false
query error division by zero
SELECT (1/0 > 0) AND NULL;
query error division by zero
SELECT TRUE AND (1/0 > 0);
query B
SELECT FALSE AND (1/0 > 0);
----
false
query error division by zero
SELECT NULL AND (1/0 > 0);
# Check we consistently pick the same error
# Postgres returns the first error instead
query error "32768" smallint out of range
SELECT (32768::int2 > 0) AND (1/0 > 0);
query error "32768" smallint out of range
SELECT (1/0 > 0) AND (32768::int2 > 0);
query BBB rowsort
SELECT a.b, b.b, a.b OR b.b FROM bools AS a CROSS JOIN bools AS b;
----
true true true
true false true
true NULL true
false true true
false false false
false NULL NULL
NULL true true
NULL false NULL
NULL NULL NULL
# Boolean OR error cases
# Postgres returns the error instead
query B
SELECT (1/0 > 0) OR TRUE;
----
true
query error division by zero
SELECT (1/0 > 0) OR FALSE;
query error division by zero
SELECT (1/0 > 0) OR NULL;
query B
SELECT TRUE OR (1/0 > 0);
----
true
query error division by zero
SELECT FALSE OR (1/0 > 0);
query error division by zero
SELECT NULL OR (1/0 > 0);
# Check we consistently pick the same error
# Postgres returns the first error instead
query error smallint out of range
SELECT (32768::int2 > 0) OR (1/0 > 0);
query error smallint out of range
SELECT (1/0 > 0) OR (32768::int2 > 0);
query B
SELECT TRUE AND NOT TRUE
----
false
query B
SELECT NOT FALSE OR FALSE
----
true
### integer to bool ###
query B
SELECT 99::int::bool
----
true
query B
SELECT 0::int::bool
----
false
query B
SELECT NOT 0::int::bool
----
true
### int8 to bool ###
query B
SELECT 99::bigint::bool
----
true
query B
SELECT 0::bigint::bool
----
false
query B
SELECT NOT 0::bigint::bool
----
true
### bool to integer ###
query I
SELECT true::int
----
1
query I
SELECT false::int
----
0
statement ok
CREATE TABLE x (a int, u int, j jsonb, b bool)
# Ensure the NOT gets pushed into the binary operation.
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT
NOT(a = u),
NOT(a != u),
NOT(a < u),
NOT(a > u),
NOT(a >= u),
NOT(a <= u),
NOT(NOT(b)),
-- Doesn't have a negation.
NOT(j @> '{}'::JSONB)
FROM x
----
Explained Query:
Project (#4..=#9, #3, #10) // { arity: 8 }
Map ((#0 != #1), (#0 = #1), (#0 >= #1), (#0 <= #1), (#0 < #1), (#0 > #1), NOT((#2 @> {}))) // { arity: 11 }
ReadStorage materialize.public.x // { arity: 4 }
EOF
statement ok
CREATE TABLE y (a boolean, b bool)
# Bypass if statements with identical branches
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT
CASE WHEN b THEN a ELSE a END
FROM y
----
Explained Query:
Project (#0) // { arity: 1 }
ReadStorage materialize.public.y // { arity: 2 }
EOF
# Bypass if statements with identical branches
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT
CASE WHEN b THEN NULL ELSE true END
FROM y
----
Explained Query:
Project (#2) // { arity: 1 }
Map ((null OR NOT(#1) OR (#1) IS NULL)) // { arity: 3 }
ReadStorage materialize.public.y // { arity: 2 }
EOF
# Bypass if statements with identical branches
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT
CASE WHEN b THEN NULL ELSE false END
FROM y
----
Explained Query:
Project (#2) // { arity: 1 }
Map ((#1 AND null AND (#1) IS NOT NULL)) // { arity: 3 }
ReadStorage materialize.public.y // { arity: 2 }
EOF
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT
CASE WHEN b THEN true ELSE NULL END
FROM y
----
Explained Query:
Project (#2) // { arity: 1 }
Map ((null OR (#1 AND (#1) IS NOT NULL))) // { arity: 3 }
ReadStorage materialize.public.y // { arity: 2 }
EOF
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT
CASE WHEN b THEN false ELSE NULL END
FROM y
----
Explained Query:
Project (#2) // { arity: 1 }
Map ((null AND (NOT(#1) OR (#1) IS NULL))) // { arity: 3 }
ReadStorage materialize.public.y // { arity: 2 }
EOF
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT
CASE WHEN b THEN false ELSE TRUE END
FROM y
----
Explained Query:
Project (#2) // { arity: 1 }
Map ((NOT(#1) OR (#1) IS NULL)) // { arity: 3 }
ReadStorage materialize.public.y // { arity: 2 }
EOF
statement ok
CREATE TABLE z (a int, b int)
statement ok
insert into z values (null, null), (1, null), (null, 2), (1, 2), (2, 1)
query T multiline
EXPLAIN WITH(arity, join_impls) SELECT *
FROM z
WHERE CASE WHEN a > b THEN FALSE ELSE TRUE END
----
Explained Query:
Filter ((#0) IS NULL OR (#1) IS NULL OR (#0 <= #1)) // { arity: 2 }
ReadStorage materialize.public.z // { arity: 2 }
Source materialize.public.z
filter=(((#0) IS NULL OR (#1) IS NULL OR (#0 <= #1)))
EOF
query II
SELECT *
FROM z
WHERE CASE WHEN a > b THEN FALSE ELSE TRUE END
----
NULL NULL
NULL 2
1 NULL
1 2
query T
SELECT CASE WHEN FALSE THEN 'short_string'::char(20) ELSE 'long_string_long_string'::char(30) END
----
long_string_long_string