summaryrefslogtreecommitdiff
path: root/mysql-test/main/set_operation.test
blob: c422042f3716f53f66ff04b70aaebd1079f62731 (plain)
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
create table t1 (a int, b int) engine=MyISAM;
create table t2 (c int, d int) engine=MyISAM;
create table t3 (e int, f int) engine=MyISAM;
create table t4 (g int, h int) engine=MyISAM;
insert into t1 values (1,1),(2,2),(3,3),(2,2),(3,3);
insert into t2 values (2,2),(3,3),(5,5),(2,2),(2,2),(3,3);
insert into t3 values (4,4),(2,2),(2,2),(1,1),(3,3);
insert into t4 values (2,2),(4,4),(1,1);
create view v0(g, h) as select a,c from t1,t2;

--echo # test optimization

let $q=
    select * from t1
    INTERSECT ALL
    select * from t2
    INTERSECT ALL
    select * from t3;
eval $q;
eval EXPLAIN EXTENDED $q;

let $q=
    select * from t1
    INTERSECT ALL
    select * from t2
    INTERSECT ALL
    select * from t3
    INTERSECT
    select * from t1;
eval $q;
eval EXPLAIN EXTENDED $q;

let $q=
    select * from t1
    INTERSECT ALL
    select * from t2
    INTERSECT ALL
    select * from t3
    EXCEPT ALL
    select * from t4;
eval $q;
eval EXPLAIN EXTENDED $q;

let $q=
    select * from t1
    INTERSECT
    select * from t2
    EXCEPT ALL
    select * from t4;
eval $q;
eval EXPLAIN EXTENDED $q;

insert into t4 values (1,1),(9,9);
let $q=
    select * from t1
    UNION ALL
    select * from t2
    UNION ALL
    select * from t3
    EXCEPT
    select * from t4;
eval $q;
eval EXPLAIN EXTENDED $q;

delete from t4;
insert into t4 values (3,3),(3,3);
let $q=
    select * from t1
    INTERSECT ALL
    select * from t2
    UNION ALL
    select * from t3
    EXCEPT ALL
    select * from t1
    UNION
    select * from t4
    EXCEPT
    select * from t3
    UNION ALL
    select * from t1;

eval $q;
eval EXPLAIN EXTENDED $q;
drop table t4;

--echo # test optimization with brackets

let $q=
(
    (select 1 except select 5 union all select 6)
        union
    (select 2 intersect all select 3 intersect all select 4)
        except
    (select 7 intersect all select 8)
)
    union all
(select 9 union all select 10)
    except all
select 11;
eval $q;
eval EXPLAIN EXTENDED $q;

let $q=
(select 1 union all select 2)
    union
(select 3 union all select 4);
eval $q;
eval EXPLAIN EXTENDED $q;

let $q=
(select 1 intersect all select 2)
    except
select 3;
eval $q;
eval EXPLAIN EXTENDED $q;

let $q=
(select 1 intersect all select 2 intersect all select 3)
    intersect
(select 4 intersect all select 5);
eval $q;
eval EXPLAIN EXTENDED $q;


--echo # test set operations with table value constructor

(values (1,1),(1,1),(1,1),(2,2),(2,2),(3,3),(9,9))
INTERSECT ALL
(values (1,1),(2,2),(2,2),(3,3),(3,3),(3,3),(8,8))
EXCEPT ALL
(values (7,7),(1,1));

delete from t1;
insert into t1 values(1,1),(1,1),(2,2),(4,4),(9,9);

select * from t1
UNION ALL
(values (11,12),(3,3),(2,2),(3,3),(4,4),(8,8))
INTERSECT
(values (13,14),(7,7),(2,2),(3,3),(1,1))
INTERSECT ALL
(values (15,16),(2,2),(1,1))
EXCEPT
(values (17,18),(1,1));

--echo  # test set operations with derived table

select * from (
    select * from t1
    UNION ALL
    select * from t2
)dt1
INTERSECT ALL
select * from (
    select * from t2
    EXCEPT ALL
    select * from t3
)dt2;

select * from (
    select * from t1
    UNION ALL
    select * from t3
)dt1
EXCEPT ALL
select * from (
    select * from t2
    INTERSECT ALL
    select * from t2
)dt2;

SELECT * from(
    select * from (
        select * from t1
        UNION ALL
        select * from t2
    )dt1
    INTERSECT ALL
    select * from (
        select * from t2
        EXCEPT ALL
        select * from t3
    )dt2
)dt3;

--echo # integration test


select * from t1
UNION ALL
select * from t2
INTERSECT ALL
(values (1,1), (2,2), (2,2), (5,5), (2,2))
INTERSECT ALL
select * from (select * from t1 union all select * from t1) sq
EXCEPT ALL
select * from t3
UNION ALL
select * from t2
UNION
select * from t3
EXCEPT
select a,c from t1,t2
UNION ALL
select * from v0 where g < 4
UNION ALL
select * from t3;

--sorted_result
select * from t1
UNION ALL
select * from t2
INTERSECT ALL
(values (1,1), (2,2), (2,2), (5,5), (2,2))
INTERSECT ALL
select * from (select * from t1 union all select * from t1) sq
EXCEPT ALL
select * from t3
UNION ALL
select * from t2
UNION
select * from t3
EXCEPT
select a,c from t1,t2
UNION ALL
select * from v0 where g < 4
UNION ALL
select * from t3
ORDER BY a;


select * from (
    select * from t1
    UNION ALL
    select * from t2
    INTERSECT ALL
    (values (1,1), (2,2), (2,2), (5,5), (2,2) )
    INTERSECT ALL
    select * from (select * from t1 union all select * from t1) sq
    EXCEPT ALL
    select * from t3
    UNION ALL
    select * from t2
    UNION
    select * from t3
    EXCEPT
    select a,c from t1,t2
    UNION ALL
    select * from v0 where g < 4
    UNION ALL
    select * from t3
) dt;

EXPLAIN
select * from t1
UNION ALL
select * from t2
INTERSECT ALL
(values (1,1), (2,2), (2,2), (5,5), (2,2) )
INTERSECT ALL
select * from (select * from t1 union all select * from t1) sq
EXCEPT ALL
select * from t3
UNION ALL
select * from t2
UNION
select * from t3
EXCEPT
select a,c from t1,t2
UNION ALL
select * from v0 where g < 4
UNION ALL
select * from t3;

EXPLAIN format=json
select * from t1
UNION ALL
select * from t2
INTERSECT ALL
(values (1,1), (2,2), (2,2), (5,5), (2,2) )
INTERSECT ALL
select * from (select * from t1 union all select * from t1) sq
EXCEPT ALL
select * from t3
UNION ALL
select * from t2
UNION
select * from t3
EXCEPT
select a,c from t1,t2
UNION ALL
select * from v0 where g < 4
UNION ALL
select * from t3;

EXPLAIN EXTENDED
select * from t1
UNION ALL
select * from t2
INTERSECT ALL
(values (1,1), (2,2), (2,2), (5,5), (2,2) )
INTERSECT ALL
select * from (select * from t1 union all select * from t1) sq
EXCEPT ALL
select * from t3
UNION ALL
select * from t2
UNION
select * from t3
EXCEPT
select a,c from t1,t2
UNION ALL
select * from v0 where g < 4
UNION ALL
select * from t3;

PREPARE stmt from"
    select * from t1
    UNION ALL
    select * from t2
    INTERSECT ALL
    (values (1,1), (2,2), (2,2), (5,5), (2,2) )
    INTERSECT ALL
    select * from (select * from t1 union all select * from t1) sq
    EXCEPT ALL
    select * from t3
    UNION ALL
    select * from t2
    UNION
    select * from t3
    EXCEPT
    select a,c from t1,t2
    UNION ALL
    select * from v0 where g < 4
    UNION ALL
    select * from t3
";


EXECUTE stmt;

EXECUTE stmt;
deallocate prepare stmt;

create view v1(i1, i2) as
    select * from t1
    UNION ALL
    select * from t2
    INTERSECT ALL
    (values (1,1), (2,2), (2,2), (5,5), (2,2) )
    INTERSECT ALL
    select * from (select * from t1 union all select * from t1) sq
    EXCEPT ALL
    select * from t3
    UNION ALL
    select * from t2
    UNION
    select * from t3
    EXCEPT
    select a,c from t1,t2
    UNION ALL
    select * from v0 where g < 4
    UNION ALL
    select * from t3;

show create view v1;

select * from v1 limit 14;
--sorted_result
select * from v1 order by i1 limit 14;

drop table t1,t2,t3;
drop view v0,v1;

--echo # compare result

create table t1 (a int, b int);
create table t2 (c int, d int);
create table t3 (e int, f int);
create table t4 (g int, h int);


insert into t1 values (1,1),(1,1),(2,2);
insert into t2 values (1,1),(1,1),(2,2),(3,3);
insert into t3 values (1,1);
insert into t4 values (4,4);

select * from t1 intersect all select * from t2 except select * from t3 union select * from t4;
select * from t1 intersect all select * from t2 except ALL select * from t3 union select * from t4;

select * from t1 intersect DISTINCT select * from t2 except select * from t3 union select * from t4;
select * from t1 intersect DISTINCT select * from t2 except ALL select * from t3 union select * from t4;

delete from t1;
delete from t2;
delete from t3;
delete from t4;


insert into t1 values (1,1),(1,1),(1,1),(2,2),(2,2),(4,4),(5,5);
insert into t2 values (1,1),(1,1),(1,1),(2,2),(2,2),(3,3);
insert into t3 values (1,1),(2,2),(2,2);

select * from t1 intersect all select * from t2 intersect all select * from t3;
select * from t1 intersect all select * from t2 intersect select * from t3;
select * from t1 intersect all select * from t1 intersect all select * from t2 intersect select * from t3;

delete from t1;
delete from t2;
delete from t3;


insert into t1 values (1,1),(1,1),(2,2);
insert into t2 values (1,1),(1,1),(2,2),(3,3);
insert into t3 values (1,1),(5,5);
insert into t4 values (4,4),(4,4),(4,4);

select * from t1 intersect all select * from t2 union all select * from t3 union select * from t4;
select * from t1 intersect DISTINCT select * from t2 union DISTINCT select * from t3 union select * from t4;

select * from t1 intersect all select * from t2 intersect all select * from t3 union select * from t4;
select * from t1 intersect all select * from t2 intersect DISTINCT select * from t3 union select * from t4;
select * from t1 intersect DISTINCT select * from t2 intersect DISTINCT select * from t3 union select * from t4;

select * from t1 intersect all select * from t2 EXCEPT select * from t3 union select * from t4;
select * from t1 intersect DISTINCT select * from t2 EXCEPT select * from t3 union select * from t4;
select * from t1 intersect all select * from t2 EXCEPT ALL select * from t3 union select * from t4;

select * from t1 EXCEPT select * from t2 union all select * from t3 union select * from t4;
select * from t1 EXCEPT select * from t2 union DISTINCT select * from t3 union select * from t4;

delete from t1;
delete from t2;
delete from t3;
delete from t4;


insert into t1 values (1,1),(2,2);
insert into t2 values (1,1),(2,2);
insert into t3 values (1,1),(3,3);

select * from t1 union all select * from t2 except all select * from t3;
select * from t1 union all select * from t2 except DISTINCT select * from t3;
select * from t1 union DISTINCT select * from t2 except all select * from t3;
select * from t1 union DISTINCT select * from t2 except DISTINCT select * from t3;

drop table t1;
drop table t2;
drop table t3;
drop table t4;


select 1 intersect all select 2 intersect all select 3 intersect select 4 union select 5;
select 1 intersect all select 2 intersect all select 3 union select 4 except select 5;
select 1 union select 2 except all select 3 union select 4;
select 1 union all select 2 union all select 3 union select 4;

--echo # test with limited resource

set @@max_heap_table_size= 1024;
set @@tmp_table_size= 1024;

create table t1 (a int, b int);
insert into t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9),(0,0);
insert into t1 select * from t1;
insert into t1 select * from t1;
insert into t1 select * from t1;
insert into t1 select a+100, b+100 from t1;
create table t2 (a int, b int);
insert into t2 values (10,10),(11,11),(12,12),(13,13),(14,14),(5,5),(6,6),(7,7),(8,8),(9,9);
insert into t2 select * from t2;
insert into t2 select * from t2;
insert into t2 select * from t2;
insert into t2 select a+100, b+100 from t2;


select count(*) from
(
    select * from t1
    INTERSECT ALL
    select * from t2
) c;

select count(*) from
(
    select * from t1
    EXCEPT ALL
    select * from t2
) c;

select count(*) from
(
    select * from t1
    INTERSECT ALL
    select * from t2
    UNION ALL
    select * from t1
    EXCEPT ALL
    select * from t2
) c;

delete from t1;
delete from t2;

insert into t1 values (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7),(8,8),(9,9),(0,0);
insert into t1 select a+10, b+10 from t1;
insert into t1 select a+20, b+20 from t1;
insert into t1 select a+40, b+40 from t1;
insert into t1 select a+80, b+80 from t1;
insert into t2 values (1110,1110),(1111,1111),(1112,1112),(1113,1113),(1114,1114),(1105,1105),(1106,1106),(1107,1107),(1108,1108),(1109,1109);
insert into t2 select a+10, b+10 from t2;
insert into t2 select a+20, b+20 from t2;
insert into t2 select a+40, b+40 from t2;
insert into t2 select a+80, b+80 from t2;

select count(*) from
(
    select * from t1
    UNION ALL
    select * from t2
    EXCEPT ALL
    values (1,1)
) c;

drop table t1;
drop table t2;

--echo #
--echo # MDEV-24242: set expression with empty intermediate result
--echo #             when tmp_memory_table_size is set to 0
--echo #

create table t1 (a int, b int) engine=MyISAM;
insert into t1 values (1,1), (2,2);
create table t2 (a int, b int) engine=MyISAM;
insert into t2 values (11,11), (12,12), (13,13);

let $q=
select * from t1
except all
select * from t1
except
select * from t1
union all
select * from t2;

eval $q;
set tmp_memory_table_size=0;
eval $q;
set tmp_memory_table_size=default;

drop table t1,t2;

--echo # End of 10.4 tests