Line data Source code
1 : /*
2 : * SPDX-License-Identifier: MPL-2.0
3 : *
4 : * This Source Code Form is subject to the terms of the Mozilla Public
5 : * License, v. 2.0. If a copy of the MPL was not distributed with this
6 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 : *
8 : * Copyright 2024 MonetDB Foundation;
9 : * Copyright August 2008 - 2023 MonetDB B.V.;
10 : * Copyright 1997 - July 2008 CWI.
11 : */
12 :
13 : #include "monetdb_config.h"
14 : #include "rel_optimizer_private.h"
15 : #include "rel_planner.h"
16 : #include "rel_exp.h"
17 : #include "rel_select.h"
18 : #include "rel_rewriter.h"
19 :
20 : /* Split_select optimizer splits case statements in select expressions. This is a step needed for cse */
21 : static void select_split_exps(mvc *sql, list *exps, sql_rel *rel);
22 :
23 : static sql_exp *
24 220516 : select_split_exp(mvc *sql, sql_exp *e, sql_rel *rel)
25 : {
26 220516 : switch(e->type) {
27 : case e_column:
28 : return e;
29 6896 : case e_convert:
30 6896 : e->l = select_split_exp(sql, e->l, rel);
31 6896 : return e;
32 24431 : case e_aggr:
33 : case e_func:
34 24431 : if (!is_analytic(e) && !exp_has_sideeffect(e)) {
35 24426 : sql_subfunc *f = e->f;
36 24426 : if (e->type == e_func && !f->func->s && is_caselike_func(f) /*is_ifthenelse_func(f)*/)
37 280 : return add_exp_too_project(sql, e, rel);
38 : }
39 : return e;
40 75487 : case e_cmp:
41 75487 : if (e->flag == cmp_or || e->flag == cmp_filter) {
42 18895 : select_split_exps(sql, e->l, rel);
43 18895 : select_split_exps(sql, e->r, rel);
44 56592 : } else if (e->flag == cmp_in || e->flag == cmp_notin) {
45 3254 : e->l = select_split_exp(sql, e->l, rel);
46 3254 : select_split_exps(sql, e->r, rel);
47 : } else {
48 53338 : e->l = select_split_exp(sql, e->l, rel);
49 53338 : e->r = select_split_exp(sql, e->r, rel);
50 53338 : if (e->f)
51 3590 : e->f = select_split_exp(sql, e->f, rel);
52 : }
53 : return e;
54 : case e_atom:
55 : case e_psm:
56 : return e;
57 : }
58 : return e;
59 : }
60 :
61 : static void
62 65899 : select_split_exps(mvc *sql, list *exps, sql_rel *rel)
63 : {
64 65899 : node *n;
65 :
66 65899 : if (!exps)
67 : return;
68 165999 : for(n=exps->h; n; n = n->next){
69 100100 : sql_exp *e = n->data;
70 :
71 100100 : e = select_split_exp(sql, e, rel);
72 100100 : n->data = e;
73 : }
74 : }
75 :
76 : static sql_rel *
77 1663261 : rel_split_select_(visitor *v, sql_rel *rel)
78 : {
79 1663261 : if (!rel || !is_select(rel->op) || list_empty(rel->exps) || !rel->l || mvc_highwater(v->sql))
80 1442158 : return rel;
81 :
82 221103 : bool funcs = false;
83 :
84 : /* are there functions */
85 472848 : for (node *n = rel->exps->h; n && !funcs; n = n->next)
86 251745 : funcs = exp_has_func(n->data);
87 :
88 : /* introduce extra project */
89 221103 : if (funcs) {
90 24855 : sql_rel *nrel = rel_project(v->sql->sa, rel->l,
91 24855 : rel_projections(v->sql, rel->l, NULL, 1, 1));
92 24855 : if (!nrel || !nrel->exps)
93 : return NULL;
94 24855 : rel->l = nrel;
95 : /* recursively split all functions and add those to the projection list */
96 24855 : select_split_exps(v->sql, rel->exps, nrel);
97 24855 : return rel;
98 : }
99 : return rel;
100 : }
101 :
102 : static sql_rel *
103 55888 : rel_split_select(visitor *v, global_props *gp, sql_rel *rel)
104 : {
105 55888 : (void) gp;
106 55888 : return rel_visitor_bottomup(v, rel, &rel_split_select_);
107 : }
108 :
109 : run_optimizer
110 626147 : bind_split_select(visitor *v, global_props *gp)
111 : {
112 626147 : int flag = v->sql->sql_optimizer;
113 550296 : return gp->opt_cycle == 0 && gp->opt_level == 1 && (flag & split_select)
114 1176435 : && gp->cnt[op_select] ? rel_split_select : NULL;
115 : }
116 :
117 :
118 : /*
119 : * Remove a redundant join
120 : *
121 : * join (L, Distinct Project(join(L,P) [ p.key == l.lkey]) [p.key]) [ p.key == l.lkey]
122 : * =>
123 : * join(L, P) [p.key==l.lkey]
124 : */
125 : static sql_rel *
126 1469837 : rel_remove_redundant_join_(visitor *v, sql_rel *rel)
127 : {
128 1469837 : if ((is_join(rel->op) || is_semi(rel->op)) && !list_empty(rel->exps)) {
129 218682 : sql_rel *l = rel->l, *r = rel->r, *b, *p = NULL, *j;
130 :
131 218682 : if (is_basetable(l->op) && is_simple_project(r->op) && need_distinct(r)) {
132 9 : b = l;
133 9 : p = r;
134 9 : j = p->l;
135 218673 : } else if (is_basetable(r->op) && is_simple_project(l->op) && need_distinct(l)) {
136 2333 : b = r;
137 2333 : p = l;
138 2333 : j = p->l;
139 : }
140 218682 : if (!p || !j || j->op != rel->op)
141 : return rel;
142 : /* j must have b->l (ie table) */
143 12 : sql_rel *jl = j->l, *jr = j->r;
144 12 : if ((is_basetable(jl->op) && jl->l == b->l) ||
145 8 : (is_basetable(jr->op) && jr->l == b->l)) {
146 11 : int left = 0;
147 11 : if (is_basetable(jl->op) && jl->l == b->l)
148 11 : left = 1;
149 11 : if (!list_empty(p->exps)) {
150 19 : for (node *n=p->exps->h; n; n = n->next) { /* all exps of 'p' must be bound to the opposite side */
151 11 : sql_exp *e = n->data;
152 :
153 18 : if (!rel_rebind_exp(v->sql, left ? jr : jl, e))
154 : return rel;
155 : }
156 : }
157 8 : if (exp_match_list(j->exps, rel->exps)) {
158 0 : p->l = (left)?rel_dup(jr):rel_dup(jl);
159 0 : rel_destroy(j);
160 0 : set_nodistinct(p);
161 0 : v->changes++;
162 0 : return rel;
163 : }
164 : }
165 : }
166 : return rel;
167 : }
168 :
169 : static sql_rel *
170 48236 : rel_remove_redundant_join(visitor *v, global_props *gp, sql_rel *rel)
171 : {
172 48236 : (void) gp;
173 48236 : return rel_visitor_bottomup(v, rel, &rel_remove_redundant_join_); /* this optimizer has to run before rel_first_level_optimizations */
174 : }
175 :
176 : run_optimizer
177 626147 : bind_remove_redundant_join(visitor *v, global_props *gp)
178 : {
179 626147 : int flag = v->sql->sql_optimizer;
180 550295 : return gp->opt_cycle == 0 && gp->opt_level == 1 && (gp->cnt[op_left] || gp->cnt[op_right]
181 531781 : || gp->cnt[op_full] || gp->cnt[op_join] || gp->cnt[op_semi] || gp->cnt[op_anti]) &&
182 674383 : (flag & remove_redundant_join) ? rel_remove_redundant_join : NULL;
183 : }
184 :
185 :
186 : static list *
187 1120009 : exp_merge_range(visitor *v, sql_rel *rel, list *exps)
188 : {
189 1120009 : node *n, *m;
190 2407126 : for (n=exps->h; n; n = n->next) {
191 1289010 : sql_exp *e = n->data;
192 1289010 : sql_exp *le = e->l;
193 1289010 : sql_exp *re = e->r;
194 :
195 : /* handle the and's in the or lists */
196 1289010 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
197 43380 : e->l = exp_merge_range(v, rel, e->l);
198 43380 : e->r = exp_merge_range(v, rel, e->r);
199 : /* only look for gt, gte, lte, lt */
200 1245630 : } else if (n->next &&
201 164799 : e->type == e_cmp && e->flag < cmp_equal && !e->f &&
202 6818 : re->card == CARD_ATOM && !is_anti(e)) {
203 1268 : for (m=n->next; m; m = m->next) {
204 777 : sql_exp *f = m->data;
205 777 : sql_exp *lf = f->l;
206 777 : sql_exp *rf = f->r;
207 777 : int c_le = is_numeric_upcast(le), c_lf = is_numeric_upcast(lf);
208 :
209 777 : if (f->type == e_cmp && f->flag < cmp_equal && !f->f &&
210 645 : rf->card == CARD_ATOM && !is_anti(f) &&
211 322 : exp_match_exp(c_le?le->l:le, c_lf?lf->l:lf)) {
212 172 : sql_exp *ne;
213 172 : int swap = 0, lt = 0, gt = 0;
214 172 : sql_subtype super;
215 : /* for now only c1 <[=] x <[=] c2 */
216 :
217 172 : swap = lt = (e->flag == cmp_lt || e->flag == cmp_lte);
218 172 : gt = !lt;
219 :
220 172 : if (gt &&
221 150 : (f->flag == cmp_gt ||
222 : f->flag == cmp_gte))
223 32 : continue;
224 22 : if (lt &&
225 22 : (f->flag == cmp_lt ||
226 : f->flag == cmp_lte))
227 0 : continue;
228 :
229 140 : cmp_supertype(&super, exp_subtype(le), exp_subtype(lf));
230 140 : if (!(rf = exp_check_type(v->sql, &super, rel, rf, type_equal)) ||
231 140 : !(le = exp_check_type(v->sql, &super, rel, le, type_equal)) ||
232 140 : !(re = exp_check_type(v->sql, &super, rel, re, type_equal))) {
233 0 : v->sql->session->status = 0;
234 0 : v->sql->errstr[0] = 0;
235 0 : continue;
236 : }
237 140 : if (!swap)
238 118 : ne = exp_compare2(v->sql->sa, le, re, rf, compare2range(e->flag, f->flag), 0);
239 : else
240 22 : ne = exp_compare2(v->sql->sa, le, rf, re, compare2range(f->flag, e->flag), 0);
241 :
242 140 : list_remove_data(exps, NULL, e);
243 140 : list_remove_data(exps, NULL, f);
244 140 : list_append(exps, ne);
245 140 : v->changes++;
246 140 : return exp_merge_range(v, rel, exps);
247 : }
248 : }
249 1244999 : } else if (n->next &&
250 164168 : e->type == e_cmp && e->flag < cmp_equal && !e->f &&
251 6187 : re->card > CARD_ATOM && !is_anti(e)) {
252 11218 : for (m=n->next; m; m = m->next) {
253 6784 : sql_exp *f = m->data;
254 6784 : sql_exp *lf = f->l;
255 6784 : sql_exp *rf = f->r;
256 :
257 6784 : if (f->type == e_cmp && f->flag < cmp_equal && !f->f &&
258 4979 : rf->card > CARD_ATOM && !is_anti(f)) {
259 4978 : sql_exp *ne, *t;
260 4978 : int swap = 0, lt = 0, gt = 0;
261 4978 : comp_type ef = (comp_type) e->flag, ff = (comp_type) f->flag;
262 4978 : int c_re = is_numeric_upcast(re), c_rf = is_numeric_upcast(rf);
263 4978 : int c_le = is_numeric_upcast(le), c_lf = is_numeric_upcast(lf), c;
264 4978 : sql_subtype super;
265 :
266 : /* both swapped ? */
267 4978 : if (exp_match_exp(c_re?re->l:re, c_rf?rf->l:rf)) {
268 19 : t = re;
269 19 : re = le;
270 19 : le = t;
271 19 : c = c_re; c_re = c_le; c_le = c;
272 19 : ef = swap_compare(ef);
273 19 : t = rf;
274 19 : rf = lf;
275 19 : lf = t;
276 19 : c = c_rf; c_rf = c_lf; c_lf = c;
277 19 : ff = swap_compare(ff);
278 : }
279 :
280 : /* is left swapped ? */
281 4978 : if (exp_match_exp(c_re?re->l:re, c_lf?lf->l:lf)) {
282 104 : t = re;
283 104 : re = le;
284 104 : le = t;
285 104 : c = c_re; c_re = c_le; c_le = c;
286 104 : ef = swap_compare(ef);
287 : }
288 :
289 : /* is right swapped ? */
290 4978 : if (exp_match_exp(c_le?le->l:le, c_rf?rf->l:rf)) {
291 177 : t = rf;
292 177 : rf = lf;
293 177 : lf = t;
294 177 : c = c_rf; c_rf = c_lf; c_lf = c;
295 177 : ff = swap_compare(ff);
296 : }
297 :
298 4978 : if (!exp_match_exp(c_le?le->l:le, c_lf?lf->l:lf))
299 3225 : continue;
300 :
301 : /* for now only c1 <[=] x <[=] c2 */
302 1830 : swap = lt = (ef == cmp_lt || ef == cmp_lte);
303 1830 : gt = !lt;
304 :
305 1830 : if (gt && (ff == cmp_gt || ff == cmp_gte))
306 73 : continue;
307 1757 : if (lt && (ff == cmp_lt || ff == cmp_lte))
308 4 : continue;
309 :
310 1753 : cmp_supertype(&super, exp_subtype(le), exp_subtype(lf));
311 1753 : if (!(rf = exp_check_type(v->sql, &super, rel, rf, type_equal)) ||
312 1753 : !(le = exp_check_type(v->sql, &super, rel, le, type_equal)) ||
313 1753 : !(re = exp_check_type(v->sql, &super, rel, re, type_equal))) {
314 0 : v->sql->session->status = 0;
315 0 : v->sql->errstr[0] = 0;
316 0 : continue;
317 : }
318 1753 : if (!swap)
319 1653 : ne = exp_compare2(v->sql->sa, le, re, rf, compare2range(ef, ff), 0);
320 : else
321 100 : ne = exp_compare2(v->sql->sa, le, rf, re, compare2range(ff, ef), 0);
322 :
323 1753 : list_remove_data(exps, NULL, e);
324 1753 : list_remove_data(exps, NULL, f);
325 1753 : list_append(exps, ne);
326 1753 : v->changes++;
327 1753 : return exp_merge_range(v, rel, exps);
328 : }
329 : }
330 : }
331 : }
332 : return exps;
333 : }
334 :
335 : static int
336 39557 : exps_cse( mvc *sql, list *oexps, list *l, list *r )
337 : {
338 39557 : list *nexps;
339 39557 : node *n, *m;
340 39557 : char *lu, *ru;
341 39557 : int lc = 0, rc = 0, match = 0, res = 0;
342 :
343 39557 : if (list_length(l) == 0 || list_length(r) == 0)
344 0 : return 0;
345 :
346 : /* first recursive exps_cse */
347 39557 : nexps = new_exp_list(sql->sa);
348 82905 : for (n = l->h; n; n = n->next) {
349 43348 : sql_exp *e = n->data;
350 :
351 43348 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
352 15107 : res = exps_cse(sql, nexps, e->l, e->r);
353 : } else {
354 28241 : append(nexps, e);
355 : }
356 : }
357 39557 : l = nexps;
358 :
359 39557 : nexps = new_exp_list(sql->sa);
360 86097 : for (n = r->h; n; n = n->next) {
361 46540 : sql_exp *e = n->data;
362 :
363 46540 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
364 2142 : res = exps_cse(sql, nexps, e->l, e->r);
365 : } else {
366 44398 : append(nexps, e);
367 : }
368 : }
369 39557 : r = nexps;
370 :
371 : /* simplify true or .. and .. or true */
372 39557 : if (list_length(l) == list_length(r) && list_length(l) == 1) {
373 35034 : sql_exp *le = l->h->data, *re = r->h->data;
374 :
375 35034 : if (exp_is_true(le)) {
376 14 : append(oexps, le);
377 14 : return 1;
378 : }
379 35020 : if (exp_is_true(re)) {
380 5 : append(oexps, re);
381 5 : return 1;
382 : }
383 : }
384 :
385 39538 : lu = SA_ZNEW_ARRAY(sql->ta, char, list_length(l));
386 39538 : ru = SA_ZNEW_ARRAY(sql->ta, char, list_length(r));
387 82884 : for (n = l->h, lc = 0; n; n = n->next, lc++) {
388 43346 : sql_exp *le = n->data;
389 :
390 95671 : for ( m = r->h, rc = 0; m; m = m->next, rc++) {
391 52325 : sql_exp *re = m->data;
392 :
393 52325 : if (!ru[rc] && exp_match_exp(le,re)) {
394 68 : lu[lc] = 1;
395 68 : ru[rc] = 1;
396 68 : match = 1;
397 : }
398 : }
399 : }
400 39538 : if (match) {
401 49 : list *nl = new_exp_list(sql->sa);
402 49 : list *nr = new_exp_list(sql->sa);
403 :
404 162 : for (n = l->h, lc = 0; n; n = n->next, lc++)
405 113 : if (!lu[lc])
406 49 : append(nl, n->data);
407 176 : for (n = r->h, rc = 0; n; n = n->next, rc++)
408 127 : if (!ru[rc])
409 59 : append(nr, n->data);
410 :
411 49 : if (list_length(nl) && list_length(nr))
412 23 : append(oexps, exp_or(sql->sa, nl, nr, 0));
413 :
414 162 : for (n = l->h, lc = 0; n; n = n->next, lc++) {
415 113 : if (lu[lc])
416 64 : append(oexps, n->data);
417 : }
418 : res = 1;
419 : } else {
420 39489 : append(oexps, exp_or(sql->sa, list_dup(l, (fdup)NULL),
421 : list_dup(r, (fdup)NULL), 0));
422 : }
423 : return res;
424 : }
425 :
426 : static inline int
427 23332 : exp_col_key(sql_exp *e)
428 : {
429 17591 : return e->nid ? e->nid : e->alias.label;
430 : }
431 :
432 : static inline int
433 5765 : exp_cmp_eq_unique_id(sql_exp *e)
434 : {
435 5765 : return exp_col_key(e->l);
436 : }
437 :
438 : static inline int
439 1768 : exp_multi_col_key(list *l)
440 : {
441 1768 : int k = exp_col_key(l->h->data);
442 5765 : for (node *n = l->h->next; n; n = n->next) {
443 3997 : k <<= 4;
444 7994 : k ^= exp_col_key(n->data);
445 : }
446 1768 : return k;
447 : }
448 :
449 : typedef struct exp_eq_col_values {
450 : /* we need ->first in order to remove it from the list of cmp_eq exps
451 : * in case that we find another occurrence (with a different value)
452 : */
453 : sql_exp* first;
454 : sql_exp* col; /* column */
455 : list *vs; /* list of values */
456 : } eq_cv;
457 :
458 : typedef struct exp_eq_multi_col_values {
459 : /* we need ->first in order to remove it from the list of multi col
460 : * cmp_eq exps in case that we find another occurrence (with different values)
461 : */
462 : list *first;
463 : list *cols; /* list of col exps */
464 : list *lvs; /* list of lists of values */
465 : } eq_mcv;
466 :
467 : static bool
468 4282 : detect_col_cmp_eqs(mvc *sql, list *eqs, sql_hash *eqh)
469 : {
470 4282 : bool col_multivalue_cmp_eq = false;
471 16084 : for (node *n = eqs->h; n; n = n->next ) {
472 11802 : sql_exp *e = n->data;
473 11802 : sql_exp *le = e->l, *re = e->r;
474 :
475 : /* find the le in the hash and append the re in the hash value (ea->list) */
476 11802 : bool found = false;
477 :
478 11802 : int key = eqh->key(le);
479 11802 : sql_hash_e *he = eqh->buckets[key&(eqh->size-1)];
480 :
481 14698 : for (;he && !found; he = he->chain) {
482 2896 : eq_cv *cv = he->value;
483 2896 : if (!exp_equal(le, cv->col)) {
484 2896 : cv->vs = append(cv->vs, re);
485 2896 : found = col_multivalue_cmp_eq = true;
486 : /* remove this and the previous (->first) occurrence (if exists) from eqs */
487 2896 : if (cv->first) {
488 1793 : list_remove_data(eqs, NULL, cv->first);
489 1793 : cv->first = NULL;
490 : }
491 2896 : list_remove_node(eqs, NULL, n);
492 : }
493 : }
494 :
495 11802 : if (!found) {
496 8906 : eq_cv *cv = SA_NEW(sql->sa, eq_cv);
497 8906 : cv->first = e;
498 8906 : cv->vs = sa_list(sql->sa);
499 8906 : cv->vs = append(cv->vs, re);
500 8906 : cv->col = le;
501 :
502 8906 : hash_add(eqh, key, cv);
503 : }
504 : }
505 4282 : return col_multivalue_cmp_eq;
506 : }
507 :
508 : static bool
509 692 : detect_multicol_cmp_eqs(mvc *sql, list *mce_ands, sql_hash *meqh)
510 : {
511 : /* we get as input a list of AND associated expressions (hence the entries are lists themselves)
512 : * we need to detect cmp_eq-only AND-associated expressions with the same columns so we can
513 : * group together their values
514 : * e.g. [[n = 1, m = 10], [m = 20, k = 100, l = 3000], [m = 20, n = 2]] has
515 : * - (m,k,l) group with a single value (20, 100, 3000)
516 : * - (n,k) group with two values (1, 10) and (2, 20)
517 : * at the end we return true only if we have at least a group of columns with more than a single value
518 : * e.g. in this example (n,k)
519 : */
520 692 : bool multi_multivalue_cmp_eq = false;
521 2460 : for (node *n = mce_ands->h; n; n = n->next) {
522 1768 : list *l = n->data;
523 :
524 : /* sort the list of the cmp_eq expressions based on the col exp
525 : * NOTE: from now on we only work with the sorted list, sl */
526 1768 : list *sl = list_sort(l, (fkeyvalue)&exp_cmp_eq_unique_id, NULL);
527 1768 : list_append_before(mce_ands, n, sl);
528 1768 : list_remove_node(mce_ands, NULL, n);
529 :
530 : /* find the eq exp in the hash and append the values */
531 1768 : bool found = false;
532 :
533 1768 : int key = meqh->key(sl);
534 1768 : sql_hash_e *he = meqh->buckets[key&(meqh->size-1)];
535 :
536 2866 : for (;he && !found; he = he->chain) {
537 : /* compare the values of the hash_entry with the cols under cmp_eq from the list */
538 1098 : bool same_cols = true;
539 1098 : eq_mcv *mcv = he->value;
540 3479 : for (node *m = sl->h, *k = mcv->cols->h; m && k && same_cols; m = m->next, k = k->next) {
541 2381 : sql_exp *col_exp = ((sql_exp*)m->data)->l;
542 2381 : if (exp_equal(col_exp, k->data))
543 663 : same_cols = false;
544 : }
545 1098 : if (same_cols) {
546 : /* we found the same multi cmp_eq exp in mce_ands list multiple times! */
547 435 : found = multi_multivalue_cmp_eq = true;
548 : /* gather all the values of the list and add them to the hash entry */
549 435 : list *atms = sa_list(sql->sa);
550 1783 : for (node *m = sl->h; m; m = m->next)
551 1348 : atms = append(atms, ((sql_exp*)m->data)->r);
552 435 : mcv->lvs = append(mcv->lvs, atms);
553 : /* remove this and the previous occurrence (which means that's the first time
554 : * that we found the *same* multi cmp_eq exp)
555 : */
556 435 : if (mcv->first) {
557 80 : list_remove_data(mce_ands, NULL, mcv->first);
558 80 : mcv->first = NULL;
559 : }
560 435 : list_remove_data(mce_ands, NULL, sl);
561 : }
562 : }
563 :
564 1768 : if (!found) {
565 1333 : eq_mcv *mcv = SA_NEW(sql->sa, eq_mcv);
566 1333 : mcv->first = sl;
567 1333 : mcv->cols = sa_list(sql->sa);
568 5750 : for (node *m = sl->h; m; m = m->next)
569 4417 : mcv->cols = append(mcv->cols, ((sql_exp*)m->data)->l);
570 : /* for the list of values (atoms) create a list and append it to the lvs list */
571 1333 : list *atms = sa_list(sql->sa);
572 5750 : for (node *m = sl->h; m; m = m->next)
573 4417 : atms = append(atms, ((sql_exp*)m->data)->r);
574 1333 : mcv->lvs = sa_list(sql->sa);
575 1333 : mcv->lvs = append(mcv->lvs, atms);
576 :
577 1333 : hash_add(meqh, key, mcv);
578 : }
579 : }
580 692 : return multi_multivalue_cmp_eq;
581 : }
582 :
583 : static void
584 66357 : exp_or_chain_groups(mvc *sql, list *exps, list **gen_ands, list **mce_ands, list **eqs, list **noneq)
585 : {
586 : /* identify three different groups
587 : * 1. gen_ands: lists of generic expressions (their inner association is AND)
588 : * 2. mce_ands: lists of multi_colum cmp_eq ONLY expressions (same^^^)
589 : * 3. eqs: equality expressions
590 : * 4. neq: non equality col expressions
591 : *
592 : * return true if there is an exp with more than one cmp_eq
593 : */
594 85750 : bool eq_only = true;
595 182998 : for (node *n = exps->h; n && eq_only; n = n->next) {
596 97248 : sql_exp *e = n->data;
597 97248 : sql_exp *le = e->l, *re = e->r;
598 194245 : eq_only &= (e->type == e_cmp && e->flag == cmp_equal &&
599 34848 : le->card != CARD_ATOM && is_column(le->type) &&
600 130966 : re->card == CARD_ATOM && !is_semantics(e));
601 : }
602 :
603 85750 : if (list_length(exps) > 1) {
604 5635 : if (eq_only)
605 4520 : *mce_ands = append(*mce_ands, exps);
606 : else
607 1115 : *gen_ands = append(*gen_ands, exps);
608 80115 : } else if (list_length(exps) == 1) {
609 80115 : sql_exp *se = exps->h->data;
610 80115 : sql_exp *le = se->l, *re = se->r;
611 :
612 80115 : if (se->type == e_cmp && se->flag == cmp_or && !is_anti(se)) {
613 : /* for a cmp_or expression go down the tree */
614 19393 : exp_or_chain_groups(sql, (list*)le, gen_ands, mce_ands, eqs, noneq);
615 19393 : exp_or_chain_groups(sql, (list*)re, gen_ands, mce_ands, eqs, noneq);
616 :
617 60722 : } else if (eq_only) {
618 15424 : *eqs = append(*eqs, se);
619 : } else {
620 45298 : *noneq = append(*noneq, se);
621 : }
622 : }
623 66357 : }
624 :
625 : static list *
626 1686 : generate_single_col_cmp_in(mvc *sql, sql_hash *eqh)
627 : {
628 : /* from single col cmp_eq with multiple atoms in the hash generate
629 : * "e_col in (val0, val1, ...)" (see detect_col_cmp_eqs())
630 : */
631 1686 : list *ins = new_exp_list(sql->sa);
632 55638 : for (int i = 0; i < eqh->size; i++) {
633 53952 : sql_hash_e *he = eqh->buckets[i];
634 :
635 56592 : while (he) {
636 2640 : eq_cv *cv = he->value;
637 : /* NOTE: cmp_eq expressions with a single entry are still in eqs */
638 2640 : if (list_length(cv->vs) > 1)
639 1793 : ins = append(ins, exp_in(sql->sa, cv->col, cv->vs, cmp_in));
640 2640 : he = he->chain;
641 : }
642 : }
643 1686 : return ins;
644 : }
645 :
646 : static list *
647 80 : generate_multi_col_cmp_in(mvc *sql, sql_hash *meqh)
648 : {
649 : /* from multivalue cmp_eq with multiple lists of atoms in the hash generate
650 : * "(col1, col2, ...) in [(val10, val20, ...), (val11, val21, ...), ... ]"
651 : * (see detect_multicol_cmp_eqs())
652 : */
653 80 : list *ins = new_exp_list(sql->sa);
654 2640 : for (int i = 0; i < meqh->size; i++) {
655 2560 : sql_hash_e *he = meqh->buckets[i];
656 2654 : while (he) {
657 94 : eq_mcv *mcv = he->value;
658 : /* NOTE: multivalue cmp_eq expressions with a single entry are still in mce_ands */
659 94 : if (list_length(mcv->lvs) > 1) {
660 80 : sql_exp *mc = exp_label(sql->sa, exp_values(sql->sa, mcv->cols), ++sql->label);
661 595 : for (node *a = mcv->lvs->h; a; a = a->next)
662 515 : a->data = exp_values(sql->sa, a->data);
663 80 : ins = append(ins, exp_in(sql->sa, mc, mcv->lvs, cmp_in));
664 : }
665 94 : he = he->chain;
666 : }
667 : }
668 80 : return ins;
669 : }
670 :
671 : static list *
672 519690 : merge_ors(mvc *sql, list *exps, int *changes)
673 : {
674 519690 : sql_hash *eqh = NULL, *meqh = NULL;
675 519690 : list *eqs = NULL, *neq = NULL, *gen_ands = NULL, *mce_ands = NULL, *ins = NULL, *mins = NULL;
676 1117214 : for (node *n = exps->h; n; n = n->next) {
677 597524 : sql_exp *e = n->data;
678 :
679 597524 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
680 : /* NOTE: gen_ands and mce_ands are both a list of lists since the AND association
681 : * between expressions is expressed with a list
682 : * e.g. [[e1, e2], [e3, e4, e5]] semantically translates
683 : * to [(e1 AND e2), (e3 AND e4 AND e5)]
684 : * those (internal) AND list can be then used to
685 : * reconstructed an OR tree [[e1, e2], [e3, e4, e5]] =>
686 : * (([e1, e2] OR [e3, e4, e5]) OR <whatever-else> )
687 : * gen_ands includes general expressions associated with AND
688 : * mce_ands includes only cmp_eq expressions associated with AND
689 : */
690 23482 : gen_ands = new_exp_list(sql->sa);
691 23482 : mce_ands = new_exp_list(sql->sa);
692 23482 : eqs = new_exp_list(sql->sa);
693 23482 : neq = new_exp_list(sql->sa);
694 :
695 : /* walk the OR tree */
696 23482 : exp_or_chain_groups(sql, e->l, &gen_ands, &mce_ands, &eqs, &neq);
697 23482 : exp_or_chain_groups(sql, e->r, &gen_ands, &mce_ands, &eqs, &neq);
698 :
699 : /* detect col cmp_eq exps with multiple values */
700 23482 : bool col_multival = false;
701 23482 : if (list_length(eqs) > 1) {
702 4282 : eqh = hash_new(sql->sa, 32, (fkeyvalue)&exp_col_key);
703 4282 : col_multival = detect_col_cmp_eqs(sql, eqs, eqh);
704 : }
705 :
706 : /* detect mutli-col cmp_eq exps with multiple (lists of) values */
707 23482 : bool multicol_multival = false;
708 23482 : if (list_length(mce_ands) > 1) {
709 692 : meqh = hash_new(sql->sa, 32, (fkeyvalue)&exp_multi_col_key);
710 692 : multicol_multival = detect_multicol_cmp_eqs(sql, mce_ands, meqh);
711 : }
712 :
713 23482 : if (!col_multival && !multicol_multival)
714 21725 : continue;
715 :
716 1757 : if (col_multival)
717 1686 : ins = generate_single_col_cmp_in(sql, eqh);
718 :
719 1757 : if (multicol_multival)
720 80 : mins = generate_multi_col_cmp_in(sql, meqh);
721 :
722 : /* create the new OR tree */
723 1757 : sql_exp *new = (ins) ? ins->h->data : mins->h->data;
724 :
725 71 : if (ins) {
726 1793 : for (node *i = ins->h->next; i; i = i->next) {
727 107 : list *l = new_exp_list(sql->sa);
728 107 : list *r = new_exp_list(sql->sa);
729 107 : l = append(l, new);
730 107 : r = append(r, (sql_exp*)i->data);
731 107 : new = exp_or(sql->sa, l, r, 0);
732 :
733 107 : (*changes)++;
734 : }
735 : }
736 :
737 1757 : if (list_length(eqs)) {
738 1448 : for (node *i = eqs->h; i; i = i->next) {
739 872 : list *l = new_exp_list(sql->sa);
740 872 : list *r = new_exp_list(sql->sa);
741 872 : l = append(l, new);
742 872 : r = append(r, (sql_exp*)i->data);
743 872 : new = exp_or(sql->sa, l, r, 0);
744 : }
745 : }
746 :
747 1757 : if (mins) {
748 169 : for (node *i = ((ins) ? mins->h : mins->h->next); i; i = i->next) {
749 9 : list *l = new_exp_list(sql->sa);
750 9 : list *r = new_exp_list(sql->sa);
751 9 : l = append(l, new);
752 9 : r = append(r, (sql_exp*)i->data);
753 9 : new = exp_or(sql->sa, l, r, 0);
754 :
755 9 : (*changes)++;
756 : }
757 : }
758 :
759 1757 : if (list_length(mce_ands)) {
760 523 : for (node *i = mce_ands->h; i; i = i->next) {
761 273 : list *l = new_exp_list(sql->sa);
762 273 : l = append(l, new);
763 273 : new = exp_or(sql->sa, l, i->data, 0);
764 : }
765 : }
766 :
767 1760 : for (node *a = gen_ands->h; a; a = a->next){
768 3 : list *l = new_exp_list(sql->sa);
769 3 : l = append(l, new);
770 3 : new = exp_or(sql->sa, l, a->data, 0);
771 : }
772 :
773 2075 : for (node *o = neq->h; o; o = o->next){
774 318 : list *l = new_exp_list(sql->sa);
775 318 : list *r = new_exp_list(sql->sa);
776 318 : l = append(l, new);
777 318 : r = append(r, (sql_exp*)o->data);
778 318 : new = exp_or(sql->sa, l, r, 0);
779 : }
780 :
781 1757 : list_remove_node(exps, NULL, n);
782 1757 : exps = append(exps, new);
783 : }
784 : }
785 519690 : return exps;
786 : }
787 :
788 : #define TRIVIAL_NOT_EQUAL_CMP(e) \
789 : ((e)->type == e_cmp && (e)->flag == cmp_notequal && !is_anti((e)) && !is_semantics((e)) && ((sql_exp*)(e)->l)->card != CARD_ATOM && ((sql_exp*)(e)->r)->card == CARD_ATOM)
790 :
791 : static list *
792 599268 : merge_notequal(mvc *sql, list *exps, int *changes)
793 : {
794 599268 : list *inequality_groups = NULL, *nexps = NULL;
795 599268 : int needed = 0;
796 :
797 1286953 : for (node *n = exps->h; n; n = n->next) {
798 687685 : sql_exp *e = n->data;
799 :
800 687685 : if (TRIVIAL_NOT_EQUAL_CMP(e)) {
801 82343 : bool appended = false;
802 :
803 82343 : if (inequality_groups) {
804 9091 : for (node *m = inequality_groups->h; m && !appended; m = m->next) {
805 5210 : list *next = m->data;
806 5210 : sql_exp *first = (sql_exp*) next->h->data;
807 :
808 5210 : if (exp_match(first->l, e->l)) {
809 1164 : list_append(next, e);
810 1164 : appended = true;
811 : }
812 : }
813 : }
814 3881 : if (!appended) {
815 81179 : if (!inequality_groups)
816 78462 : inequality_groups = new_exp_list(sql->sa);
817 81179 : list_append(inequality_groups, list_append(new_exp_list(sql->sa), e));
818 : }
819 : }
820 : }
821 :
822 599268 : if (inequality_groups) { /* if one list of inequalities has more than one entry, then the re-write is needed */
823 159641 : for (node *n = inequality_groups->h; n; n = n->next) {
824 81179 : list *next = n->data;
825 :
826 81179 : if (list_length(next) > 1)
827 1079 : needed = 1;
828 : }
829 : }
830 :
831 78462 : if (needed) {
832 997 : nexps = new_exp_list(sql->sa);
833 2610 : for (node *n = inequality_groups->h; n; n = n->next) {
834 1613 : list *next = n->data;
835 1613 : sql_exp *first = (sql_exp*) next->h->data;
836 :
837 1613 : if (list_length(next) > 1) {
838 1079 : list *notin = new_exp_list(sql->sa);
839 :
840 3322 : for (node *m = next->h; m; m = m->next) {
841 2243 : sql_exp *e = m->data;
842 2243 : list_append(notin, e->r);
843 : }
844 1079 : list_append(nexps, exp_in(sql->sa, first->l, notin, cmp_notin));
845 : } else {
846 534 : list_append(nexps, first);
847 : }
848 : }
849 :
850 4132 : for (node *n = exps->h; n; n = n->next) {
851 3135 : sql_exp *e = n->data;
852 :
853 3135 : if (!TRIVIAL_NOT_EQUAL_CMP(e))
854 358 : list_append(nexps, e);
855 : }
856 997 : (*changes)++;
857 : } else {
858 : nexps = exps;
859 : }
860 :
861 1285789 : for (node *n = nexps->h; n ; n = n->next) {
862 686521 : sql_exp *e = n->data;
863 :
864 686521 : if (e->type == e_cmp && e->flag == cmp_or) {
865 39789 : e->l = merge_notequal(sql, e->l, changes);
866 39789 : e->r = merge_notequal(sql, e->r, changes);
867 : }
868 : }
869 :
870 599268 : return nexps;
871 : }
872 :
873 : int
874 175374 : is_numeric_upcast(sql_exp *e)
875 : {
876 175374 : if (is_convert(e->type)) {
877 4667 : sql_subtype *f = exp_fromtype(e);
878 4667 : sql_subtype *t = exp_totype(e);
879 :
880 4667 : if (f->type->eclass == t->type->eclass && EC_COMPUTE(f->type->eclass)) {
881 1638 : if (f->type->localtype < t->type->localtype)
882 1618 : return 1;
883 : }
884 : }
885 : return 0;
886 : }
887 :
888 : /* optimize (a = b) or (a is null and b is null) -> a = b with null semantics */
889 : static sql_exp *
890 45140 : try_rewrite_equal_or_is_null(mvc *sql, sql_rel *rel, sql_exp *or, list *l1, list *l2)
891 : {
892 45140 : if (list_length(l1) == 1) {
893 41544 : bool valid = true, first_is_null_found = false, second_is_null_found = false;
894 41544 : sql_exp *cmp = l1->h->data;
895 41544 : sql_exp *first = cmp->l, *second = cmp->r;
896 :
897 41544 : if (is_compare(cmp->type) && !is_anti(cmp) && !cmp->f && cmp->flag == cmp_equal) {
898 7406 : int fupcast = is_numeric_upcast(first), supcast = is_numeric_upcast(second);
899 15077 : for(node *n = l2->h ; n && valid; n = n->next) {
900 7671 : sql_exp *e = n->data, *l = e->l, *r = e->r;
901 :
902 7671 : if (is_compare(e->type) && e->flag == cmp_equal && !e->f &&
903 4637 : !is_anti(e) && is_semantics(e)) {
904 1852 : int lupcast = is_numeric_upcast(l);
905 1852 : int rupcast = is_numeric_upcast(r);
906 1852 : sql_exp *rr = rupcast ? r->l : r;
907 :
908 1852 : if (rr->type == e_atom && rr->l && atom_null(rr->l)) {
909 1852 : if (exp_match_exp(fupcast?first->l:first, lupcast?l->l:l))
910 : first_is_null_found = true;
911 353 : else if (exp_match_exp(supcast?second->l:second, lupcast?l->l:l))
912 : second_is_null_found = true;
913 : else
914 5907 : valid = false;
915 : } else {
916 : valid = false;
917 : }
918 : } else {
919 : valid = false;
920 : }
921 : }
922 7406 : if (valid && first_is_null_found && second_is_null_found) {
923 262 : sql_subtype super;
924 :
925 262 : cmp_supertype(&super, exp_subtype(first), exp_subtype(second)); /* first and second must have the same type */
926 262 : if (!(first = exp_check_type(sql, &super, rel, first, type_equal)) ||
927 262 : !(second = exp_check_type(sql, &super, rel, second, type_equal))) {
928 0 : sql->session->status = 0;
929 0 : sql->errstr[0] = 0;
930 0 : return or;
931 : }
932 262 : sql_exp *res = exp_compare(sql->sa, first, second, cmp->flag);
933 262 : set_semantics(res);
934 262 : if (exp_name(or))
935 0 : exp_prop_alias(sql->sa, res, or);
936 262 : return res;
937 : }
938 : }
939 : }
940 : return or;
941 : }
942 :
943 : static list *
944 1031356 : merge_cmp_or_null(mvc *sql, sql_rel *rel, list *exps, int *changes)
945 : {
946 2217814 : for (node *n = exps->h; n ; n = n->next) {
947 1186458 : sql_exp *e = n->data;
948 :
949 1186458 : if (is_compare(e->type) && e->flag == cmp_or && !is_anti(e)) {
950 22570 : sql_exp *ne = try_rewrite_equal_or_is_null(sql, rel, e, e->l, e->r);
951 22570 : if (ne != e) {
952 260 : (*changes)++;
953 260 : n->data = ne;
954 : }
955 22570 : ne = try_rewrite_equal_or_is_null(sql, rel, e, e->r, e->l);
956 22570 : if (ne != e) {
957 2 : (*changes)++;
958 2 : n->data = ne;
959 : }
960 : }
961 : }
962 1031356 : return exps;
963 : }
964 :
965 : static list *
966 1031356 : cleanup_equal_exps(mvc *sql, sql_rel *rel, list *exps, int *changes)
967 : {
968 1031356 : if (list_length(exps) <= 1)
969 : return exps;
970 141451 : if (is_join(rel->op)) {
971 213479 : for(node *n = exps->h; n; n = n->next) {
972 143553 : sql_exp *e = n->data;
973 286937 : if (e->type == e_cmp && !e->f && e->flag <= cmp_notequal &&
974 185069 : !rel_find_exp(rel->l, e->l) && !rel_find_exp(rel->r, e->r) &&
975 41511 : !find_prop(e->p, PROP_HASHCOL) && !find_prop(e->p, PROP_JOINIDX)) {
976 20675 : exp_swap(e);
977 : }
978 : }
979 : }
980 141451 : bool needed = false;
981 439060 : for(node *n = exps->h; !needed && n; n = n->next) {
982 589395 : for (node *m = n->next; !needed && m; m = m->next) {
983 291786 : if (exp_match_exp_semantics(n->data, m->data, true))
984 89 : needed = true;
985 : }
986 : }
987 141451 : if (needed) {
988 89 : list *nexps = sa_list(sql->sa);
989 :
990 293 : for(node *n = exps->h; n; n = n->next) {
991 204 : bool done = false;
992 629 : for (node *m = exps->h; m && !done; m = m->next) {
993 425 : if (n != m && exp_match_exp_semantics(n->data, m->data, false)) {
994 179 : sql_exp *e1 = n->data, *e2 = m->data;
995 179 : if ((is_any(e1) || is_semantics(e1)) || (!is_any(e2) && !is_semantics(e2))) {
996 179 : append(nexps, e1);
997 179 : if ((!is_any(e2) && !is_semantics(e2)) && is_left(rel->op) && list_length(rel->attr) == 1) {
998 : /* nil is false */
999 0 : sql_exp *m = rel->attr->h->data;
1000 0 : if (exp_is_atom(m))
1001 0 : set_no_nil(m);
1002 : }
1003 : }
1004 : done = true;
1005 : }
1006 : }
1007 204 : if (!done)
1008 25 : append(nexps, n->data);
1009 : }
1010 : return nexps;
1011 : }
1012 : (void)changes;
1013 : return exps;
1014 : }
1015 :
1016 : static inline sql_rel *
1017 1031356 : rel_select_cse(visitor *v, sql_rel *rel)
1018 : {
1019 1031356 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps) /* cleanup equal expressions */
1020 1031356 : rel->exps = cleanup_equal_exps(v->sql, rel, rel->exps, &v->changes); /* (a = b) and (a += b) */
1021 :
1022 1031356 : if (is_select(rel->op) && rel->exps)
1023 519690 : rel->exps = merge_ors(v->sql, rel->exps, &v->changes);
1024 :
1025 1031356 : if (is_select(rel->op) && rel->exps)
1026 519690 : rel->exps = merge_notequal(v->sql, rel->exps, &v->changes); /* x <> 1 and x <> 2 => x not in (1, 2)*/
1027 :
1028 1031356 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps)
1029 1031356 : rel->exps = merge_cmp_or_null(v->sql, rel, rel->exps, &v->changes); /* (a = b) or (a is null and b is null) -> a = b with null semantics */
1030 :
1031 1031356 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps) {
1032 1031356 : node *n;
1033 1031356 : list *nexps;
1034 1031356 : int needed = 0;
1035 :
1036 2211197 : for (n=rel->exps->h; n && !needed; n = n->next) {
1037 1179841 : sql_exp *e = n->data;
1038 :
1039 1179841 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e))
1040 1179841 : needed = 1;
1041 : }
1042 1031356 : if (!needed)
1043 : return rel;
1044 21499 : nexps = new_exp_list(v->sql->sa);
1045 50943 : for (n=rel->exps->h; n; n = n->next) {
1046 29444 : sql_exp *e = n->data;
1047 :
1048 29444 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
1049 : /* split the common expressions */
1050 22308 : v->changes += exps_cse(v->sql, nexps, e->l, e->r);
1051 : } else {
1052 7136 : append(nexps, e);
1053 : }
1054 : }
1055 21499 : rel->exps = nexps;
1056 : }
1057 : return rel;
1058 : }
1059 :
1060 : static list *
1061 13604 : exps_merge_select_rse( mvc *sql, list *l, list *r, bool *merged)
1062 : {
1063 13604 : node *n, *m, *o;
1064 13604 : list *nexps = NULL, *lexps, *rexps;
1065 13604 : bool lmerged = true, rmerged = true;
1066 :
1067 13604 : lexps = new_exp_list(sql->sa);
1068 28582 : for (n = l->h; n; n = n->next) {
1069 14978 : sql_exp *e = n->data;
1070 :
1071 14978 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e) && !is_semantics(e)) {
1072 5242 : lmerged = false;
1073 5242 : list *nexps = exps_merge_select_rse(sql, e->l, e->r, &lmerged);
1074 5644 : for (o = nexps->h; o; o = o->next)
1075 402 : append(lexps, o->data);
1076 : } else {
1077 9736 : append(lexps, e);
1078 : }
1079 : }
1080 13604 : if (lmerged)
1081 8411 : lmerged = (list_length(lexps) == 1);
1082 13604 : rexps = new_exp_list(sql->sa);
1083 29604 : for (n = r->h; n; n = n->next) {
1084 16000 : sql_exp *e = n->data;
1085 :
1086 16000 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e) && !is_semantics(e)) {
1087 699 : rmerged = false;
1088 699 : list *nexps = exps_merge_select_rse(sql, e->l, e->r, &rmerged);
1089 724 : for (o = nexps->h; o; o = o->next)
1090 25 : append(rexps, o->data);
1091 : } else {
1092 15301 : append(rexps, e);
1093 : }
1094 : }
1095 13604 : if (rmerged)
1096 12926 : rmerged = (list_length(r) == 1);
1097 :
1098 13604 : nexps = new_exp_list(sql->sa);
1099 :
1100 : /* merge merged lists first ? */
1101 23742 : for (n = lexps->h; n; n = n->next) {
1102 10138 : sql_exp *le = n->data, *re, *fnd = NULL;
1103 :
1104 10138 : if (le->type != e_cmp || le->flag == cmp_or || is_anti(le) || is_semantics(le) || is_symmetric(le))
1105 619 : continue;
1106 19633 : for (m = rexps->h; !fnd && m; m = m->next) {
1107 10114 : re = m->data;
1108 10114 : if (exps_match_col_exps(le, re))
1109 1548 : fnd = re;
1110 : }
1111 9519 : if (fnd && (is_anti(fnd) || is_semantics(fnd)))
1112 50 : continue;
1113 : /* cases
1114 : * 1) 2 values (cmp_equal)
1115 : * 2) 1 value (cmp_equal), and cmp_in
1116 : * (also cmp_in, cmp_equal)
1117 : * 3) 2 cmp_in
1118 : * 4) ranges
1119 : */
1120 1498 : if (fnd) {
1121 1498 : re = fnd;
1122 1498 : fnd = NULL;
1123 1498 : if (is_anti(le) || is_anti(re) || is_symmetric(re))
1124 0 : continue;
1125 1935 : if (le->flag == cmp_equal && re->flag == cmp_equal) {
1126 437 : list *exps = new_exp_list(sql->sa);
1127 :
1128 437 : append(exps, le->r);
1129 437 : append(exps, re->r);
1130 437 : fnd = exp_in(sql->sa, le->l, exps, cmp_in);
1131 1204 : } else if (le->flag == cmp_equal && re->flag == cmp_in){
1132 143 : list *exps = new_exp_list(sql->sa);
1133 :
1134 143 : append(exps, le->r);
1135 143 : list_merge(exps, re->r, NULL);
1136 143 : fnd = exp_in(sql->sa, le->l, exps, cmp_in);
1137 1213 : } else if (le->flag == cmp_in && re->flag == cmp_equal){
1138 295 : list *exps = new_exp_list(sql->sa);
1139 :
1140 295 : append(exps, re->r);
1141 295 : list_merge(exps, le->r, NULL);
1142 295 : fnd = exp_in(sql->sa, le->l, exps, cmp_in);
1143 738 : } else if (le->flag == cmp_in && re->flag == cmp_in){
1144 115 : list *exps = new_exp_list(sql->sa);
1145 :
1146 115 : list_merge(exps, le->r, NULL);
1147 115 : list_merge(exps, re->r, NULL);
1148 115 : fnd = exp_in(sql->sa, le->l, exps, cmp_in);
1149 508 : } else if (le->f && re->f && /* merge ranges */
1150 20 : le->flag == re->flag && le->flag <= cmp_lt) {
1151 20 : sql_exp *mine = NULL, *maxe = NULL;
1152 :
1153 20 : if (!(mine = rel_binop_(sql, NULL, exp_copy(sql, le->r), exp_copy(sql, re->r), "sys", "sql_min", card_value, true))) {
1154 0 : sql->session->status = 0;
1155 0 : sql->errstr[0] = '\0';
1156 0 : continue;
1157 : }
1158 20 : if (!(maxe = rel_binop_(sql, NULL, exp_copy(sql, le->f), exp_copy(sql, re->f), "sys", "sql_max", card_value, true))) {
1159 0 : sql->session->status = 0;
1160 0 : sql->errstr[0] = '\0';
1161 0 : continue;
1162 : }
1163 20 : fnd = exp_compare2(sql->sa, exp_copy(sql, le->l), mine, maxe, le->flag, 0);
1164 20 : lmerged = false;
1165 : }
1166 1010 : if (fnd) {
1167 1010 : append(nexps, fnd);
1168 1864 : *merged = (fnd && lmerged && rmerged);
1169 : }
1170 : }
1171 : }
1172 13604 : return nexps;
1173 : }
1174 :
1175 : /* merge related sub expressions
1176 : *
1177 : * ie (x = a and y > 1 and y < 5) or
1178 : * (x = c and y > 1 and y < 10) or
1179 : * (x = e and y > 1 and y < 20)
1180 : * ->
1181 : * ((x = a and y > 1 and y < 5) or
1182 : * (x = c and y > 1 and y < 10) or
1183 : * (x = e and y > 1 and y < 20)) and
1184 : * x in (a,c,e) and
1185 : * y > 1 and y < 20
1186 : *
1187 : * for single expression or's we can do better
1188 : * x in (a, b, c) or x in (d, e, f)
1189 : * ->
1190 : * x in (a, b, c, d, e, f)
1191 : * */
1192 : static inline sql_rel *
1193 396477 : rel_merge_select_rse(visitor *v, sql_rel *rel)
1194 : {
1195 : /* only execute once per select */
1196 396477 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps && !is_rel_merge_select_rse_used(rel->used)) {
1197 140927 : node *n, *o;
1198 140927 : list *nexps = new_exp_list(v->sql->sa);
1199 :
1200 301536 : for (n=rel->exps->h; n; n = n->next) {
1201 160609 : sql_exp *e = n->data;
1202 :
1203 168272 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e) && !is_semantics(e)) {
1204 : /* possibly merge related expressions */
1205 7663 : bool merged = false;
1206 :
1207 7663 : list *ps = exps_merge_select_rse(v->sql, e->l, e->r, &merged);
1208 8246 : for (o = ps->h; o; o = o->next)
1209 583 : append(nexps, o->data);
1210 7663 : if (merged)
1211 87 : v->changes++;
1212 : else
1213 7576 : append(nexps, e);
1214 : } else {
1215 152946 : append(nexps, e);
1216 : }
1217 : }
1218 140927 : rel->exps = nexps;
1219 140927 : rel->used |= rel_merge_select_rse_used;
1220 : }
1221 396477 : return rel;
1222 : }
1223 :
1224 : /* pack optimizers into a single function call to avoid iterations in the AST */
1225 : static sql_rel *
1226 3638958 : rel_optimize_select_and_joins_bottomup_(visitor *v, sql_rel *rel)
1227 : {
1228 3638958 : if (!rel || (!is_join(rel->op) && !is_semi(rel->op) && !is_select(rel->op)) || list_empty(rel->exps))
1229 2607602 : return rel;
1230 1031356 : uint8_t cycle = *(uint8_t*) v->data;
1231 :
1232 1031356 : rel->exps = exp_merge_range(v, rel, rel->exps);
1233 1031356 : rel = rel_select_cse(v, rel);
1234 1031356 : if (cycle == 1)
1235 396477 : rel = rel_merge_select_rse(v, rel);
1236 1031356 : rel = rewrite_simplify(v, cycle, v->value_based_opt, rel);
1237 1031356 : return rel;
1238 : }
1239 :
1240 : static sql_rel *
1241 126673 : rel_optimize_select_and_joins_bottomup(visitor *v, global_props *gp, sql_rel *rel)
1242 : {
1243 126673 : v->data = &gp->opt_cycle;
1244 126673 : rel = rel_visitor_bottomup(v, rel, &rel_optimize_select_and_joins_bottomup_);
1245 126673 : v->data = gp;
1246 126673 : return rel;
1247 : }
1248 :
1249 : run_optimizer
1250 626147 : bind_optimize_select_and_joins_bottomup(visitor *v, global_props *gp)
1251 : {
1252 626147 : int flag = v->sql->sql_optimizer;
1253 625951 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right] ||
1254 541563 : gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti] ||
1255 1252098 : gp->cnt[op_select]) && (flag & optimize_select_and_joins_bottomup) ? rel_optimize_select_and_joins_bottomup : NULL;
1256 : }
1257 :
1258 :
1259 : static inline sql_rel *
1260 3438644 : rel_push_join_exps_down(visitor *v, sql_rel *rel)
1261 : {
1262 : /* push select exps part of join expressions down */
1263 : /* TODO CHECK WHY not semi enabled */
1264 3438644 : if ((is_innerjoin(rel->op) || is_left(rel->op) || is_right(rel->op) /*|| is_semi(rel->op)*/) && !list_empty(rel->exps)) {
1265 484615 : int left = is_innerjoin(rel->op) || is_right(rel->op) || rel->op == op_semi;
1266 484615 : int right = is_innerjoin(rel->op) || is_left(rel->op) || is_semi(rel->op);
1267 484615 : sql_rel *jl = rel->l, *ojl = jl, *jr = rel->r, *ojr = jr;
1268 :
1269 484615 : set_processed(jl);
1270 484615 : set_processed(jr);
1271 1043015 : for (node *n = rel->exps->h; n;) {
1272 558400 : node *next = n->next;
1273 558400 : sql_exp *e = n->data;
1274 :
1275 558400 : if (left && rel_rebind_exp(v->sql, jl, e) && !is_any(e)) { /* select expressions on left */
1276 1335 : if (!is_select(jl->op) || rel_is_ref(jl))
1277 1325 : rel->l = jl = rel_select(v->sql->sa, jl, NULL);
1278 1335 : rel_select_add_exp(v->sql->sa, jl, e);
1279 1335 : list_remove_node(rel->exps, NULL, n);
1280 1335 : v->changes++;
1281 557065 : } else if (right && rel_rebind_exp(v->sql, jr, e) && !is_any(e)) { /* select expressions on right */
1282 42 : if (!is_select(jr->op) || rel_is_ref(jr))
1283 40 : rel->r = jr = rel_select(v->sql->sa, jr, NULL);
1284 42 : rel_select_add_exp(v->sql->sa, jr, e);
1285 42 : list_remove_node(rel->exps, NULL, n);
1286 42 : v->changes++;
1287 : }
1288 : n = next;
1289 : }
1290 484615 : if (ojl != jl)
1291 1325 : set_processed(jl);
1292 484615 : if (ojr != jr)
1293 40 : set_processed(jr);
1294 : }
1295 3438644 : return rel;
1296 : }
1297 :
1298 : static inline bool
1299 3438644 : is_non_trivial_select_applied_to_outer_join(sql_rel *rel)
1300 : {
1301 3438644 : return is_select(rel->op) && rel->exps && is_outerjoin(((sql_rel*) rel->l)->op);
1302 : }
1303 :
1304 : extern list *list_append_before(list *l, node *n, void *data);
1305 :
1306 : static void
1307 : replace_column_references_with_nulls_2(mvc *sql, sql_rel *inner_join_side, sql_exp* e);
1308 :
1309 : static void
1310 5830 : replace_column_references_with_nulls_1(mvc *sql, sql_rel *inner_join_side, list* exps) {
1311 5830 : if (list_empty(exps))
1312 : return;
1313 14860 : for(node* n = exps->h; n; n=n->next) {
1314 9030 : sql_exp* e = n->data;
1315 9030 : replace_column_references_with_nulls_2(sql, inner_join_side, e);
1316 : }
1317 : }
1318 :
1319 : static void
1320 28667 : replace_column_references_with_nulls_2(mvc *sql, sql_rel *inner_join_side, sql_exp* e) {
1321 36497 : if (e == NULL) {
1322 : return;
1323 : }
1324 :
1325 30266 : switch (e->type) {
1326 9092 : case e_column:
1327 9092 : if (rel_find_exp_and_corresponding_rel(inner_join_side, e, true, NULL, NULL)) {
1328 2557 : e->type = e_atom;
1329 2557 : e->l = atom_general(sql->sa, &e->tpe, NULL, 0);
1330 2557 : e->r = e->f = NULL;
1331 : }
1332 : break;
1333 9373 : case e_cmp:
1334 9373 : switch (e->flag) {
1335 6661 : case cmp_gt:
1336 : case cmp_gte:
1337 : case cmp_lte:
1338 : case cmp_lt:
1339 : case cmp_equal:
1340 : case cmp_notequal:
1341 : {
1342 6661 : sql_exp* l = e->l;
1343 6661 : sql_exp* r = e->r;
1344 6661 : sql_exp* f = e->f;
1345 :
1346 6661 : replace_column_references_with_nulls_2(sql, inner_join_side, l);
1347 6661 : replace_column_references_with_nulls_2(sql, inner_join_side, r);
1348 6661 : replace_column_references_with_nulls_2(sql, inner_join_side, f);
1349 6661 : break;
1350 : }
1351 1953 : case cmp_filter:
1352 : case cmp_or:
1353 : {
1354 1953 : list* l = e->l;
1355 1953 : list* r = e->r;
1356 1953 : replace_column_references_with_nulls_1(sql, inner_join_side, l);
1357 1953 : replace_column_references_with_nulls_1(sql, inner_join_side, r);
1358 1953 : break;
1359 : }
1360 759 : case cmp_in:
1361 : case cmp_notin:
1362 : {
1363 759 : sql_exp* l = e->l;
1364 759 : list* r = e->r;
1365 759 : replace_column_references_with_nulls_2(sql, inner_join_side, l);
1366 759 : replace_column_references_with_nulls_1(sql, inner_join_side, r);
1367 759 : break;
1368 : }
1369 : default:
1370 : break;
1371 : }
1372 : break;
1373 1165 : case e_func:
1374 : {
1375 1165 : list* l = e->l;
1376 1165 : replace_column_references_with_nulls_1(sql, inner_join_side, l);
1377 1165 : break;
1378 : }
1379 1169 : case e_convert:
1380 : {
1381 1169 : sql_exp* l = e->l;
1382 1169 : replace_column_references_with_nulls_2(sql, inner_join_side, l);
1383 1169 : break;
1384 : }
1385 : default:
1386 : break;
1387 : }
1388 : }
1389 :
1390 : static sql_rel *
1391 4938 : out2inner(visitor *v, sql_rel* sel, sql_rel* join, sql_rel* inner_join_side, operator_type new_type) {
1392 :
1393 : /* handle inner_join relations with a simple select */
1394 4938 : if (is_select(inner_join_side->op) && inner_join_side->l)
1395 4938 : inner_join_side = inner_join_side->l;
1396 :
1397 4938 : list* select_predicates = exps_copy(v->sql, sel->exps);
1398 :
1399 10400 : for(node* n = select_predicates->h; n; n=n->next) {
1400 5556 : sql_exp* e = n->data;
1401 5556 : replace_column_references_with_nulls_2(v->sql, inner_join_side, e);
1402 :
1403 5556 : if (exp_is_false(e)) {
1404 94 : join->op = new_type;
1405 94 : v->changes++;
1406 94 : break;
1407 : }
1408 : }
1409 :
1410 4938 : return sel;
1411 : }
1412 :
1413 : static inline sql_rel *
1414 3438644 : rel_out2inner(visitor *v, sql_rel *rel) {
1415 :
1416 3438644 : if (!is_non_trivial_select_applied_to_outer_join(rel)) {
1417 : // Nothing to do here.
1418 : return rel;
1419 : }
1420 :
1421 4916 : sql_rel* join = (sql_rel*) rel->l;
1422 :
1423 4916 : if (rel_is_ref(join)) {
1424 : /* Do not alter a multi-referenced join relation.
1425 : * This is problematic (e.g. in the case of the plan of a merge statement)
1426 : * basically because there are no guarantees on the other container relations.
1427 : * In particular there is no guarantee that the other referencing relations are
1428 : * select relations with null-rejacting predicates on the inner join side.
1429 : */
1430 : return rel;
1431 : }
1432 :
1433 4916 : sql_rel* inner_join_side;
1434 4916 : if (is_left(join->op)) {
1435 4868 : inner_join_side = join->r;
1436 4868 : return out2inner(v, rel, join, inner_join_side, op_join);
1437 : }
1438 48 : else if (is_right(join->op)) {
1439 26 : inner_join_side = join->l;
1440 26 : return out2inner(v, rel, join, inner_join_side, op_join);
1441 : }
1442 : else /*full outer join*/ {
1443 : // First check if left side can degenerate from full outer join to just right outer join.
1444 22 : inner_join_side = join->r;
1445 22 : rel = out2inner(v, rel, join, inner_join_side, op_right);
1446 : /* Now test if the right side can degenerate to
1447 : * a normal inner join or a left outer join
1448 : * depending on the result of previous call to out2inner.
1449 : */
1450 :
1451 22 : inner_join_side = join->l;
1452 35 : return out2inner(v, rel, join, inner_join_side, is_right(join->op)? op_join: op_left);
1453 : }
1454 : }
1455 :
1456 : static bool
1457 4219 : exps_uses_any(list *exps, list *l)
1458 : {
1459 4219 : bool uses_any = false;
1460 :
1461 4219 : if (list_empty(exps) || list_empty(l))
1462 14 : return false;
1463 8416 : for (node *n = l->h; n && !uses_any; n = n->next) {
1464 4211 : sql_exp *e = n->data;
1465 4211 : uses_any |= list_exps_uses_exp(exps, exp_relname(e), exp_name(e)) != NULL;
1466 : }
1467 :
1468 : return uses_any;
1469 : }
1470 :
1471 : /* TODO At the moment I have to disable the new join2semi because the join order optimizer doesn't take semi-joins into account,
1472 : so plans get deteriorated if more joins are optimized into semi-joins. Later I will review the join order with semi-joins and hopefully,
1473 : I will be able to re-enable the new join2semi. */
1474 : #if 0
1475 : #define NO_EXP_FOUND 0
1476 : #define FOUND_WITH_DUPLICATES 1
1477 : #define MAY_HAVE_DUPLICATE_NULLS 2
1478 : #define ALL_VALUES_DISTINCT 3
1479 :
1480 : static int
1481 : find_projection_for_join2semi(sql_rel *rel, sql_exp *jc)
1482 : {
1483 : sql_rel *res = NULL;
1484 : sql_exp *e = NULL;
1485 : bool underjoin = false;
1486 :
1487 : if ((e = rel_find_exp_and_corresponding_rel(rel, jc, &res, &underjoin))) {
1488 : if (underjoin || e->type != e_column)
1489 : return FOUND_WITH_DUPLICATES;
1490 : /* if just one groupby column is projected or the relation needs distinct values and one column is projected or is a primary key, it will be distinct */
1491 : if (is_unique(e) ||
1492 : (is_groupby(res->op) && list_length(res->r) == 1 && exps_find_exp(res->r, e)) ||
1493 : ((is_project(res->op) || is_base(res->op)) && ((need_distinct(res) && list_length(res->exps) == 1) || res->card < CARD_AGGR)))
1494 : return has_nil(e) ? MAY_HAVE_DUPLICATE_NULLS : ALL_VALUES_DISTINCT;
1495 : return FOUND_WITH_DUPLICATES;
1496 : }
1497 : return NO_EXP_FOUND;
1498 : }
1499 :
1500 : static int
1501 : subrel_uses_exp_outside_subrel(visitor *v, sql_rel *rel, list *l, sql_rel *j)
1502 : {
1503 : if (rel == j)
1504 : return 0;
1505 : if (mvc_highwater(v->sql))
1506 : return 1;
1507 : switch(rel->op){
1508 : case op_join:
1509 : case op_left:
1510 : case op_right:
1511 : case op_full:
1512 : return exps_uses_any(rel->exps, l) ||
1513 : subrel_uses_exp_outside_subrel(v, rel->l, l, j) || subrel_uses_exp_outside_subrel(v, rel->r, l, j);
1514 : case op_semi:
1515 : case op_anti:
1516 : case op_select:
1517 : return exps_uses_any(rel->exps, l) ||
1518 : subrel_uses_exp_outside_subrel(v, rel->l, l, j);
1519 : case op_project:
1520 : case op_groupby:
1521 : return exps_uses_any(rel->exps, l) || exps_uses_any(rel->r, l);
1522 : case op_basetable:
1523 : case op_table:
1524 : case op_union:
1525 : case op_except:
1526 : case op_inter:
1527 : return exps_uses_any(rel->exps, l);
1528 : case op_topn:
1529 : case op_sample:
1530 : return subrel_uses_exp_outside_subrel(v, rel->l, l, j);
1531 : default:
1532 : return 1;
1533 : }
1534 : }
1535 :
1536 : static int
1537 : projrel_uses_exp_outside_subrel(visitor *v, sql_rel *rel, list *l, sql_rel *j)
1538 : {
1539 : /* test if projecting relation uses any of the join expressions */
1540 : assert((is_simple_project(rel->op) || is_groupby(rel->op)) && rel->l);
1541 : return exps_uses_any(rel->exps, l) || exps_uses_any(rel->r, l) || subrel_uses_exp_outside_subrel(v, rel->l, l, j);
1542 : }
1543 :
1544 : static sql_rel *
1545 : rewrite_joins2semi(visitor *v, sql_rel *proj, sql_rel *rel)
1546 : {
1547 : /* generalize possibility : we need the visitor 'step' here */
1548 : if (rel_is_ref(rel) || mvc_highwater(v->sql)) /* if the join has multiple references, it's dangerous to convert it into a semijoin */
1549 : return rel;
1550 : if (is_innerjoin(rel->op) && !list_empty(rel->exps)) {
1551 : sql_rel *l = rel->l, *r = rel->r;
1552 : bool left_unique = true, right_unique = true;
1553 :
1554 : /* these relations don't project anything, so skip them */
1555 : while (is_topn(l->op) || is_sample(l->op) || is_select(l->op) || is_semi(l->op))
1556 : l = l->l;
1557 : /* joins will expand values, so don't search on those */
1558 : if (!is_base(l->op) && !is_project(l->op))
1559 : left_unique = false;
1560 : while (is_topn(r->op) || is_sample(r->op) || is_select(r->op) || is_semi(r->op))
1561 : r = r->l;
1562 : if (!is_base(r->op) && !is_project(r->op))
1563 : right_unique = false;
1564 : /* if all columns used in equi-joins from one of the sides are unique, the join can be rewritten into a semijoin */
1565 : for (node *n=rel->exps->h; n && (left_unique || right_unique); n = n->next) {
1566 : sql_exp *e = n->data, *el = e->l, *er = e->r;
1567 :
1568 : if (!is_compare(e->type) || e->flag != cmp_equal || exp_has_func(el) || exp_has_func(er)) {
1569 : left_unique = right_unique = false;
1570 : } else {
1571 : int found = 0;
1572 :
1573 : if (left_unique && (found = find_projection_for_join2semi(l, el)) > NO_EXP_FOUND)
1574 : left_unique &= (found == ALL_VALUES_DISTINCT || (found == MAY_HAVE_DUPLICATE_NULLS && (!is_semantics(e) || !has_nil(er))));
1575 : if (left_unique && (found = find_projection_for_join2semi(l, er)) > NO_EXP_FOUND)
1576 : left_unique &= (found == ALL_VALUES_DISTINCT || (found == MAY_HAVE_DUPLICATE_NULLS && (!is_semantics(e) || !has_nil(el))));
1577 : if (right_unique && (found = find_projection_for_join2semi(r, el)) > NO_EXP_FOUND)
1578 : right_unique &= (found == ALL_VALUES_DISTINCT || (found == MAY_HAVE_DUPLICATE_NULLS && (!is_semantics(e) || !has_nil(er))));
1579 : if (right_unique && (found = find_projection_for_join2semi(r, er)) > NO_EXP_FOUND)
1580 : right_unique &= (found == ALL_VALUES_DISTINCT || (found == MAY_HAVE_DUPLICATE_NULLS && (!is_semantics(e) || !has_nil(el))));
1581 : }
1582 : }
1583 :
1584 : /* now we need to check relation's expressions are not used */
1585 : if (left_unique && !projrel_uses_exp_outside_subrel(v, proj, l->exps, rel)) {
1586 : sql_rel *tmp = rel->r;
1587 : rel->r = rel->l;
1588 : rel->l = tmp;
1589 : rel->op = op_semi;
1590 : v->changes++;
1591 : } else if (right_unique && !projrel_uses_exp_outside_subrel(v, proj, r->exps, rel)) {
1592 : rel->op = op_semi;
1593 : v->changes++;
1594 : }
1595 : }
1596 : if (is_join(rel->op)) {
1597 : rel->l = rewrite_joins2semi(v, proj, rel->l);
1598 : rel->r = rewrite_joins2semi(v, proj, rel->r);
1599 : } else if (is_topn(rel->op) || is_sample(rel->op) || is_select(rel->op) || is_semi(rel->op)) {
1600 : rel->l = rewrite_joins2semi(v, proj, rel->l);
1601 : }
1602 : return rel;
1603 : }
1604 :
1605 : static inline sql_rel *
1606 : rel_join2semijoin(visitor *v, sql_rel *rel)
1607 : {
1608 : if ((is_simple_project(rel->op) || is_groupby(rel->op)) && rel->l)
1609 : rel->l = rewrite_joins2semi(v, rel, rel->l);
1610 : return rel;
1611 : }
1612 : #endif
1613 :
1614 : #define NO_PROJECTION_FOUND 0
1615 : #define MAY_HAVE_DUPLICATE_NULLS 1
1616 : #define ALL_VALUES_DISTINCT 2
1617 :
1618 : static int
1619 706921 : find_projection_for_join2semi(sql_rel *rel)
1620 : {
1621 706921 : if (is_simple_project(rel->op) || is_groupby(rel->op) || is_inter(rel->op) || is_except(rel->op) || is_base(rel->op) || (is_union(rel->op) && need_distinct(rel))) {
1622 375681 : if (rel->card < CARD_AGGR) /* const or groupby without group by exps */
1623 : return ALL_VALUES_DISTINCT;
1624 374534 : if (list_length(rel->exps) == 1) {
1625 6627 : sql_exp *e = rel->exps->h->data;
1626 : /* a single group by column in the projection list from a group by relation is guaranteed to be unique, but not an aggregate */
1627 6627 : if (e->type == e_column) {
1628 6597 : sql_rel *res = NULL;
1629 6597 : sql_exp *found = NULL;
1630 6597 : bool underjoin = false;
1631 :
1632 : /* if just one groupby column is projected or the relation needs distinct values and one column is projected or is a primary key, it will be distinct */
1633 6597 : if ((is_groupby(rel->op) && list_length(rel->r) == 1 && exps_find_exp(rel->r, e)) || (need_distinct(rel) && list_length(rel->exps) == 1))
1634 9528 : return ALL_VALUES_DISTINCT;
1635 2958 : if (is_unique(e))
1636 2249 : return has_nil(e) ? MAY_HAVE_DUPLICATE_NULLS : ALL_VALUES_DISTINCT;
1637 :
1638 709 : if ((is_simple_project(rel->op) || is_groupby(rel->op) || is_inter(rel->op) || is_except(rel->op)) &&
1639 129 : (found = rel_find_exp_and_corresponding_rel(rel->l, e, false, &res, &underjoin)) && !underjoin) { /* grouping column on inner relation */
1640 113 : if (need_distinct(res) && list_length(res->exps) == 1)
1641 : return ALL_VALUES_DISTINCT;
1642 113 : if (is_unique(found))
1643 0 : return has_nil(e) ? MAY_HAVE_DUPLICATE_NULLS : ALL_VALUES_DISTINCT;
1644 113 : if (found->type == e_column && found->card <= CARD_AGGR) {
1645 1 : if (!is_groupby(res->op) && list_length(res->exps) != 1)
1646 : return NO_PROJECTION_FOUND;
1647 0 : for (node *n = res->exps->h ; n ; n = n->next) { /* must be the single column in the group by expression list */
1648 0 : sql_exp *e = n->data;
1649 0 : if (e != found && e->type == e_column)
1650 : return NO_PROJECTION_FOUND;
1651 : }
1652 : return ALL_VALUES_DISTINCT;
1653 : }
1654 : }
1655 : }
1656 : }
1657 : }
1658 : return NO_PROJECTION_FOUND;
1659 : }
1660 :
1661 : static sql_rel *
1662 2254493 : find_candidate_join2semi(visitor *v, sql_rel *rel, bool *swap)
1663 : {
1664 : /* generalize possibility : we need the visitor 'step' here */
1665 2255019 : if (rel_is_ref(rel)) /* if the join has multiple references, it's dangerous to convert it into a semijoin */
1666 : return NULL;
1667 2137733 : if (rel->op == op_join && !list_empty(rel->exps) && list_empty(rel->attr)) {
1668 355627 : sql_rel *l = rel->l, *r = rel->r;
1669 355627 : int foundr = NO_PROJECTION_FOUND, foundl = NO_PROJECTION_FOUND, found = NO_PROJECTION_FOUND;
1670 355627 : bool ok = false;
1671 :
1672 355627 : foundr = find_projection_for_join2semi(r);
1673 355627 : if (foundr < ALL_VALUES_DISTINCT)
1674 351294 : foundl = find_projection_for_join2semi(l);
1675 355627 : if (foundr && foundr > foundl) {
1676 4339 : *swap = false;
1677 4339 : found = foundr;
1678 351288 : } else if (foundl) {
1679 2689 : *swap = true;
1680 2689 : found = foundl;
1681 : }
1682 :
1683 7028 : if (found > NO_PROJECTION_FOUND) {
1684 : /* if all join expressions can be pushed down or have function calls, then it cannot be rewritten into a semijoin */
1685 14060 : for (node *n=rel->exps->h; n && !ok; n = n->next) {
1686 7032 : sql_exp *e = n->data;
1687 :
1688 10796 : ok |= e->type == e_cmp && e->flag == cmp_equal && !exp_has_func(e) && !rel_rebind_exp(v->sql, l, e) && !rel_rebind_exp(v->sql, r, e) &&
1689 7 : (found == ALL_VALUES_DISTINCT || !is_semantics(e) || !has_nil((sql_exp *)e->l) || !has_nil((sql_exp *)e->r));
1690 : }
1691 : }
1692 :
1693 355627 : if (ok)
1694 : return rel;
1695 : }
1696 2134458 : if (is_join(rel->op) || is_semi(rel->op)) {
1697 535551 : sql_rel *c;
1698 :
1699 535551 : if ((c=find_candidate_join2semi(v, rel->l, swap)) != NULL ||
1700 535161 : (c=find_candidate_join2semi(v, rel->r, swap)) != NULL)
1701 412 : if (list_empty(c->attr))
1702 : return c;
1703 : }
1704 2134046 : if (is_topn(rel->op) || is_sample(rel->op))
1705 526 : return find_candidate_join2semi(v, rel->l, swap);
1706 : return NULL;
1707 : }
1708 :
1709 : static int
1710 2507 : subrel_uses_exp_outside_subrel(sql_rel *rel, list *l, sql_rel *c)
1711 : {
1712 2508 : if (rel == c)
1713 : return 0;
1714 : /* for subrel only expect joins (later possibly selects) */
1715 825 : if (is_join(rel->op) || is_semi(rel->op)) {
1716 418 : if (exps_uses_any(rel->exps, l))
1717 : return 1;
1718 818 : if (subrel_uses_exp_outside_subrel(rel->l, l, c) ||
1719 408 : subrel_uses_exp_outside_subrel(rel->r, l, c))
1720 5 : return 1;
1721 : }
1722 812 : if (is_topn(rel->op) || is_sample(rel->op))
1723 1 : return subrel_uses_exp_outside_subrel(rel->l, l, c);
1724 : return 0;
1725 : }
1726 :
1727 : static int
1728 3275 : rel_uses_exp_outside_subrel(sql_rel *rel, list *l, sql_rel *c)
1729 : {
1730 : /* for now we only expect sub relations of type project, selects (rel) or join/semi */
1731 3275 : if (is_simple_project(rel->op) || is_groupby(rel->op) || is_select(rel->op)) {
1732 3275 : if (!list_empty(rel->exps) && exps_uses_any(rel->exps, l))
1733 : return 1;
1734 1689 : if ((is_simple_project(rel->op) || is_groupby(rel->op)) && !list_empty(rel->r) && exps_uses_any(rel->r, l))
1735 : return 1;
1736 1689 : if (rel->l)
1737 1689 : return subrel_uses_exp_outside_subrel(rel->l, l, c);
1738 : }
1739 0 : if (is_topn(rel->op) || is_sample(rel->op))
1740 0 : return subrel_uses_exp_outside_subrel(rel->l, l, c);
1741 : return 1;
1742 : }
1743 :
1744 : static inline sql_rel *
1745 3438644 : rel_join2semijoin(visitor *v, sql_rel *rel)
1746 : {
1747 3438644 : if ((is_simple_project(rel->op) || is_groupby(rel->op)) && rel->l) {
1748 1183781 : bool swap = false;
1749 1183781 : sql_rel *l = rel->l;
1750 1183781 : sql_rel *c = find_candidate_join2semi(v, l, &swap);
1751 :
1752 1183781 : if (c) {
1753 : /* 'p' is a project */
1754 3275 : sql_rel *p = swap ? c->l : c->r;
1755 :
1756 : /* now we need to check if ce is only used at the level of c */
1757 3275 : if (!rel_uses_exp_outside_subrel(rel, p->exps, c)) {
1758 1681 : c->op = op_semi;
1759 1681 : if (swap) {
1760 518 : sql_rel *tmp = c->r;
1761 518 : c->r = c->l;
1762 518 : c->l = tmp;
1763 : }
1764 1681 : v->changes++;
1765 : }
1766 : }
1767 : }
1768 3438644 : return rel;
1769 : }
1770 :
1771 : static inline sql_rel *
1772 3438644 : rel_push_join_down_outer(visitor *v, sql_rel *rel)
1773 : {
1774 3438644 : if (is_join(rel->op) && !is_outerjoin(rel->op) && !is_single(rel) && !list_empty(rel->exps) && !rel_is_ref(rel)) {
1775 366290 : sql_rel *l = rel->l, *r = rel->r;
1776 :
1777 366290 : if (is_left(r->op) && (is_select(l->op) || (is_join(l->op) && !is_outerjoin(l->op))) && !rel_is_ref(l) &&
1778 887 : !rel_is_ref(r)) {
1779 887 : sql_rel *rl = r->l;
1780 887 : sql_rel *rr = r->r;
1781 887 : if (rel_is_ref(rl) || rel_is_ref(rr))
1782 : return rel;
1783 : /* join exps should only include l and r.l */
1784 887 : list *njexps = sa_list(v->sql->sa);
1785 2023 : for(node *n = rel->exps->h; n; n = n->next) {
1786 1136 : sql_exp *je = n->data;
1787 :
1788 1136 : assert(je->type == e_cmp);
1789 1136 : if (je->f)
1790 : return rel;
1791 1136 : if ((rel_find_exp(l, je->l) && rel_find_exp(rl, je->r)) || (rel_find_exp(l, je->r) && rel_find_exp(rl, je->l))) {
1792 1136 : list_append(njexps, je);
1793 : } else {
1794 0 : return rel;
1795 : }
1796 : }
1797 887 : sql_rel *nl = rel_crossproduct(v->sql->sa, rel_dup(l), rl, rel->op);
1798 887 : r->l = nl;
1799 887 : nl->exps = njexps;
1800 887 : nl->attr = rel->attr;
1801 887 : rel->attr = NULL;
1802 887 : set_processed(nl);
1803 887 : rel_dup(r);
1804 887 : rel_destroy(rel);
1805 887 : rel = r;
1806 887 : v->changes++;
1807 : }
1808 : }
1809 : return rel;
1810 : }
1811 :
1812 : static sql_rel *
1813 3438644 : rel_optimize_joins_(visitor *v, sql_rel *rel)
1814 : {
1815 3438644 : rel = rel_push_join_exps_down(v, rel);
1816 3438644 : rel = rel_out2inner(v, rel);
1817 3438644 : rel = rel_join2semijoin(v, rel);
1818 3438644 : rel = rel_push_join_down_outer(v, rel);
1819 3438644 : return rel;
1820 : }
1821 :
1822 : static sql_rel *
1823 89594 : rel_optimize_joins(visitor *v, global_props *gp, sql_rel *rel)
1824 : {
1825 89594 : (void) gp;
1826 89594 : return rel_visitor_topdown(v, rel, &rel_optimize_joins_);
1827 : }
1828 :
1829 : run_optimizer
1830 626143 : bind_optimize_joins(visitor *v, global_props *gp)
1831 : {
1832 626143 : int flag = v->sql->sql_optimizer;
1833 625947 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
1834 1252090 : || gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti]) && (flag & optimize_joins) ? rel_optimize_joins : NULL;
1835 : }
1836 :
1837 :
1838 : static sql_rel *rel_join_order_(visitor *v, sql_rel *rel);
1839 :
1840 : static void
1841 704386 : get_relations(visitor *v, sql_rel *rel, list *rels)
1842 : {
1843 979460 : if (list_empty(rel->attr) && !rel_is_ref(rel) && rel->op == op_join && rel->exps == NULL) {
1844 275074 : sql_rel *l = rel->l;
1845 275074 : sql_rel *r = rel->r;
1846 :
1847 275074 : get_relations(v, l, rels);
1848 275074 : get_relations(v, r, rels);
1849 275074 : rel->l = NULL;
1850 275074 : rel->r = NULL;
1851 275074 : rel_destroy(rel);
1852 : } else {
1853 429312 : rel = rel_join_order_(v, rel);
1854 429312 : append(rels, rel);
1855 : }
1856 704386 : }
1857 :
1858 : static void
1859 189693 : get_inner_relations(mvc *sql, sql_rel *rel, list *rels)
1860 : {
1861 301088 : if (!rel_is_ref(rel) && is_join(rel->op)) {
1862 111395 : sql_rel *l = rel->l;
1863 111395 : sql_rel *r = rel->r;
1864 :
1865 111395 : get_inner_relations(sql, l, rels);
1866 111395 : get_inner_relations(sql, r, rels);
1867 : } else {
1868 189693 : append(rels, rel);
1869 : }
1870 189693 : }
1871 :
1872 : static int
1873 1054905 : exp_count(int *cnt, sql_exp *e)
1874 : {
1875 1054905 : int flag;
1876 1054905 : if (!e)
1877 : return 0;
1878 1054905 : if (find_prop(e->p, PROP_JOINIDX))
1879 3541 : *cnt += 100;
1880 1054905 : if (find_prop(e->p, PROP_HASHCOL))
1881 34212 : *cnt += 100;
1882 1054905 : if (find_prop(e->p, PROP_HASHIDX))
1883 0 : *cnt += 100;
1884 1054905 : switch(e->type) {
1885 389491 : case e_cmp:
1886 389491 : if (!is_complex_exp(e->flag)) {
1887 331178 : exp_count(cnt, e->l);
1888 331178 : exp_count(cnt, e->r);
1889 331178 : if (e->f)
1890 3052 : exp_count(cnt, e->f);
1891 : }
1892 389491 : flag = e->flag;
1893 389491 : switch (flag) {
1894 307317 : case cmp_equal:
1895 307317 : *cnt += 90;
1896 307317 : return 90;
1897 17361 : case cmp_notequal:
1898 17361 : *cnt += 7;
1899 17361 : return 7;
1900 6500 : case cmp_gt:
1901 : case cmp_gte:
1902 : case cmp_lt:
1903 : case cmp_lte:
1904 6500 : *cnt += 6;
1905 6500 : if (e->l) {
1906 6500 : sql_exp *l = e->l;
1907 6500 : sql_subtype *t = exp_subtype(l);
1908 6500 : if (EC_TEMP(t->type->eclass)) /* give preference to temporal ranges */
1909 172 : *cnt += 90;
1910 : }
1911 6500 : if (e->f){ /* range */
1912 3052 : *cnt += 6;
1913 3052 : return 12;
1914 : }
1915 : return 6;
1916 708 : case cmp_filter:
1917 708 : if (exps_card(e->r) > CARD_AGGR) {
1918 : /* filters for joins are special */
1919 5 : *cnt += 1000;
1920 5 : return 1000;
1921 : }
1922 703 : *cnt += 2;
1923 703 : return 2;
1924 52853 : case cmp_in:
1925 : case cmp_notin: {
1926 52853 : list *l = e->r;
1927 52853 : int c = 9 - 10*list_length(l);
1928 52853 : *cnt += c;
1929 52853 : return c;
1930 : }
1931 4752 : case cmp_or: /* prefer or over functions */
1932 4752 : *cnt += 3;
1933 4752 : return 3;
1934 : default:
1935 : return 0;
1936 : }
1937 525395 : case e_column:
1938 525395 : *cnt += 20;
1939 525395 : return 20;
1940 121589 : case e_atom:
1941 121589 : *cnt += 10;
1942 121589 : return 10;
1943 2856 : case e_func:
1944 : /* functions are more expensive, depending on the number of columns involved. */
1945 2856 : if (e->card == CARD_ATOM)
1946 : return 0;
1947 2565 : *cnt -= 5*list_length(e->l);
1948 2565 : return 5*list_length(e->l);
1949 15574 : case e_convert:
1950 : /* functions are more expensive, depending on the number of columns involved. */
1951 15574 : if (e->card == CARD_ATOM)
1952 : return 0;
1953 : /* fall through */
1954 : default:
1955 14914 : *cnt -= 5;
1956 14914 : return -5;
1957 : }
1958 : }
1959 :
1960 : int
1961 264824 : exp_keyvalue(sql_exp *e)
1962 : {
1963 264824 : int cnt = 0;
1964 58443 : exp_count(&cnt, e);
1965 264824 : return cnt;
1966 : }
1967 :
1968 : static sql_exp *
1969 743074 : joinexp_col(sql_exp *e, sql_rel *r)
1970 : {
1971 743074 : if (e->type == e_cmp) {
1972 743074 : if (rel_has_exp(r, e->l, false) >= 0)
1973 397293 : return e->l;
1974 345781 : return e->r;
1975 : }
1976 0 : assert(0);
1977 : return NULL;
1978 : }
1979 :
1980 : static sql_column *
1981 492830 : table_colexp(sql_exp *e, sql_rel *r)
1982 : {
1983 492830 : sql_table *t = r->l;
1984 :
1985 492830 : if (e->type == e_column) {
1986 478684 : const char *name = exp_name(e);
1987 478684 : node *cn;
1988 :
1989 478684 : if (r->exps) { /* use alias */
1990 895464 : for (cn = r->exps->h; cn; cn = cn->next) {
1991 891187 : sql_exp *ce = cn->data;
1992 891187 : if (strcmp(exp_name(ce), name) == 0) {
1993 474407 : name = ce->r;
1994 474407 : break;
1995 : }
1996 : }
1997 : }
1998 1050018 : for (cn = ol_first_node(t->columns); cn; cn = cn->next) {
1999 1045741 : sql_column *c = cn->data;
2000 1045741 : if (strcmp(c->base.name, name) == 0)
2001 474407 : return c;
2002 : }
2003 : }
2004 : return NULL;
2005 : }
2006 :
2007 : static list *
2008 357381 : matching_joins(allocator *sa, list *rels, list *exps, sql_exp *je)
2009 : {
2010 357381 : sql_rel *l, *r;
2011 :
2012 357381 : assert (je->type == e_cmp);
2013 :
2014 357381 : l = find_rel(rels, je->l);
2015 357381 : r = find_rel(rels, je->r);
2016 357381 : if (l && r) {
2017 357237 : list *res;
2018 357237 : list *n_rels = sa_list(sa);
2019 :
2020 357237 : append(n_rels, l);
2021 357237 : append(n_rels, r);
2022 357237 : res = list_select(exps, n_rels, (fcmp) &exp_joins_rels, (fdup)NULL);
2023 357237 : return res;
2024 : }
2025 144 : return sa_list(sa);
2026 : }
2027 :
2028 : static int
2029 6373 : sql_column_kc_cmp(sql_column *c, sql_kc *kc)
2030 : {
2031 : /* return on equality */
2032 6373 : return (c->colnr - kc->c->colnr);
2033 : }
2034 :
2035 : static sql_idx *
2036 463143 : find_fk_index(mvc *sql, sql_table *l, list *lcols, sql_table *r, list *rcols)
2037 : {
2038 463143 : sql_trans *tr = sql->session->tr;
2039 :
2040 463143 : if (l->idxs) {
2041 463143 : node *in;
2042 550500 : for (in = ol_first_node(l->idxs); in; in = in->next){
2043 88197 : sql_idx *li = in->data;
2044 88197 : if (li->type == join_idx) {
2045 8717 : sql_key *rk = (sql_key*)os_find_id(tr->cat->objects, tr, ((sql_fkey*)li->key)->rkey);
2046 8717 : fcmp cmp = (fcmp)&sql_column_kc_cmp;
2047 :
2048 9666 : if (rk->t == r &&
2049 1789 : list_match(lcols, li->columns, cmp) == 0 &&
2050 840 : list_match(rcols, rk->columns, cmp) == 0) {
2051 840 : return li;
2052 : }
2053 : }
2054 : }
2055 : }
2056 : return NULL;
2057 : }
2058 :
2059 : static sql_rel *
2060 714762 : find_basetable( sql_rel *r)
2061 : {
2062 1067594 : if (!r)
2063 : return NULL;
2064 1059965 : switch(r->op) {
2065 575692 : case op_basetable:
2066 575692 : if (!r->l)
2067 0 : return NULL;
2068 : return r;
2069 352832 : case op_semi:
2070 : case op_anti:
2071 : case op_project:
2072 : case op_select:
2073 : case op_topn:
2074 : case op_sample:
2075 352832 : return find_basetable(r->l);
2076 : default:
2077 : return NULL;
2078 : }
2079 : }
2080 :
2081 : static int
2082 98907 : exps_count(list *exps)
2083 : {
2084 98907 : node *n;
2085 98907 : int cnt = 0;
2086 :
2087 98907 : if (!exps)
2088 : return 0;
2089 223580 : for (n = exps->h; n; n=n->next)
2090 124673 : exp_count(&cnt, n->data);
2091 98907 : return cnt;
2092 : }
2093 :
2094 : static list *
2095 255230 : order_join_expressions(mvc *sql, list *dje, list *rels)
2096 : {
2097 255230 : node *n;
2098 255230 : int cnt = list_length(dje);
2099 :
2100 255230 : if (cnt <= 1)
2101 : return dje;
2102 :
2103 65561 : list *res = sa_list(sql->sa);
2104 65561 : int i, *keys = SA_NEW_ARRAY(sql->ta, int, cnt);
2105 65561 : void **data = SA_NEW_ARRAY(sql->ta, void*, cnt);
2106 :
2107 271942 : for (n = dje->h, i = 0; n; n = n->next, i++) {
2108 206381 : sql_exp *e = n->data;
2109 :
2110 206381 : keys[i] = exp_keyvalue(e);
2111 : /* add some weight for the selections */
2112 206381 : if (e->type == e_cmp && !is_complex_exp(e->flag)) {
2113 206355 : sql_rel *l = find_rel(rels, e->l);
2114 206355 : sql_rel *r = find_rel(rels, e->r);
2115 :
2116 206355 : if (l && is_select(l->op) && l->exps)
2117 52921 : keys[i] += list_length(l->exps)*10 + exps_count(l->exps);
2118 206355 : if (r && is_select(r->op) && r->exps)
2119 45986 : keys[i] += list_length(r->exps)*10 + exps_count(r->exps);
2120 : }
2121 206381 : data[i] = n->data;
2122 : }
2123 : /* sort descending */
2124 65561 : GDKqsort(keys, data, NULL, cnt, sizeof(int), sizeof(void *), TYPE_int, true, true);
2125 337503 : for(i=0; i<cnt; i++) {
2126 206381 : list_append(res, data[i]);
2127 : }
2128 : return res;
2129 : }
2130 :
2131 : static int
2132 238795 : find_join_rels(list **L, list **R, list *exps, list *rels)
2133 : {
2134 238795 : node *n;
2135 :
2136 238795 : *L = sa_list(exps->sa);
2137 238795 : *R = sa_list(exps->sa);
2138 238795 : if (!exps || list_length(exps) <= 1)
2139 : return -1;
2140 290026 : for(n = exps->h; n; n = n->next) {
2141 218842 : sql_exp *e = n->data;
2142 218842 : sql_rel *l = NULL, *r = NULL;
2143 :
2144 218842 : if (!is_complex_exp(e->flag)){
2145 218835 : l = find_rel(rels, e->l);
2146 218835 : r = find_rel(rels, e->r);
2147 : }
2148 218835 : if (l<r) {
2149 141683 : list_append(*L, l);
2150 141683 : list_append(*R, r);
2151 : } else {
2152 77159 : list_append(*L, r);
2153 77159 : list_append(*R, l);
2154 : }
2155 : }
2156 : return 0;
2157 : }
2158 :
2159 : static list *
2160 71184 : distinct_join_exps(list *aje, list *lrels, list *rrels)
2161 : {
2162 71184 : node *n, *m, *o, *p;
2163 71184 : int len = list_length(aje), i, j;
2164 71184 : char *used = SA_ZNEW_ARRAY(aje->sa, char, len);
2165 71184 : list *res = sa_list(aje->sa);
2166 :
2167 71184 : assert(len == list_length(lrels));
2168 290026 : for(n = lrels->h, m = rrels->h, j = 0; n && m;
2169 218842 : n = n->next, m = m->next, j++) {
2170 218842 : if (n->data && m->data)
2171 948840 : for(o = n->next, p = m->next, i = j+1; o && p;
2172 730050 : o = o->next, p = p->next, i++) {
2173 730050 : if (o->data == n->data && p->data == m->data)
2174 30293 : used[i] = 1;
2175 : }
2176 : }
2177 290026 : for (i = 0, n = aje->h; i < len; n = n->next, i++) {
2178 218842 : if (!used[i])
2179 193644 : list_append(res, n->data);
2180 : }
2181 71184 : return res;
2182 : }
2183 :
2184 : static list *
2185 238795 : find_fk( mvc *sql, list *rels, list *exps)
2186 : {
2187 238795 : node *djn;
2188 238795 : list *sdje, *aje, *dje;
2189 238795 : list *lrels, *rrels;
2190 :
2191 : /* first find the distinct join expressions */
2192 238795 : aje = list_select(exps, rels, (fcmp) &exp_is_join, (fdup)NULL);
2193 : /* add left/right relation */
2194 238795 : if (find_join_rels(&lrels, &rrels, aje, rels) < 0)
2195 : dje = aje;
2196 : else
2197 71184 : dje = distinct_join_exps(aje, lrels, rrels);
2198 599676 : for(djn=dje->h; djn; djn = djn->next) {
2199 : /* equal join expressions */
2200 360974 : sql_idx *idx = NULL;
2201 360974 : sql_exp *je = djn->data, *le = je->l, *re = je->r;
2202 :
2203 360974 : if (is_complex_exp(je->flag))
2204 : break;
2205 360881 : if (!find_prop(je->p, PROP_JOINIDX)) {
2206 357381 : int swapped = 0;
2207 357381 : list *aaje = matching_joins(sql->sa, rels, aje, je);
2208 357381 : list *eje = list_select(aaje, (void*)1, (fcmp) &exp_is_eqjoin, (fdup)NULL);
2209 357381 : sql_rel *lr = find_rel(rels, le), *olr = lr;
2210 357381 : sql_rel *rr = find_rel(rels, re), *orr = rr;
2211 357381 : sql_rel *bt = NULL;
2212 357381 : char *iname;
2213 :
2214 357381 : sql_table *l, *r;
2215 357381 : list *lexps = list_map(eje, lr, (fmap) &joinexp_col);
2216 357381 : list *rexps = list_map(eje, rr, (fmap) &joinexp_col);
2217 357381 : list *lcols, *rcols;
2218 :
2219 357381 : lr = find_basetable(lr);
2220 357381 : rr = find_basetable(rr);
2221 357381 : if (!lr || !rr)
2222 232786 : continue;
2223 250072 : l = lr->l;
2224 250072 : r = rr->l;
2225 250072 : lcols = list_map(lexps, lr, (fmap) &table_colexp);
2226 250072 : rcols = list_map(rexps, rr, (fmap) &table_colexp);
2227 250072 : lcols->destroy = NULL;
2228 250072 : rcols->destroy = NULL;
2229 250072 : if (list_length(lcols) != list_length(rcols))
2230 18167 : continue;
2231 :
2232 231905 : idx = find_fk_index(sql, l, lcols, r, rcols);
2233 231905 : if (!idx) {
2234 231238 : idx = find_fk_index(sql, r, rcols, l, lcols);
2235 231238 : swapped = 1;
2236 : }
2237 :
2238 231905 : if (idx && (iname = sa_strconcat( sql->sa, "%", idx->base.name)) != NULL &&
2239 667 : ((!swapped && name_find_column(olr, NULL, iname, -2, &bt) == NULL) ||
2240 173 : ( swapped && name_find_column(orr, NULL, iname, -2, &bt) == NULL)))
2241 : idx = NULL;
2242 :
2243 : if (idx) {
2244 751 : prop *p;
2245 751 : node *n;
2246 751 : sql_exp *t = NULL, *i = NULL;
2247 :
2248 751 : if (list_length(lcols) > 1 || !mvc_debug_on(sql, 512)) {
2249 :
2250 : /* Add join between idx and TID */
2251 751 : if (swapped) {
2252 155 : sql_exp *s = je->l, *l = je->r;
2253 :
2254 155 : t = rel_find_column(sql, olr, s->l, TID);
2255 155 : i = rel_find_column(sql, orr, l->l, iname);
2256 155 : if (!t || !i)
2257 1 : continue;
2258 154 : t->p = NULL;
2259 154 : i->p = NULL;
2260 154 : je = exp_compare(sql->sa, i, t, cmp_equal);
2261 : } else {
2262 596 : sql_exp *s = je->r, *l = je->l;
2263 :
2264 596 : t = rel_find_column(sql, orr, s->l, TID);
2265 596 : i = rel_find_column(sql, olr, l->l, iname);
2266 596 : if (!t || !i)
2267 0 : continue;
2268 596 : t->p = NULL;
2269 596 : i->p = NULL;
2270 596 : je = exp_compare(sql->sa, i, t, cmp_equal);
2271 : }
2272 :
2273 : /* Remove all join expressions */
2274 1502 : for (n = eje->h; n; n = n->next)
2275 752 : list_remove_data(exps, NULL, n->data);
2276 750 : append(exps, je);
2277 750 : djn->data = je;
2278 0 : } else if (swapped) { /* else keep je for single column expressions */
2279 0 : je = exp_compare(sql->sa, je->r, je->l, cmp_equal);
2280 : /* Remove all join expressions */
2281 0 : for (n = eje->h; n; n = n->next)
2282 0 : list_remove_data(exps, NULL, n->data);
2283 0 : append(exps, je);
2284 0 : djn->data = je;
2285 : }
2286 750 : je->p = p = prop_create(sql->sa, PROP_JOINIDX, je->p);
2287 750 : p->value.pval = idx;
2288 : }
2289 : }
2290 : }
2291 :
2292 : /* sort expressions on weighted number of reducing operators */
2293 238795 : sdje = order_join_expressions(sql, dje, rels);
2294 238795 : return sdje;
2295 : }
2296 :
2297 : static int
2298 551894 : rels_find_one_rel( sql_rel **rels, int nr, sql_exp *e)
2299 : {
2300 551894 : int fnd = 0;
2301 :
2302 4418752 : for(int i = 1; i<=nr; i++) {
2303 3866924 : if (rel_has_exp(rels[i], e, false) == 0) {
2304 551653 : if (fnd)
2305 : return 0;
2306 : fnd = i;
2307 : }
2308 : }
2309 : return fnd;
2310 : }
2311 :
2312 : /* TODO move popcount and popcount64 into gdk_*.h, used in gdk_cand, strimps and here */
2313 : static inline int
2314 : popcount64(uint64_t x)
2315 : {
2316 : #ifdef __has_builtin
2317 : #if __has_builtin(__builtin_popcountll)
2318 : return (uint32_t) __builtin_popcountll(x);
2319 : #define BUILTIN_USED
2320 : #endif
2321 : #endif
2322 : #ifndef BUILTIN_USED
2323 : #if defined(_MSC_VER)
2324 : #if SIZEOF_OID == 4
2325 : /* no __popcnt64 on 32 bit Windows */
2326 : return (int) (__popcnt((uint32_t) x) + __popcnt((uint32_t) (x >> 32)));
2327 : #else
2328 : return (uint32_t) __popcnt64(x);
2329 : #endif
2330 : #else
2331 : x = (x & UINT64_C(0x5555555555555555)) + ((x >> 1) & UINT64_C(0x5555555555555555));
2332 : x = (x & UINT64_C(0x3333333333333333)) + ((x >> 2) & UINT64_C(0x3333333333333333));
2333 : x = (x & UINT64_C(0x0F0F0F0F0F0F0F0F)) + ((x >> 4) & UINT64_C(0x0F0F0F0F0F0F0F0F));
2334 : return (x * UINT64_C(0x0101010101010101)) >> 56;
2335 : #endif
2336 : #endif
2337 : #undef BUILTIN_USED
2338 : }
2339 :
2340 : static sql_rel *
2341 154238 : order_joins(visitor *v, list *rels, list *exps)
2342 : {
2343 154238 : sql_rel *top = NULL, *l = NULL, *r = NULL;
2344 154238 : sql_exp *cje;
2345 154238 : node *djn;
2346 154238 : list *sdje, *n_rels = NULL;
2347 154238 : int fnd = 0;
2348 154238 : unsigned int rsingle;
2349 154238 : int direct = 1;
2350 :
2351 : /* find foreign keys and reorder the expressions on reducing quality */
2352 154238 : sdje = find_fk(v->sql, rels, exps);
2353 :
2354 430080 : for(djn = sdje->h; djn; djn = djn->next ) {
2355 275842 : sql_exp *e = djn->data;
2356 275842 : list_remove_data(exps, NULL, e);
2357 : }
2358 154238 : if (list_length(rels) > 2 && mvc_debug_on(v->sql, 256)) {
2359 0 : top = rel_planner(v->sql, rels, sdje, exps);
2360 0 : return top;
2361 : }
2362 :
2363 154238 : int nr_exps = list_length(sdje), nr_rels = list_length(rels), ci = 1;
2364 154238 : if (nr_rels > 64) {
2365 1 : direct = 0;
2366 1 : n_rels = sa_list(v->sql->ta);
2367 : }
2368 154238 : sql_rel **rels_a = SA_NEW_ARRAY(v->sql->ta, sql_rel*, nr_rels+1); /* don't use slot 0 */
2369 154238 : rels_a[0] = NULL;
2370 583550 : for (node *n = rels->h; n; n = n->next, ci++) {
2371 429312 : rels_a[ci] = n->data;
2372 : }
2373 154238 : ulng *h = SA_NEW_ARRAY(v->sql->ta, ulng, nr_exps), rel_mask = 0; /* bit field (for > 64 its an imprint) */
2374 154238 : uint16_t *r1 = SA_NEW_ARRAY(v->sql->ta, uint16_t, nr_exps);
2375 154238 : uint16_t *r2 = SA_NEW_ARRAY(v->sql->ta, uint16_t, nr_exps);
2376 : /* change r3 into rest list's */
2377 154238 : int *r3 = SA_NEW_ARRAY(v->sql->ta, int, nr_exps);
2378 :
2379 154238 : ci = 0;
2380 430080 : for (node *n = sdje->h; n; n = n->next, ci++) {
2381 275842 : sql_exp *cje = n->data;
2382 :
2383 275842 : h[ci] = r1[ci] = r2[ci] = 0;
2384 275842 : r3[ci] = 0;
2385 : /* h[ci] = exp_find_rels(cje, rels) */
2386 275842 : if (cje->type != e_cmp || !is_complex_exp(cje->flag) || !find_prop(cje->p, PROP_HASHCOL) ||
2387 0 : (cje->type == e_cmp && cje->f == NULL)) {
2388 275842 : cje->tmp = ci;
2389 275842 : r1[ci] = rels_find_one_rel(rels_a, nr_rels, cje->l);
2390 275842 : r2[ci] = rels_find_one_rel(rels_a, nr_rels, cje->r);
2391 275842 : if (r1[ci])
2392 275708 : h[ci] |= ((ulng)1)<<((r1[ci]-1)%64);
2393 275842 : if (r2[ci])
2394 275689 : h[ci] |= ((ulng)1)<<((r2[ci]-1)%64);
2395 275842 : if (cje->f) {
2396 210 : r3[ci] = rels_find_one_rel(rels_a, nr_rels, cje->f);
2397 210 : if (r3[ci] == r2[ci])
2398 190 : r3[ci] = 0;
2399 210 : if (r3[ci])
2400 10 : h[ci] |= ((ulng)1)<<((r3[ci]-1)%64);
2401 : }
2402 : }
2403 : }
2404 : /* open problem, some expressions use more than 2 relations */
2405 : /* For example a.x = b.y * c.z; */
2406 154238 : if (list_length(rels) >= 2 && sdje->h) {
2407 308442 : for (node *n = sdje->h; n && !l && !r; n = n->next, ci++) {
2408 154226 : cje = n->data;
2409 :
2410 : /* find the involved relations */
2411 :
2412 : /* complex expressions may touch multiple base tables
2413 : * Should be pushed up to extra selection.
2414 : * */
2415 154226 : if (0 && popcount64(h[cje->tmp]) > 2)
2416 : assert(0);
2417 154226 : if (cje->type != e_cmp || !is_complex_exp(cje->flag) || !find_prop(cje->p, PROP_HASHCOL) ||
2418 0 : (cje->type == e_cmp && cje->f == NULL)) {
2419 154226 : l = rels_a[r1[cje->tmp]];
2420 154226 : r = rels_a[r2[cje->tmp]];
2421 154226 : if (l && r)
2422 154091 : rel_mask |= h[cje->tmp];
2423 : }
2424 : }
2425 154216 : cje->tmp = 0;
2426 :
2427 154216 : if (l && r && l != r)
2428 154091 : list_remove_data(sdje, NULL, cje);
2429 : }
2430 :
2431 154238 : if (l && r && l != r) {
2432 154091 : list_remove_data(rels, NULL, l);
2433 154091 : list_remove_data(rels, NULL, r);
2434 154091 : if (!direct) {
2435 1 : list_append(n_rels, l);
2436 1 : list_append(n_rels, r);
2437 : }
2438 :
2439 : /* Create a relation between l and r. Since the calling
2440 : functions rewrote the join tree, into a list of expressions
2441 : and a list of (simple) relations, there are no outer joins
2442 : involved, we can simply do a crossproduct here.
2443 : */
2444 154091 : rsingle = is_single(r);
2445 154091 : reset_single(r);
2446 154091 : top = rel_crossproduct(v->sql->sa, l, r, op_join);
2447 154091 : if (rsingle)
2448 5088 : set_single(r);
2449 154091 : rel_join_add_exp(v->sql->sa, top, cje);
2450 :
2451 : /* all other join expressions on these 2 relations */
2452 158410 : for (node *en = exps->h; en; ) {
2453 4319 : node *next = en->next;
2454 4319 : sql_exp *e = en->data;
2455 4319 : if (rel_rebind_exp(v->sql, top, e)) {
2456 4141 : rel_join_add_exp(v->sql->sa, top, e);
2457 4141 : list_remove_data(exps, NULL, e);
2458 : }
2459 : en = next;
2460 : }
2461 : fnd = 1;
2462 : }
2463 : /* build join tree using the ordered list */
2464 272548 : while(list_length(sdje) && fnd) {
2465 118310 : fnd = 0;
2466 : /* find the first expression which could be added */
2467 874190 : for(djn = sdje->h; djn && !fnd && rels->h; djn = (!fnd)?djn->next:NULL) {
2468 377940 : node *en;
2469 377940 : l = r = NULL;
2470 :
2471 377940 : cje = djn->data;
2472 377940 : if ((h[cje->tmp] & rel_mask) > 0) {
2473 118226 : if (rel_mask & (((ulng)1)<<((r1[cje->tmp]-1)%64)))
2474 66575 : l = rels_a[r1[cje->tmp]];
2475 118226 : if (rel_mask & (((ulng)1)<<((r2[cje->tmp]-1)%64)))
2476 51652 : r = rels_a[r2[cje->tmp]];
2477 : }
2478 377940 : if (!direct) { /* check if at least one side in n_rels */
2479 1040 : if (l && !list_find(n_rels, l, NULL))
2480 1007 : l = NULL;
2481 1040 : if (r && !list_find(n_rels, r, NULL))
2482 1 : r = NULL;
2483 : }
2484 :
2485 377940 : if (l && r) {
2486 0 : assert(0);
2487 : /* create a selection on the current */
2488 : rel_join_add_exp(v->sql->sa, top, cje);
2489 : fnd = 1;
2490 377940 : } else if (l || r) {
2491 : /* TODO: handle case for joins which need > 2 relations, ie where the current 'top' of the
2492 : * join tree needs to add more then one relation */
2493 118226 : rel_mask |= h[cje->tmp];
2494 118226 : if (l) {
2495 66575 : r = rels_a[r2[cje->tmp]];
2496 : } else {
2497 51651 : l = r;
2498 51651 : r = rels_a[r1[cje->tmp]];
2499 : }
2500 118226 : if (!r) {
2501 0 : fnd = 1; /* not really, but this bails out */
2502 0 : list_remove_data(sdje, NULL, cje); /* handle later as select */
2503 0 : continue;
2504 : }
2505 :
2506 : /* remove the expression from the lists */
2507 118226 : list_remove_data(sdje, NULL, cje);
2508 :
2509 118226 : list_remove_data(rels, NULL, r);
2510 118226 : if (!direct)
2511 63 : append(n_rels, r);
2512 :
2513 : /* create a join using the current expression */
2514 118226 : rsingle = is_single(r);
2515 118226 : reset_single(r);
2516 118226 : top = rel_crossproduct(v->sql->sa, top, r, op_join);
2517 118226 : if (rsingle)
2518 0 : set_single(r);
2519 118226 : rel_join_add_exp(v->sql->sa, top, cje);
2520 :
2521 : /* all join expressions on these tables */
2522 118633 : for (en = exps->h; en; ) {
2523 407 : node *next = en->next;
2524 407 : sql_exp *e = en->data;
2525 407 : if (rel_rebind_exp(v->sql, top, e)) {
2526 176 : rel_join_add_exp(v->sql->sa, top, e);
2527 176 : list_remove_data(exps, NULL, e);
2528 : }
2529 : en = next;
2530 : }
2531 : /* Remove other joins on the current 'n_rels'
2532 : set in the distinct list too */
2533 692284 : for (en = sdje->h; en; ) {
2534 574058 : node *next = en->next;
2535 574058 : sql_exp *e = en->data;
2536 574058 : if ((direct && ((e->flag <= cmp_notequal && (h[e->tmp] & rel_mask) == h[e->tmp] && h[e->tmp]) || (e->flag > cmp_notequal && rel_rebind_exp(v->sql, top, e)))) ||
2537 1953 : (!direct && rel_rebind_exp(v->sql, top, e))) {
2538 3311 : rel_join_add_exp(v->sql->sa, top, e);
2539 3311 : list_remove_data(sdje, NULL, en->data);
2540 : }
2541 : en = next;
2542 : }
2543 : fnd = 1;
2544 : }
2545 : }
2546 : }
2547 154238 : if (list_length(rels)) { /* more relations */
2548 1188 : node *n;
2549 4092 : for(n=rels->h; n; n = n->next) {
2550 2904 : sql_rel *nr = n->data;
2551 :
2552 2904 : if (top) {
2553 2757 : rsingle = is_single(nr);
2554 2757 : reset_single(nr);
2555 2757 : top = rel_crossproduct(v->sql->sa, top, nr, op_join);
2556 2757 : if (rsingle)
2557 0 : set_single(nr);
2558 : } else
2559 : top = nr;
2560 : }
2561 : }
2562 154238 : if (list_length(sdje)) {
2563 209 : if (list_empty(exps))
2564 : exps = sdje;
2565 : else
2566 0 : exps = list_merge(exps, sdje, (fdup)NULL);
2567 : }
2568 154238 : if (list_length(exps)) { /* more expressions (add selects) */
2569 233 : top = rel_select(v->sql->sa, top, NULL);
2570 471 : for(node *n=exps->h; n; n = n->next) {
2571 238 : sql_exp *e = n->data;
2572 :
2573 238 : if (exp_is_join_exp(e) == 0) {
2574 226 : sql_rel *nr = NULL;
2575 226 : if (is_theta_exp(e->flag)) {
2576 138 : nr = rel_push_join(v->sql, top->l, e->l, e->r, e->f, e, 0);
2577 88 : } else if (e->flag == cmp_filter || e->flag == cmp_or) {
2578 88 : sql_exp *l = exps_find_one_multi_exp(e->l), *r = exps_find_one_multi_exp(e->r);
2579 88 : if (l && r)
2580 82 : nr = rel_push_join(v->sql, top->l, l, r, NULL, e, 0);
2581 : }
2582 220 : if (!nr)
2583 6 : rel_join_add_exp(v->sql->sa, top->l, e);
2584 : } else
2585 12 : rel_select_add_exp(v->sql->sa, top, e);
2586 : }
2587 233 : if (list_empty(top->exps)) { /* empty select */
2588 221 : sql_rel *l = top->l;
2589 221 : top->l = NULL;
2590 221 : rel_destroy(top);
2591 221 : top = l;
2592 : }
2593 : }
2594 : return top;
2595 : }
2596 :
2597 : static int
2598 429312 : rel_neg_in_size(sql_rel *r)
2599 : {
2600 429312 : if ((is_union(r->op) /*|| is_munion(r->op)*/) && r->nrcols == 0)
2601 0 : return -1 + rel_neg_in_size(r->l);
2602 429312 : if (is_project(r->op) && r->nrcols == 0)
2603 0 : return -1;
2604 : return 0;
2605 : }
2606 :
2607 429312 : static void _rel_destroy(void *dummy, sql_rel *rel)
2608 : {
2609 429312 : (void)dummy;
2610 429312 : rel_destroy(rel);
2611 429312 : }
2612 :
2613 : static list *
2614 154238 : push_in_join_down(mvc *sql, list *rels, list *exps)
2615 : {
2616 154238 : node *n;
2617 154238 : int restart = 1;
2618 154238 : list *nrels;
2619 :
2620 : /* we should sort these first, ie small in's before large one's */
2621 154238 : nrels = list_sort(rels, (fkeyvalue)&rel_neg_in_size, (fdup)&rel_dup);
2622 :
2623 : /* we need to cleanup, the new refs ! */
2624 154238 : rels->destroy = (fdestroy)_rel_destroy;
2625 154238 : list_destroy(rels);
2626 154238 : rels = nrels;
2627 :
2628 : /* one of the rels should be a op_union with nrcols == 0 */
2629 462714 : while (restart) {
2630 583550 : for (n = rels->h; n; n = n->next) {
2631 429312 : sql_rel *r = n->data;
2632 :
2633 429312 : restart = 0;
2634 429312 : if (is_project(r->op) && r->nrcols == 0) {
2635 : /* next step find expression on this relation */
2636 0 : node *m;
2637 0 : sql_rel *l = NULL;
2638 0 : sql_exp *je = NULL;
2639 :
2640 0 : for(m = exps->h; !je && m; m = m->next) {
2641 0 : sql_exp *e = m->data;
2642 :
2643 0 : if (e->type == e_cmp && e->flag == cmp_equal) {
2644 : /* in values are on
2645 : the right of the join */
2646 0 : if (rel_has_exp(r, e->r, false) >= 0)
2647 0 : je = e;
2648 : }
2649 : }
2650 : /* with this expression find other relation */
2651 0 : if (je && (l = find_rel(rels, je->l)) != NULL) {
2652 0 : unsigned int rsingle = is_single(r);
2653 0 : reset_single(r);
2654 0 : sql_rel *nr = rel_crossproduct(sql->sa, l, r, op_join);
2655 0 : if (rsingle)
2656 0 : set_single(r);
2657 0 : rel_join_add_exp(sql->sa, nr, je);
2658 0 : list_append(rels, nr);
2659 0 : list_remove_data(rels, NULL, l);
2660 0 : list_remove_data(rels, NULL, r);
2661 0 : list_remove_data(exps, NULL, je);
2662 0 : restart = 1;
2663 0 : break;
2664 : }
2665 :
2666 : }
2667 : }
2668 : }
2669 154238 : return rels;
2670 : }
2671 :
2672 : static list *
2673 732956 : push_up_join_exps( mvc *sql, sql_rel *rel)
2674 : {
2675 732956 : if (rel_is_ref(rel))
2676 : return NULL;
2677 :
2678 692589 : switch(rel->op) {
2679 287351 : case op_join: {
2680 287351 : sql_rel *rl = rel->l;
2681 287351 : sql_rel *rr = rel->r;
2682 287351 : list *l, *r;
2683 :
2684 287351 : if (rel_is_ref(rl) && rel_is_ref(rr)) {
2685 16 : l = rel->exps;
2686 16 : rel->exps = NULL;
2687 16 : return l;
2688 : }
2689 287335 : l = push_up_join_exps(sql, rl);
2690 287335 : r = push_up_join_exps(sql, rr);
2691 287335 : if (l && r) {
2692 34 : l = list_merge(l, r, (fdup)NULL);
2693 34 : r = NULL;
2694 287301 : } else if (!l) {
2695 175118 : l = r;
2696 175118 : r = NULL;
2697 : }
2698 287335 : if (rel->exps) {
2699 255907 : if (l && !r)
2700 101611 : r = l;
2701 255907 : l = list_merge(rel->exps, r, (fdup)NULL);
2702 : }
2703 287335 : rel->exps = NULL;
2704 287335 : return l;
2705 : }
2706 : default:
2707 : return NULL;
2708 : }
2709 : }
2710 :
2711 : static sql_rel *
2712 285689 : reorder_join(visitor *v, sql_rel *rel)
2713 : {
2714 285689 : list *exps, *rels;
2715 :
2716 285689 : if (is_innerjoin(rel->op) && !is_single(rel) && !rel_is_ref(rel) && list_empty(rel->attr)) {
2717 175549 : if (list_empty(rel->exps)) {
2718 22120 : sql_rel *l = rel->l, *r = rel->r;
2719 22120 : if (!is_innerjoin(l->op) && !is_innerjoin(r->op))
2720 : return rel;
2721 : }
2722 158286 : rel->exps = push_up_join_exps(v->sql, rel);
2723 : }
2724 :
2725 268426 : if (!is_innerjoin(rel->op) || is_single(rel) || rel_is_ref(rel) || list_empty(rel->exps) || !list_empty(rel->attr)) {
2726 114188 : if (!list_empty(rel->exps)) { /* cannot add join idxs to cross products */
2727 78298 : exps = rel->exps;
2728 78298 : rel->exps = NULL; /* should be all crosstables by now */
2729 78298 : rels = sa_list(v->sql->ta);
2730 : /* try to use an join index also for outer joins */
2731 78298 : get_inner_relations(v->sql, rel, rels);
2732 78298 : int cnt = list_length(exps);
2733 78298 : rel->exps = find_fk(v->sql, rels, exps);
2734 78298 : if (list_length(rel->exps) != cnt)
2735 16435 : rel->exps = order_join_expressions(v->sql, exps, rels);
2736 : }
2737 114188 : rel->l = rel_join_order_(v, rel->l);
2738 114188 : rel->r = rel_join_order_(v, rel->r);
2739 : } else {
2740 154238 : exps = rel->exps;
2741 154238 : rel->exps = NULL; /* should be all crosstables by now */
2742 154238 : rels = sa_list(v->sql->ta);
2743 154238 : get_relations(v, rel, rels);
2744 154238 : if (list_length(rels) > 1) {
2745 154238 : rels = push_in_join_down(v->sql, rels, exps);
2746 154238 : rel = order_joins(v, rels, exps);
2747 : } else {
2748 0 : rel->exps = exps;
2749 : }
2750 : }
2751 : return rel;
2752 : }
2753 :
2754 : static sql_rel *
2755 2408622 : rel_join_order_(visitor *v, sql_rel *rel)
2756 : {
2757 2408622 : if (!rel)
2758 : return rel;
2759 :
2760 2392857 : switch (rel->op) {
2761 : case op_basetable:
2762 : break;
2763 3851 : case op_table:
2764 3851 : if (IS_TABLE_PROD_FUNC(rel->flag) || rel->flag == TABLE_FROM_RELATION)
2765 3851 : rel->l = rel_join_order_(v, rel->l);
2766 : break;
2767 : case op_join:
2768 : case op_left:
2769 : case op_right:
2770 : case op_full:
2771 : break;
2772 :
2773 11427 : case op_semi:
2774 : case op_anti:
2775 :
2776 : case op_union:
2777 : case op_inter:
2778 : case op_except:
2779 : case op_merge:
2780 11427 : rel->l = rel_join_order_(v, rel->l);
2781 11427 : rel->r = rel_join_order_(v, rel->r);
2782 11427 : break;
2783 116403 : case op_munion:
2784 116403 : assert(rel->l);
2785 469779 : for (node *n = ((list*)rel->l)->h; n; n = n->next)
2786 353376 : n->data = rel_join_order_(v, n->data);
2787 : break;
2788 1276938 : case op_project:
2789 : case op_select:
2790 : case op_groupby:
2791 : case op_topn:
2792 : case op_sample:
2793 1276938 : rel->l = rel_join_order_(v, rel->l);
2794 1276938 : break;
2795 52 : case op_ddl:
2796 52 : if (rel->flag == ddl_output || rel->flag == ddl_create_seq || rel->flag == ddl_alter_seq || rel->flag == ddl_alter_table || rel->flag == ddl_create_table || rel->flag == ddl_create_view) {
2797 0 : rel->l = rel_join_order_(v, rel->l);
2798 : } else if (rel->flag == ddl_list || rel->flag == ddl_exception) {
2799 52 : rel->l = rel_join_order_(v, rel->l);
2800 52 : rel->r = rel_join_order_(v, rel->r);
2801 : }
2802 : break;
2803 11196 : case op_insert:
2804 : case op_update:
2805 : case op_delete:
2806 11196 : rel->r = rel_join_order_(v, rel->r);
2807 11196 : break;
2808 : case op_truncate:
2809 : break;
2810 : }
2811 2392857 : if (is_join(rel->op))
2812 285689 : rel = reorder_join(v, rel);
2813 : return rel;
2814 : }
2815 :
2816 : static sql_rel *
2817 82615 : rel_join_order(visitor *v, global_props *gp, sql_rel *rel)
2818 : {
2819 82615 : (void) gp;
2820 82615 : sql_rel *r = rel_join_order_(v, rel);
2821 82615 : sa_reset(v->sql->ta);
2822 82615 : return r;
2823 : }
2824 :
2825 : run_optimizer
2826 626143 : bind_join_order(visitor *v, global_props *gp)
2827 : {
2828 626143 : int flag = v->sql->sql_optimizer;
2829 625947 : return gp->opt_level == 1 && gp->opt_cycle < 10 && !gp->cnt[op_update] && (gp->cnt[op_join] || gp->cnt[op_left] ||
2830 1245980 : gp->cnt[op_right] || gp->cnt[op_full]) && (flag & join_order) ? rel_join_order : NULL;
2831 : }
2832 :
2833 : /* this join order is to be done once after statistics are gathered */
2834 : run_optimizer
2835 718916 : bind_join_order2(visitor *v, global_props *gp)
2836 : {
2837 : /*int flag = v->sql->sql_optimizer;
2838 : return gp->opt_level == 1 && !gp->has_special_modify && !gp->cnt[op_update] && (gp->cnt[op_join] || gp->cnt[op_left] ||
2839 : gp->cnt[op_right] || gp->cnt[op_full]) && (flag & join_order) ? rel_join_order : NULL;*/
2840 : /* TODO we have to propagate count statistics here */
2841 718916 : (void) v;
2842 718916 : (void) gp;
2843 718916 : return NULL;
2844 : }
2845 :
2846 :
2847 : static int
2848 13695 : is_identity_of(sql_exp *e, sql_rel *l)
2849 : {
2850 13695 : if (e->type != e_cmp)
2851 : return 0;
2852 13668 : if (!is_identity(e->l, l) || !is_identity(e->r, l) || (e->f && !is_identity(e->f, l)))
2853 13668 : return 0;
2854 : return 1;
2855 : }
2856 :
2857 : static inline sql_rel *
2858 17881 : rel_rewrite_semijoin(visitor *v, sql_rel *rel)
2859 : {
2860 17881 : assert(is_semi(rel->op));
2861 : {
2862 17881 : sql_rel *l = rel->l;
2863 17881 : sql_rel *r = rel->r;
2864 17881 : sql_rel *rl = (r->l)?r->l:NULL;
2865 17881 : int on_identity = 1;
2866 :
2867 17881 : if (!rel->exps || list_length(rel->exps) != 1 || !is_identity_of(rel->exps->h->data, l))
2868 : on_identity = 0;
2869 :
2870 : /* rewrite {semi,anti}join (A, join(A,B)) into {semi,anti}join (A,B)
2871 : * and {semi,anti}join (A, join(B,A)) into {semi,anti}join (A,B)
2872 : * Where the semi/anti join is done using the identity */
2873 0 : if (on_identity && l->ref.refcnt == 2 && ((is_join(r->op) && (l == r->l || l == r->r)) ||
2874 0 : (is_project(r->op) && rl && is_join(rl->op) && (l == rl->l || l == rl->r)))){
2875 0 : sql_rel *or = r;
2876 :
2877 0 : if (is_project(r->op))
2878 0 : r = rl;
2879 :
2880 0 : if (l == r->r)
2881 0 : rel->r = rel_dup(r->l);
2882 : else
2883 0 : rel->r = rel_dup(r->r);
2884 :
2885 0 : rel->exps = r->exps;
2886 0 : r->exps = NULL;
2887 0 : rel->attr = r->attr;
2888 0 : r->attr = NULL;
2889 0 : rel_destroy(or);
2890 0 : v->changes++;
2891 : }
2892 : }
2893 : {
2894 17881 : sql_rel *l = rel->l, *rl = NULL;
2895 17881 : sql_rel *r = rel->r, *or = r;
2896 :
2897 17881 : if (r)
2898 17881 : rl = r->l;
2899 17881 : if (r && is_project(r->op)) {
2900 14777 : r = rl;
2901 14777 : if (r)
2902 14557 : rl = r->l;
2903 : }
2904 :
2905 : /* More general case is (join reduction)
2906 : {semi,anti}join (A, join(A,B) [A.c1 == B.c1]) [ A.c1 == B.c1 ]
2907 : into {semi,anti}join (A,B) [ A.c1 == B.c1 ]
2908 :
2909 : for semijoin also A.c1 == B.k1 ] [ A.c1 == B.k2 ] could be rewritten
2910 : */
2911 17881 : if (l && r && rl &&
2912 16555 : is_basetable(l->op) && is_basetable(rl->op) &&
2913 3994 : is_join(r->op) && l->l == rl->l)
2914 : {
2915 26 : node *n, *m;
2916 26 : list *exps;
2917 :
2918 51 : if (!rel->exps || !r->exps ||
2919 25 : list_length(rel->exps) != list_length(r->exps))
2920 1 : return rel;
2921 25 : exps = new_exp_list(v->sql->sa);
2922 :
2923 : /* are the join conditions equal */
2924 25 : for (n = rel->exps->h, m = r->exps->h;
2925 25 : n && m; n = n->next, m = m->next)
2926 : {
2927 25 : sql_exp *le = NULL, *oe = n->data;
2928 25 : sql_exp *re = NULL, *ne = m->data;
2929 25 : sql_column *cl;
2930 25 : int equal = 0;
2931 :
2932 25 : if (oe->type != e_cmp || ne->type != e_cmp ||
2933 25 : oe->flag != cmp_equal ||
2934 25 : ne->flag != cmp_equal || is_anti(oe) || is_anti(ne))
2935 : return rel;
2936 :
2937 25 : if ((cl = exp_find_column(rel->l, oe->l, -2)) != NULL) {
2938 25 : le = oe->l;
2939 25 : re = oe->r;
2940 0 : } else if ((cl = exp_find_column(rel->l, oe->r, -2)) != NULL) {
2941 0 : le = oe->r;
2942 0 : re = oe->l;
2943 : } else
2944 : return rel;
2945 :
2946 25 : if (exp_find_column(rl, ne->l, -2) == cl) {
2947 25 : sql_exp *e = (or != r)?rel_find_exp(or, re):re;
2948 :
2949 25 : if (e)
2950 24 : equal = exp_match_exp(ne->r, e);
2951 25 : if (!e || !equal)
2952 : return rel;
2953 0 : re = ne->r;
2954 0 : } else if (exp_find_column(rl, ne->r, -2) == cl) {
2955 0 : sql_exp *e = (or != r)?rel_find_exp(or, re):re;
2956 :
2957 0 : if (e)
2958 0 : equal = exp_match_exp(ne->l, e);
2959 0 : if (!e || !equal)
2960 : return rel;
2961 0 : re = ne->l;
2962 : } else
2963 : return rel;
2964 :
2965 0 : ne = exp_compare(v->sql->sa, le, re, cmp_equal);
2966 0 : append(exps, ne);
2967 : }
2968 :
2969 0 : rel->r = rel_dup(r->r);
2970 0 : rel->exps = exps;
2971 0 : rel_destroy(or);
2972 0 : v->changes++;
2973 : }
2974 : }
2975 : return rel;
2976 : }
2977 :
2978 : /*
2979 : * Push semijoins down, pushes the semijoin through a join.
2980 : *
2981 : * semijoin( join(A, B) [ A.x == B.y ], C ) [ A.z == C.c ]
2982 : * ->
2983 : * join( semijoin(A, C) [ A.z == C.c ], B ) [ A.x == B.y ]
2984 : *
2985 : * also push simple expressions of a semijoin down if they only
2986 : * involve the left sided of the semijoin.
2987 : *
2988 : * in some cases the other way is useful, ie push join down
2989 : * semijoin. When the join reduces (ie when there are selects on it).
2990 : *
2991 : * At the moment, we only flag changes by this optimizer on the first level of optimization
2992 : */
2993 : static inline sql_rel *
2994 462899 : rel_push_semijoin_down_or_up(visitor *v, sql_rel *rel)
2995 : {
2996 462899 : uint8_t cycle = *(uint8_t*) v->data;
2997 :
2998 462899 : if (rel->op == op_join && rel->exps && rel->l) {
2999 426999 : sql_rel *l = rel->l, *r = rel->r;
3000 :
3001 426999 : if (is_semi(l->op) && !rel_is_ref(l) && is_select(r->op) && !rel_is_ref(r)) {
3002 22 : rel->l = l->l;
3003 22 : l->l = rel;
3004 22 : if (cycle <= 0)
3005 0 : v->changes++;
3006 22 : return l;
3007 : }
3008 : }
3009 : /* also case with 2 joins */
3010 : /* join ( join ( semijoin(), table), select (table)); */
3011 462877 : if (rel->op == op_join && rel->exps && rel->l) {
3012 426977 : sql_rel *l = rel->l, *r = rel->r;
3013 426977 : sql_rel *ll;
3014 :
3015 426977 : if (is_join(l->op) && !rel_is_ref(l) && is_select(r->op) && !rel_is_ref(r)) {
3016 8080 : ll = l->l;
3017 8080 : if (is_semi(ll->op) && !rel_is_ref(ll)) {
3018 51 : l->l = ll->l;
3019 51 : ll->l = rel;
3020 51 : if (cycle <= 0)
3021 12 : v->changes++;
3022 51 : return ll;
3023 : }
3024 : }
3025 : }
3026 : /* first push down the expressions involving only A */
3027 462826 : if (rel->op == op_semi && rel->exps && rel->l) {
3028 12131 : sql_rel *jl = rel->l, *ojl = jl;
3029 :
3030 12131 : set_processed(jl);
3031 27764 : for (node *n = rel->exps->h; n;) {
3032 15633 : node *next = n->next;
3033 15633 : sql_exp *e = n->data;
3034 :
3035 15633 : if (n != rel->exps->h && e->type == e_cmp && rel_rebind_exp(v->sql, jl, e)) {
3036 16 : if (!is_select(jl->op) || rel_is_ref(jl))
3037 14 : rel->l = jl = rel_select(v->sql->sa, jl, NULL);
3038 16 : rel_select_add_exp(v->sql->sa, jl, e);
3039 16 : list_remove_node(rel->exps, NULL, n);
3040 16 : if (cycle <= 0)
3041 16 : v->changes++;
3042 : }
3043 : n = next;
3044 : }
3045 12131 : if (ojl != jl)
3046 14 : set_processed(jl);
3047 : }
3048 462826 : if (rel->op == op_semi && rel->exps && rel->l) {
3049 12131 : operator_type op = rel->op, lop;
3050 12131 : node *n;
3051 12131 : sql_rel *l = rel->l, *ll = NULL, *lr = NULL;
3052 12131 : sql_rel *r = rel->r;
3053 12131 : list *exps = rel->exps, *nsexps, *njexps, *nsattr, *njattr;
3054 12131 : int left = 1, right = 1;
3055 :
3056 : /* handle project
3057 : if (l->op == op_project && !need_distinct(l))
3058 : l = l->l;
3059 : */
3060 :
3061 12131 : if (!is_join(l->op) || is_full(l->op) || rel_is_ref(l) || is_single(l))
3062 : return rel;
3063 :
3064 1173 : lop = l->op;
3065 1173 : ll = l->l;
3066 1173 : lr = l->r;
3067 :
3068 : /* check which side is used and other exps are atoms or from right of semijoin */
3069 2256 : for(n = exps->h; n; n = n->next) {
3070 1280 : sql_exp *sje = n->data;
3071 :
3072 1280 : if (sje->type != e_cmp || is_complex_exp(sje->flag))
3073 : return rel;
3074 : /* sje->l from ll and sje->r/f from semijoin r ||
3075 : * sje->l from semijoin r and sje->r/f from ll ||
3076 : * sje->l from lr and sje->r/f from semijoin r ||
3077 : * sje->l from semijoin r and sje->r/f from lr */
3078 2496 : if (left &&
3079 2496 : ((rel_rebind_exp(v->sql, ll, sje->l) && rel_rebind_exp(v->sql, rel->r, sje->r) && (!sje->f || rel_rebind_exp(v->sql, rel->r, sje->f))) ||
3080 1236 : (rel_rebind_exp(v->sql, rel->r, sje->l) && rel_rebind_exp(v->sql, ll, sje->r) && (!sje->f || rel_rebind_exp(v->sql, ll, sje->f)))))
3081 : right = 0;
3082 : else
3083 909 : left = 0;
3084 1713 : if (right &&
3085 1608 : ((rel_rebind_exp(v->sql, lr, sje->l) && rel_rebind_exp(v->sql, rel->r, sje->r) && (!sje->f || rel_rebind_exp(v->sql, rel->r, sje->f))) ||
3086 566 : (rel_rebind_exp(v->sql, rel->r, sje->l) && rel_rebind_exp(v->sql, lr, sje->r) && (!sje->f || rel_rebind_exp(v->sql, lr, sje->f)))))
3087 : left = 0;
3088 : else
3089 : right = 0;
3090 1248 : if (!right && !left)
3091 : return rel;
3092 : }
3093 976 : if (left && is_right(lop))
3094 : return rel;
3095 975 : if (right && is_left(lop))
3096 : return rel;
3097 973 : nsexps = exps_copy(v->sql, rel->exps);
3098 973 : nsattr = exps_copy(v->sql, rel->attr);
3099 973 : njexps = exps_copy(v->sql, l->exps);
3100 973 : njattr = exps_copy(v->sql, l->attr);
3101 973 : if (left)
3102 231 : l = rel_crossproduct(v->sql->sa, rel_dup(ll), rel_dup(r), op);
3103 : else
3104 742 : l = rel_crossproduct(v->sql->sa, rel_dup(lr), rel_dup(r), op);
3105 973 : l->exps = nsexps;
3106 973 : l->attr = nsattr;
3107 973 : set_processed(l);
3108 973 : if (left)
3109 231 : l = rel_crossproduct(v->sql->sa, l, rel_dup(lr), lop);
3110 : else
3111 742 : l = rel_crossproduct(v->sql->sa, rel_dup(ll), l, lop);
3112 973 : l->exps = njexps;
3113 973 : l->attr = njattr;
3114 973 : set_processed(l);
3115 973 : rel_destroy(rel);
3116 973 : rel = l;
3117 973 : if (cycle <= 0)
3118 570 : v->changes++;
3119 : }
3120 : return rel;
3121 : }
3122 :
3123 : /* antijoin(a, union(b,c)) -> antijoin(antijoin(a,b), c) */
3124 : static inline sql_rel *
3125 5696 : rel_rewrite_antijoin(visitor *v, sql_rel *rel)
3126 : {
3127 5696 : sql_rel *l = rel->l;
3128 5696 : sql_rel *r = rel->r;
3129 :
3130 5696 : assert(rel->op == op_anti);
3131 5696 : if (l && !rel_is_ref(l) && r && !rel_is_ref(r) && is_union(r->op) && !is_single(r)) {
3132 0 : sql_rel *rl = rel_dup(r->l), *nl;
3133 0 : sql_rel *rr = rel_dup(r->r);
3134 :
3135 0 : if (!is_project(rl->op))
3136 0 : rl = rel_project(v->sql->sa, rl,
3137 : rel_projections(v->sql, rl, NULL, 1, 1));
3138 0 : if (!is_project(rr->op))
3139 0 : rr = rel_project(v->sql->sa, rr,
3140 : rel_projections(v->sql, rr, NULL, 1, 1));
3141 0 : rel_rename_exps(v->sql, r->exps, rl->exps);
3142 0 : rel_rename_exps(v->sql, r->exps, rr->exps);
3143 :
3144 0 : nl = rel_crossproduct(v->sql->sa, rel->l, rl, op_anti);
3145 0 : nl->exps = exps_copy(v->sql, rel->exps);
3146 0 : nl->attr = exps_copy(v->sql, rel->attr);
3147 0 : set_processed(nl);
3148 0 : rel->l = nl;
3149 0 : rel->r = rr;
3150 0 : rel_destroy(r);
3151 0 : v->changes++;
3152 0 : return rel;
3153 : }
3154 : return rel;
3155 : }
3156 :
3157 : static sql_rel *
3158 3438659 : rel_optimize_semi_and_anti_(visitor *v, sql_rel *rel)
3159 : {
3160 : /* rewrite semijoin (A, join(A,B)) into semijoin (A,B) */
3161 3438659 : if (rel && is_semi(rel->op))
3162 17881 : rel = rel_rewrite_semijoin(v, rel);
3163 : /* push semijoin through join */
3164 3438659 : if (rel && (is_semi(rel->op) || is_innerjoin(rel->op)))
3165 462899 : rel = rel_push_semijoin_down_or_up(v, rel);
3166 : /* antijoin(a, union(b,c)) -> antijoin(antijoin(a,b), c) */
3167 3438659 : if (rel && rel->op == op_anti)
3168 5696 : rel = rel_rewrite_antijoin(v, rel);
3169 3438659 : return rel;
3170 : }
3171 :
3172 : static sql_rel *
3173 89594 : rel_optimize_semi_and_anti(visitor *v, global_props *gp, sql_rel *rel)
3174 : {
3175 89594 : v->data = &gp->opt_cycle;
3176 89594 : rel = rel_visitor_bottomup(v, rel, &rel_optimize_semi_and_anti_);
3177 89594 : v->data = gp;
3178 89594 : return rel;
3179 : }
3180 :
3181 : run_optimizer
3182 626143 : bind_optimize_semi_and_anti(visitor *v, global_props *gp)
3183 : {
3184 : /* Important -> Re-write semijoins after rel_join_order */
3185 626143 : int flag = v->sql->sql_optimizer;
3186 625947 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
3187 1252090 : || gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti]) && (flag & optimize_semi_and_anti) ? rel_optimize_semi_and_anti : NULL;
3188 : }
3189 :
3190 :
3191 : static sql_rel *
3192 1588227 : rel_semijoin_use_fk(visitor *v, sql_rel *rel)
3193 : {
3194 1588227 : if (is_semi(rel->op) && rel->exps) {
3195 6259 : list *exps = rel->exps;
3196 6259 : list *rels = sa_list(v->sql->sa);
3197 :
3198 6259 : rel->exps = NULL;
3199 6259 : append(rels, rel->l);
3200 6259 : append(rels, rel->r);
3201 6259 : (void) find_fk( v->sql, rels, exps);
3202 :
3203 6259 : rel->exps = exps;
3204 : }
3205 1588227 : return rel;
3206 : }
3207 :
3208 : /*
3209 : * Push {semi}joins down, pushes the joins through group by expressions.
3210 : * When the join is on the group by columns, we can push the joins left
3211 : * under the group by. This should only be done, iff the new semijoin would
3212 : * reduce the input table to the groupby. So there should be a reduction
3213 : * (selection) on the table A and this should be propagated to the groupby via
3214 : * for example a primary key.
3215 : *
3216 : * {semi}join( A, groupby( B ) [gbe][aggrs] ) [ gbe == A.x ]
3217 : * ->
3218 : * {semi}join( A, groupby( semijoin(B,A) [gbe == A.x] ) [gbe][aggrs] ) [ gbe == A.x ]
3219 : */
3220 : static inline sql_rel *
3221 1588227 : rel_push_join_down(visitor *v, sql_rel *rel)
3222 : {
3223 1588227 : if (!rel_is_ref(rel) && ((is_left(rel->op) || rel->op == op_join || is_semi(rel->op)) && rel->l && rel->exps)) {
3224 232150 : sql_rel *gb = rel->r, *ogb = gb, *l = NULL, *rell = rel->l;
3225 :
3226 232150 : if (is_simple_project(gb->op) && !rel_is_ref(gb))
3227 45563 : gb = gb->l;
3228 :
3229 232150 : if (rel_is_ref(rell) || !gb || rel_is_ref(gb))
3230 : return rel;
3231 :
3232 222354 : if (is_groupby(gb->op) && gb->r && list_length(gb->r)) {
3233 190 : list *exps = rel->exps, *jes = new_exp_list(v->sql->sa), *gbes = gb->r;
3234 190 : node *n, *m;
3235 : /* find out if all group by expressions are used in the join */
3236 195 : for(n = gbes->h; n; n = n->next) {
3237 190 : sql_exp *gbe = n->data;
3238 190 : int fnd = 0;
3239 190 : const char *rname = NULL, *name = NULL;
3240 :
3241 : /* project in between, ie find alias */
3242 : /* first find expression in expression list */
3243 190 : gbe = exps_uses_exp( gb->exps, gbe);
3244 190 : if (!gbe)
3245 0 : continue;
3246 190 : if (ogb != gb)
3247 167 : gbe = exps_uses_exp( ogb->exps, gbe);
3248 190 : if (gbe) {
3249 149 : rname = exp_find_rel_name(gbe);
3250 149 : name = exp_name(gbe);
3251 : }
3252 :
3253 149 : if (!name)
3254 41 : return rel;
3255 :
3256 370 : for (m = exps->h; m && !fnd; m = m->next) {
3257 221 : sql_exp *je = m->data;
3258 :
3259 221 : if (je->card >= CARD_ATOM && je->type == e_cmp &&
3260 221 : !is_complex_exp(je->flag)) {
3261 : /* expect right expression to match */
3262 221 : sql_exp *r = je->r;
3263 :
3264 221 : if (r == 0 || r->type != e_column)
3265 10 : continue;
3266 211 : if (r->l && rname && strcmp(r->l, rname) == 0 && strcmp(r->r, name)==0) {
3267 : fnd = 1;
3268 83 : } else if (!r->l && !rname && strcmp(r->r, name)==0) {
3269 : fnd = 1;
3270 : }
3271 : if (fnd) {
3272 128 : sql_exp *le = je->l;
3273 128 : sql_exp *re = exp_push_down_prj(v->sql, r, gb, gb->l);
3274 128 : if (!re || (list_length(jes) == 0 && !find_prop(le->p, PROP_HASHCOL))) {
3275 : fnd = 0;
3276 : } else {
3277 5 : int anti = is_anti(je), semantics = is_semantics(je);
3278 :
3279 5 : je = exp_compare(v->sql->sa, le, re, je->flag);
3280 5 : if (anti) set_anti(je);
3281 5 : if (semantics) set_semantics(je);
3282 5 : list_append(jes, je);
3283 : }
3284 : }
3285 : }
3286 : }
3287 149 : if (!fnd)
3288 : return rel;
3289 : }
3290 5 : l = rel_dup(rel->l);
3291 :
3292 : /* push join's left side (as semijoin) down group by */
3293 5 : l = gb->l = rel_crossproduct(v->sql->sa, gb->l, l, op_semi);
3294 5 : l->exps = jes;
3295 5 : set_processed(l);
3296 5 : v->changes++;
3297 5 : return rel;
3298 : }
3299 : }
3300 : return rel;
3301 : }
3302 :
3303 : static bool
3304 728 : check_projection_on_foreignside(sql_rel *r, list *pexps, int fk_left)
3305 : {
3306 : /* projection columns from the foreign side */
3307 728 : if (list_empty(pexps))
3308 : return true;
3309 3156 : for (node *n = pexps->h; n; n = n->next) {
3310 3091 : sql_exp *pe = n->data;
3311 :
3312 3091 : if (pe && is_atom(pe->type))
3313 23 : continue;
3314 3068 : if (pe && !is_alias(pe->type))
3315 : return false;
3316 : /* check for columns from the pk side, then keep the join with the pk */
3317 3047 : if ((fk_left && rel_find_exp(r->r, pe)) || (!fk_left && rel_find_exp(r->l, pe)))
3318 594 : return false;
3319 : }
3320 : return true;
3321 : }
3322 :
3323 : static sql_rel *
3324 238915 : rel_simplify_project_fk_join(mvc *sql, sql_rel *r, list *pexps, list *orderexps, int *changes)
3325 : {
3326 238915 : sql_rel *rl = r->l, *rr = r->r, *nr = NULL;
3327 238915 : sql_exp *je, *le, *nje, *re;
3328 238915 : int fk_left = 1;
3329 :
3330 : /* check for foreign key join */
3331 238915 : if (list_length(r->exps) != 1 || !list_empty(r->attr))
3332 7436 : return r;
3333 231479 : if (!(je = exps_find_prop(r->exps, PROP_JOINIDX)) || je->flag != cmp_equal)
3334 : return r;
3335 : /* je->l == foreign expression, je->r == primary expression */
3336 1204 : if (rel_find_exp(r->l, je->l)) {
3337 : fk_left = 1;
3338 34 : } else if (rel_find_exp(r->r, je->l)) {
3339 : fk_left = 0;
3340 : } else { /* not found */
3341 : return r;
3342 : }
3343 :
3344 : /* primary side must be a full table */
3345 1170 : if ((fk_left && (!is_left(r->op) && !is_full(r->op)) && !is_basetable(rr->op)) ||
3346 34 : (!fk_left && (!is_right(r->op) && !is_full(r->op)) && !is_basetable(rl->op)))
3347 554 : return r;
3348 :
3349 650 : if (!check_projection_on_foreignside(r, pexps, fk_left) || !check_projection_on_foreignside(r, orderexps, fk_left))
3350 613 : return r;
3351 :
3352 : /* rewrite, ie remove pkey side if possible */
3353 37 : le = (sql_exp*)je->l, re = (sql_exp*)je->l;
3354 :
3355 : /* both have NULL and there are semantics, the join cannot be removed */
3356 37 : if (is_semantics(je) && has_nil(le) && has_nil(re))
3357 : return r;
3358 :
3359 37 : (*changes)++;
3360 : /* if the foreign key column doesn't have NULL values, then return it */
3361 37 : if (!has_nil(le) || is_full(r->op) || (fk_left && is_left(r->op)) || (!fk_left && is_right(r->op))) {
3362 : /* if ->attr, introduce group by on index */
3363 31 : if (fk_left) {
3364 23 : nr = rel_dup(r->l);
3365 : } else {
3366 8 : nr = rel_dup(r->r);
3367 : }
3368 31 : if (!list_empty(r->attr)) {
3369 0 : nr = rel_groupby(sql, nr, NULL);
3370 0 : if (nr) {
3371 : // printf("# introduced groupby \n");
3372 0 : nr->r = append(sa_list(sql->sa), le);
3373 0 : nr->exps = r->attr;
3374 : }
3375 : }
3376 31 : return nr;
3377 : }
3378 :
3379 : /* remove NULL values, ie generate a select not null */
3380 6 : nje = exp_compare(sql->sa, exp_ref(sql, le), exp_atom(sql->sa, atom_general(sql->sa, exp_subtype(le), NULL, 0)), cmp_equal);
3381 6 : set_anti(nje);
3382 6 : set_has_no_nil(nje);
3383 6 : set_semantics(nje);
3384 6 : if (fk_left) {
3385 6 : nr = rel_dup(r->l);
3386 : } else {
3387 0 : nr = rel_dup(r->r);
3388 : }
3389 6 : nr = rel_select(sql->sa, nr, nje);
3390 6 : set_processed(nr);
3391 6 : return nr;
3392 : }
3393 :
3394 : static sql_rel *
3395 1853 : rel_simplify_count_fk_join(mvc *sql, sql_rel *r, list *gexps, list *gcols, int *changes)
3396 : {
3397 1853 : sql_rel *rl = r->l, *rr = r->r, *nr = NULL;
3398 1853 : sql_exp *je, *le, *nje, *re, *oce;
3399 1853 : int fk_left = 1;
3400 :
3401 : /* check for foreign key join */
3402 1853 : if (list_length(r->exps) != 1)
3403 : return r;
3404 1852 : if (!(je = exps_find_prop(r->exps, PROP_JOINIDX)) || je->flag != cmp_equal)
3405 : return r;
3406 : /* je->l == foreign expression, je->r == primary expression */
3407 63 : if (rel_find_exp(r->l, je->l)) {
3408 : fk_left = 1;
3409 7 : } else if (rel_find_exp(r->r, je->l)) {
3410 : fk_left = 0;
3411 : } else { /* not found */
3412 : return r;
3413 : }
3414 :
3415 63 : oce = gexps->h->data;
3416 63 : if (oce->l) /* we only handle COUNT(*) */
3417 : return r;
3418 :
3419 : /* primary side must be a full table */
3420 62 : if ((fk_left && (!is_left(r->op) && !is_full(r->op)) && !is_basetable(rr->op)) ||
3421 6 : (!fk_left && (!is_right(r->op) && !is_full(r->op)) && !is_basetable(rl->op)))
3422 : return r;
3423 :
3424 33 : if (fk_left && is_join(rl->op) && !rel_is_ref(rl)) {
3425 12 : r->l = rel_simplify_count_fk_join(sql, rl, gexps, gcols, changes);
3426 12 : if (rl != r->l)
3427 9 : rel_destroy(rl);
3428 : }
3429 39 : if (!fk_left && is_join(rr->op) && !rel_is_ref(rr)) {
3430 2 : r->r = rel_simplify_count_fk_join(sql, rr, gexps, gcols, changes);
3431 2 : if (rr != r->r)
3432 2 : rel_destroy(rr);
3433 : }
3434 :
3435 39 : if (!check_projection_on_foreignside(r, gcols, fk_left))
3436 : return r;
3437 :
3438 : /* rewrite, ie remove pkey side if possible */
3439 37 : le = (sql_exp*)je->l, re = (sql_exp*)je->l;
3440 :
3441 : /* both have NULL and there are semantics, the join cannot be removed */
3442 37 : if (is_semantics(je) && has_nil(le) && has_nil(re))
3443 : return r;
3444 :
3445 37 : (*changes)++;
3446 : /* if the foreign key column doesn't have NULL values, then return it */
3447 37 : if (!has_nil(le) || is_full(r->op) || (fk_left && is_left(r->op)) || (!fk_left && is_right(r->op))) {
3448 31 : if (fk_left) {
3449 25 : nr = rel_dup(r->l);
3450 : } else {
3451 6 : nr = rel_dup(r->r);
3452 : }
3453 31 : return nr;
3454 : }
3455 :
3456 : /* remove NULL values, ie generate a select not null */
3457 6 : nje = exp_compare(sql->sa, exp_ref(sql, le), exp_atom(sql->sa, atom_general(sql->sa, exp_subtype(le), NULL, 0)), cmp_equal);
3458 6 : set_anti(nje);
3459 6 : set_has_no_nil(nje);
3460 6 : set_semantics(nje);
3461 6 : if (fk_left) {
3462 6 : nr = rel_dup(r->l);
3463 : } else {
3464 0 : nr = rel_dup(r->r);
3465 : }
3466 6 : nr = rel_select(sql->sa, nr, nje);
3467 6 : set_processed(nr);
3468 6 : return nr;
3469 : }
3470 :
3471 : /*
3472 : * Handle (left/right/outer/natural) join fk-pk rewrites
3473 : * 1 group by ( fk-pk-join () ) [ count(*) ] -> group by ( fk )
3474 : * 2 project ( fk-pk-join () ) [ fk-column ] -> project (fk table)[ fk-column ]
3475 : * 3 project ( fk1-pk1-join( fk2-pk2-join()) [ fk-column, pk1 column ] -> project (fk1-pk1-join)[ fk-column, pk1 column ]
3476 : */
3477 : static inline sql_rel *
3478 3651638 : rel_simplify_fk_joins(visitor *v, sql_rel *rel)
3479 : {
3480 3651638 : sql_rel *r = NULL;
3481 :
3482 3651638 : if (is_simple_project(rel->op))
3483 1201207 : r = rel->l;
3484 :
3485 3651675 : while (is_simple_project(rel->op) && r && list_length(r->exps) == 1 && (is_join(r->op) || r->op == op_semi) && !(rel_is_ref(r))) {
3486 238915 : sql_rel *or = r;
3487 :
3488 238915 : r = rel_simplify_project_fk_join(v->sql, r, rel->exps, rel->r, &v->changes);
3489 238915 : if (r == or)
3490 : return rel;
3491 37 : rel_destroy(rel->l);
3492 37 : rel->l = r;
3493 : }
3494 :
3495 3412760 : if (!is_groupby(rel->op))
3496 : return rel;
3497 :
3498 86687 : r = rel->l;
3499 130807 : while(r && is_simple_project(r->op))
3500 44120 : r = r->l;
3501 :
3502 101092 : while (is_groupby(rel->op) && !rel_is_ref(rel) && r && (is_join(r->op) || r->op == op_semi) && list_length(r->exps) == 1 && !(rel_is_ref(r)) &&
3503 : /* currently only single count aggregation is handled, no other projects or aggregation */
3504 105124 : list_length(rel->exps) == 1 && exp_aggr_is_count(rel->exps->h->data)) {
3505 1839 : sql_rel *or = r;
3506 :
3507 1839 : r = rel_simplify_count_fk_join(v->sql, r, rel->exps, rel->r, &v->changes);
3508 1839 : if (r == or)
3509 : return rel;
3510 26 : rel_destroy(rel->l);
3511 26 : rel->l = r;
3512 : }
3513 : return rel;
3514 : }
3515 :
3516 : /*
3517 : * Gets the column expressions of a diff function and adds them to "columns".
3518 : * The diff function has two possible argument types: either a sql_exp representing a column
3519 : * or a sql_exp representing another diff function, therefore this function is recursive.
3520 : */
3521 : static void
3522 168 : get_diff_function_columns(sql_exp *diffExp, list *columns) {
3523 168 : list *args = diffExp->l;
3524 :
3525 370 : for (node *arg = args->h; arg; arg = arg->next) {
3526 202 : sql_exp *exp = arg->data;
3527 :
3528 : // diff function
3529 202 : if (exp->type == e_func) {
3530 34 : get_diff_function_columns(exp, columns);
3531 : }
3532 : // column
3533 : else {
3534 168 : list_append(columns, exp);
3535 : }
3536 : }
3537 168 : }
3538 :
3539 : /*
3540 : * Builds a list of aggregation key columns to be used by the select push down algorithm, namely for
3541 : * window functions. Returns NULL if the window function does not partition by any column
3542 : */
3543 : static list *
3544 3623 : get_aggregation_key_columns(allocator *sa, sql_rel *r) {
3545 34495 : for (node* n = r->exps->h; n; n = n->next) {
3546 31096 : sql_exp *e = n->data;
3547 :
3548 31096 : if (e->type == e_func) {
3549 7923 : sql_subfunc *f = e->f;
3550 :
3551 : // aggregation function
3552 7923 : if (!strcmp(f->func->base.name, "rank")) {
3553 224 : list* rankArguments = e->l;
3554 : // the partition key is the second argument
3555 224 : sql_exp *partitionExp = rankArguments->h->next->data;
3556 :
3557 : // check if the key contains any columns, i.e., is a diff function
3558 224 : if (partitionExp->type == e_func) {
3559 : // get columns to list
3560 134 : list *aggColumns = sa_list(sa);
3561 134 : get_diff_function_columns(partitionExp, aggColumns);
3562 134 : return aggColumns;
3563 : }
3564 : // the function has no aggregation columns (e_atom of boolean)
3565 : else {
3566 : return NULL;
3567 : }
3568 :
3569 : }
3570 : }
3571 : }
3572 : return NULL;
3573 : }
3574 :
3575 : /*
3576 : * Checks if a filter column is also used as an aggregation key, so it can be later safely pushed down.
3577 : */
3578 : static int
3579 187 : filter_column_in_aggregation_columns(sql_exp *column, list *aggColumns) {
3580 : /* check if it is a column or an e_convert, and get the actual column if it is the latter */
3581 187 : if (column->type == e_convert) {
3582 1 : column = column->l;
3583 : }
3584 :
3585 187 : char *tableName = column->l;
3586 187 : char *columnName = column->r;
3587 :
3588 404 : for (node *n = aggColumns->h; n; n = n->next) {
3589 226 : sql_exp *aggCol = n->data;
3590 226 : char *aggColTableName = aggCol->l;
3591 226 : char *aggColColumnName = aggCol->r;
3592 :
3593 226 : if (!strcmp(tableName, aggColTableName) && !strcmp(columnName, aggColColumnName)) {
3594 : /* match */
3595 : return 1;
3596 : }
3597 : }
3598 :
3599 : /* no matches found */
3600 : return 0;
3601 : }
3602 :
3603 :
3604 : /*
3605 : * Push select down, pushes the selects through (simple) projections. Also
3606 : * it cleans up the projections which become useless.
3607 : *
3608 : * WARNING - Make sure to call try_remove_empty_select macro before returning so we ensure
3609 : * possible generated empty selects won't never be generated
3610 : */
3611 : static sql_rel *
3612 7229850 : rel_push_select_down(visitor *v, sql_rel *rel)
3613 : {
3614 7229850 : list *exps = NULL;
3615 7229850 : sql_rel *r = NULL;
3616 7229850 : node *n;
3617 :
3618 7229850 : if (rel_is_ref(rel)) {
3619 374368 : if (is_select(rel->op) && !list_empty(rel->exps)) {
3620 : /* add inplace empty select */
3621 1724 : sql_rel *l = rel_select(v->sql->sa, rel->l, NULL);
3622 :
3623 1724 : l->exps = rel->exps;
3624 1724 : set_processed(l);
3625 1724 : rel->exps = NULL;
3626 1724 : rel->l = l;
3627 1724 : v->changes++;
3628 : }
3629 374368 : return rel;
3630 : }
3631 :
3632 : /* don't make changes for empty selects */
3633 6855482 : if (is_select(rel->op) && list_empty(rel->exps))
3634 10 : return try_remove_empty_select(v, rel);
3635 :
3636 : /* merge 2 selects */
3637 6855472 : r = rel->l;
3638 6855472 : if (is_select(rel->op) && r && r->exps && is_select(r->op) && !(rel_is_ref(r)) && !exps_have_func(rel->exps)) {
3639 27 : (void)list_merge(r->exps, rel->exps, (fdup)NULL);
3640 27 : rel->l = NULL;
3641 27 : rel_destroy(rel);
3642 27 : v->changes++;
3643 27 : return try_remove_empty_select(v, r);
3644 : }
3645 : /*
3646 : * Push select through semi/anti join
3647 : * select (semi(A,B)) == semi(select(A), B)
3648 : */
3649 6855445 : if (is_select(rel->op) && r && is_semi(r->op) && !(rel_is_ref(r))) {
3650 308 : rel->l = r->l;
3651 308 : r->l = rel;
3652 308 : v->changes++;
3653 : /*
3654 : * if A has 2 references (ie used on both sides of
3655 : * the semi join), we also push the select into A.
3656 : */
3657 308 : if (rel_is_ref(rel->l) && rel->l == rel_find_ref(r->r)){
3658 0 : sql_rel *lx = rel->l;
3659 0 : sql_rel *rx = r->r;
3660 0 : if (lx->ref.refcnt == 2 && !rel_is_ref(rx)) {
3661 0 : while (rx->l && !rel_is_ref(rx->l) &&
3662 0 : (is_project(rx->op) ||
3663 : is_select(rx->op) ||
3664 : is_join(rx->op)))
3665 : rx = rx->l;
3666 : /* probably we need to introduce a project */
3667 0 : rel_destroy(rel->l);
3668 0 : lx = rel_project(v->sql->sa, rel, rel_projections(v->sql, rel, NULL, 1, 1));
3669 0 : r->l = lx;
3670 0 : rx->l = rel_dup(lx);
3671 : }
3672 : }
3673 308 : return r;
3674 : }
3675 6855137 : exps = rel->exps;
3676 :
3677 : /* push select through join */
3678 6855137 : if (is_select(rel->op) && r && is_join(r->op) && !rel_is_ref(r) && !is_single(r)){
3679 22260 : sql_rel *jl = r->l, *ojl = jl, *jr = r->r, *ojr = jr;
3680 22260 : int left = r->op == op_join || r->op == op_left;
3681 22260 : int right = r->op == op_join || r->op == op_right;
3682 :
3683 22260 : if (r->op == op_full)
3684 : return rel;
3685 :
3686 : /* introduce selects under the join (if needed) */
3687 22238 : set_processed(jl);
3688 22238 : set_processed(jr);
3689 48815 : for (n = exps->h; n;) {
3690 26577 : node *next = n->next;
3691 26577 : sql_exp *e = n->data;
3692 :
3693 26577 : if (!exp_unsafe(e, false, true)) {
3694 26371 : if (left && rel_rebind_exp(v->sql, jl, e)) {
3695 13308 : if (!is_select(jl->op) || rel_is_ref(jl))
3696 11129 : r->l = jl = rel_select(v->sql->sa, jl, NULL);
3697 13308 : rel_select_add_exp(v->sql->sa, jl, e);
3698 13308 : list_remove_node(exps, NULL, n);
3699 13308 : v->changes++;
3700 13063 : } else if (right && rel_rebind_exp(v->sql, jr, e)) {
3701 5155 : if (!is_select(jr->op) || rel_is_ref(jr))
3702 4209 : r->r = jr = rel_select(v->sql->sa, jr, NULL);
3703 5155 : rel_select_add_exp(v->sql->sa, jr, e);
3704 5155 : list_remove_node(exps, NULL, n);
3705 5155 : v->changes++;
3706 : }
3707 : }
3708 : n = next;
3709 : }
3710 22238 : if (ojl != jl)
3711 11129 : set_processed(jl);
3712 22238 : if (ojr != jr)
3713 4209 : set_processed(jr);
3714 : }
3715 :
3716 : /* merge select and cross product ? */
3717 6855115 : if (is_select(rel->op) && r && r->op == op_join && !rel_is_ref(r) && !is_single(r) && !exps_have_unsafe(exps, false, true)) {
3718 14718 : for (n = exps->h; n;) {
3719 2001 : node *next = n->next;
3720 2001 : sql_exp *e = n->data;
3721 :
3722 2001 : if (exp_is_join(e, NULL) == 0) {
3723 693 : if (!r->exps)
3724 109 : r->exps = sa_list(v->sql->sa);
3725 693 : append(r->exps, e);
3726 693 : list_remove_node(exps, NULL, n);
3727 693 : v->changes++;
3728 : }
3729 : n = next;
3730 : }
3731 : }
3732 :
3733 6855115 : if (is_select(rel->op) && r && (is_simple_project(r->op) || (is_groupby(r->op) && !list_empty(r->r))) && !rel_is_ref(r) && !is_single(r)){
3734 70125 : sql_rel *pl = r->l, *opl = pl;
3735 : /* we cannot push through window functions (for safety I disabled projects over DDL too) */
3736 70125 : if (pl && pl->op != op_ddl && !exps_have_unsafe(r->exps, false, false)) {
3737 : /* introduce selects under the project (if needed) */
3738 48593 : set_processed(pl);
3739 48593 : if (!pl->exps)
3740 413 : pl->exps = sa_list(v->sql->sa);
3741 103526 : for (n = exps->h; n;) {
3742 54933 : node *next = n->next;
3743 54933 : sql_exp *e = n->data, *ne = NULL;
3744 :
3745 : /* can we move it down */
3746 54933 : if (e->type == e_cmp && (ne = exp_push_down_prj(v->sql, e, r, pl)) && ne != e) {
3747 25425 : if (!(is_select(pl->op) && is_join(pl->op) && is_semi(pl->op)) || rel_is_ref(pl))
3748 25425 : r->l = pl = rel_select(v->sql->sa, pl, NULL);
3749 25425 : rel_select_add_exp(v->sql->sa, pl, ne);
3750 25425 : list_remove_node(exps, NULL, n);
3751 25425 : v->changes++;
3752 : }
3753 : n = next;
3754 : }
3755 48593 : if (opl != pl)
3756 18319 : set_processed(pl);
3757 : }
3758 :
3759 : /* push filters if they match the aggregation key on a window function */
3760 3623 : else if (pl && pl->op != op_ddl && exps_have_unsafe(r->exps, false, false)) {
3761 3623 : set_processed(pl);
3762 : /* list of aggregation key columns */
3763 3623 : list *aggColumns = get_aggregation_key_columns(v->sql->sa, r);
3764 :
3765 : /* aggregation keys found, check if any filter matches them */
3766 3623 : if (aggColumns) {
3767 325 : for (n = exps->h; n;) {
3768 191 : node *next = n->next;
3769 191 : sql_exp *e = n->data, *ne = NULL;
3770 :
3771 191 : if (e->type == e_cmp) {
3772 : /* simple comparison filter */
3773 191 : if (e->flag == cmp_gt || e->flag == cmp_gte || e->flag == cmp_lte || e->flag == cmp_lt
3774 191 : || e->flag == cmp_equal || e->flag == cmp_notequal || e->flag == cmp_in || e->flag == cmp_notin
3775 5 : || (e->flag == cmp_filter && ((list*)e->l)->cnt == 1)) {
3776 187 : sql_exp* column;
3777 : /* the column in 'like' filters is stored inside a list */
3778 187 : if (e->flag == cmp_filter) {
3779 1 : column = ((list*)e->l)->h->data;
3780 : } else {
3781 186 : column = e->l;
3782 : }
3783 :
3784 : /* check if the expression matches any aggregation key, meaning we can
3785 : try to safely push it down */
3786 187 : if (filter_column_in_aggregation_columns(column, aggColumns)) {
3787 9 : ne = exp_push_down_prj(v->sql, e, r, pl);
3788 :
3789 : /* can we move it down */
3790 9 : if (ne && ne != e && pl->exps) {
3791 9 : if (!is_select(pl->op) || rel_is_ref(pl))
3792 8 : r->l = pl = rel_select(v->sql->sa, pl, NULL);
3793 9 : rel_select_add_exp(v->sql->sa, pl, ne);
3794 9 : list_remove_node(exps, NULL, n);
3795 9 : v->changes++;
3796 : }
3797 : }
3798 : }
3799 : }
3800 : n = next;
3801 : }
3802 :
3803 : /* cleanup list */
3804 134 : list_destroy(aggColumns);
3805 : }
3806 : }
3807 : }
3808 :
3809 : /* try push select under set relation */
3810 6855115 : if (is_select(rel->op) && r && is_set(r->op) && !list_empty(r->exps) && !rel_is_ref(r) && !is_single(r) && !list_empty(exps)) {
3811 19 : sql_rel *u = r, *ul = u->l, *ur = u->r;
3812 :
3813 19 : ul = rel_dup(ul);
3814 19 : ur = rel_dup(ur);
3815 19 : if (!is_project(ul->op))
3816 0 : ul = rel_project(v->sql->sa, ul,
3817 : rel_projections(v->sql, ul, NULL, 1, 1));
3818 19 : if (!is_project(ur->op))
3819 0 : ur = rel_project(v->sql->sa, ur,
3820 : rel_projections(v->sql, ur, NULL, 1, 1));
3821 19 : rel_rename_exps(v->sql, u->exps, ul->exps);
3822 19 : rel_rename_exps(v->sql, u->exps, ur->exps);
3823 :
3824 : /* introduce selects under the set */
3825 19 : ul = rel_select(v->sql->sa, ul, NULL);
3826 19 : ul->exps = exps_copy(v->sql, exps);
3827 19 : set_processed(ul);
3828 19 : ur = rel_select(v->sql->sa, ur, NULL);
3829 19 : ur->exps = exps_copy(v->sql, exps);
3830 19 : set_processed(ur);
3831 :
3832 19 : rel = rel_inplace_setop(v->sql, rel, ul, ur, u->op, rel_projections(v->sql, rel, NULL, 1, 1));
3833 19 : if (need_distinct(u))
3834 0 : set_distinct(rel);
3835 19 : v->changes++;
3836 : }
3837 6855115 : if (is_select(rel->op) && r && is_munion(r->op) && !list_empty(r->exps) && !rel_is_ref(r) && !is_single(r) && !list_empty(exps)) {
3838 4865 : sql_rel *u = r;
3839 4865 : list *rels = u->l, *nrels = sa_list(v->sql->sa);
3840 14621 : for(node *n = rels->h; n; n = n->next) {
3841 9756 : sql_rel *ul = n->data;
3842 9756 : ul = rel_dup(ul);
3843 9756 : if (!is_project(ul->op))
3844 8 : ul = rel_project(v->sql->sa, ul,
3845 : rel_projections(v->sql, ul, NULL, 1, 1));
3846 9756 : rel_rename_exps(v->sql, u->exps, ul->exps);
3847 :
3848 : /* introduce selects under the set */
3849 9756 : ul = rel_select(v->sql->sa, ul, NULL);
3850 9756 : ul->exps = exps_copy(v->sql, exps);
3851 9756 : set_processed(ul);
3852 9756 : nrels = append(nrels, ul);
3853 : }
3854 :
3855 4865 : rel = rel_inplace_setop_n_ary(v->sql, rel, nrels, u->op, rel_projections(v->sql, rel, NULL, 1, 1));
3856 4865 : if (need_distinct(u))
3857 6 : set_distinct(rel);
3858 4865 : v->changes++;
3859 : }
3860 :
3861 6855115 : return try_remove_empty_select(v, rel);
3862 : }
3863 :
3864 : static int
3865 12033 : index_exp(sql_exp *e, sql_idx *i)
3866 : {
3867 12033 : if (e->type == e_cmp && !is_complex_exp(e->flag)) {
3868 6776 : switch(i->type) {
3869 6776 : case hash_idx:
3870 : case oph_idx:
3871 6776 : if (e->flag == cmp_equal)
3872 : return 0;
3873 : /* fall through */
3874 : case join_idx:
3875 : default:
3876 1252 : return -1;
3877 : }
3878 : }
3879 : return -1;
3880 : }
3881 :
3882 : /* find column for the select/join expression */
3883 : static sql_column *
3884 5524 : sjexp_col(sql_exp *e, sql_rel *r)
3885 : {
3886 5524 : sql_column *res = NULL;
3887 :
3888 5524 : if (e->type == e_cmp && !is_complex_exp(e->flag)) {
3889 5524 : res = exp_find_column(r, e->l, -2);
3890 5524 : if (!res)
3891 466 : res = exp_find_column(r, e->r, -2);
3892 : }
3893 5524 : return res;
3894 : }
3895 :
3896 : static sql_idx *
3897 1772320 : find_index(allocator *sa, sql_rel *rel, sql_rel *sub, list **EXPS)
3898 : {
3899 1772320 : node *n;
3900 :
3901 : /* any (partial) match of the expressions with the index columns */
3902 : /* Depending on the index type we may need full matches and only
3903 : limited number of cmp types (hash only equality etc) */
3904 : /* Depending on the index type we should (in the rel_bin) generate
3905 : more code, ie for spatial index add post filter etc, for hash
3906 : compute hash value and use index */
3907 :
3908 1772320 : if (sub->exps && rel->exps)
3909 7116350 : for(n = sub->exps->h; n; n = n->next) {
3910 5526699 : prop *p;
3911 5526699 : sql_exp *e = n->data;
3912 :
3913 5526699 : if ((p = find_prop(e->p, PROP_HASHIDX)) != NULL) {
3914 9408 : list *exps, *cols;
3915 9408 : sql_idx *i = p->value.pval;
3916 9408 : fcmp cmp = (fcmp)&sql_column_kc_cmp;
3917 :
3918 : /* join indices are only interesting for joins */
3919 9408 : if (i->type == join_idx || list_length(i->columns) <= 1)
3920 0 : continue;
3921 : /* based on the index type, find qualifying exps */
3922 9408 : exps = list_select(rel->exps, i, (fcmp) &index_exp, (fdup)NULL);
3923 9408 : if (list_empty(exps))
3924 4848 : continue;
3925 : /* now we obtain the columns, move into sql_column_kc_cmp! */
3926 4560 : cols = list_map(exps, sub, (fmap) &sjexp_col);
3927 :
3928 : /* TODO check that at most 2 relations are involved */
3929 :
3930 : /* Match the index columns with the expression columns.
3931 : TODO, Allow partial matches ! */
3932 4560 : if (list_match(cols, i->columns, cmp) == 0) {
3933 : /* re-order exps in index order */
3934 286 : node *n, *m;
3935 286 : list *es = sa_list(sa);
3936 :
3937 958 : for(n = i->columns->h; n; n = n->next) {
3938 672 : int i = 0;
3939 2152 : for(m = cols->h; m; m = m->next, i++) {
3940 2152 : if (cmp(m->data, n->data) == 0){
3941 672 : sql_exp *e = list_fetch(exps, i);
3942 672 : list_append(es, e);
3943 672 : break;
3944 : }
3945 : }
3946 : }
3947 : /* fix the destroy function */
3948 286 : cols->destroy = NULL;
3949 286 : *EXPS = es;
3950 286 : e->used = 1;
3951 286 : return i;
3952 : }
3953 4274 : cols->destroy = NULL;
3954 : }
3955 : }
3956 : return NULL;
3957 : }
3958 :
3959 : static inline sql_rel *
3960 1156620 : rel_use_index(visitor *v, sql_rel *rel)
3961 : {
3962 1156620 : list *exps = NULL;
3963 1156620 : sql_idx *i = find_index(v->sql->sa, rel, rel->l, &exps);
3964 1156620 : int left = 1;
3965 :
3966 1156620 : assert(is_select(rel->op) || is_join(rel->op));
3967 1156620 : if (!i && is_join(rel->op)) {
3968 615700 : left = 0;
3969 615700 : i = find_index(v->sql->sa, rel, rel->r, &exps);
3970 : }
3971 :
3972 1156440 : if (i) {
3973 286 : prop *p;
3974 286 : node *n;
3975 286 : int single_table = 1;
3976 286 : sql_exp *re = NULL;
3977 :
3978 956 : for( n = exps->h; n && single_table; n = n->next) {
3979 670 : sql_exp *e = n->data, *nre = e->l;
3980 :
3981 670 : if (!is_compare(e->type) || is_anti(e) || e->flag != cmp_equal)
3982 : return rel;
3983 670 : if (is_join(rel->op) && ((left && !rel_find_exp(rel->l, nre)) || (!left && rel_find_exp(rel->r, nre))))
3984 111 : nre = e->r;
3985 670 : single_table = (!re || (exp_relname(nre) && exp_relname(re) && strcmp(exp_relname(nre), exp_relname(re)) == 0));
3986 670 : re = nre;
3987 : }
3988 286 : if (single_table) { /* add PROP_HASHCOL to all column exps */
3989 932 : for( n = exps->h; n; n = n->next) {
3990 654 : sql_exp *e = n->data;
3991 :
3992 : /* swapped ? */
3993 654 : if (is_join(rel->op) && ((left && !rel_find_exp(rel->l, e->l)) || (!left && !rel_find_exp(rel->r, e->l)))) {
3994 165 : exp_swap(e);
3995 : }
3996 654 : p = find_prop(e->p, PROP_HASHCOL);
3997 654 : if (!p)
3998 285 : e->p = p = prop_create(v->sql->sa, PROP_HASHCOL, e->p);
3999 654 : p->value.pval = i;
4000 : }
4001 : }
4002 : /* add the remaining exps to the new exp list */
4003 286 : if (list_length(rel->exps) > list_length(exps)) {
4004 108 : for( n = rel->exps->h; n; n = n->next) {
4005 81 : sql_exp *e = n->data;
4006 81 : if (!list_find(exps, e, (fcmp)&exp_cmp))
4007 27 : list_append(exps, e);
4008 : }
4009 : }
4010 286 : rel->exps = exps;
4011 : }
4012 : return rel;
4013 : }
4014 :
4015 : static sql_rel *
4016 3651638 : rel_select_leftgroup_2_semi(visitor *v, sql_rel *rel)
4017 : {
4018 3651638 : if (rel_is_ref(rel) || !is_select(rel->op) || list_empty(rel->exps))
4019 3120934 : return rel;
4020 530704 : sql_rel *l = rel->l;
4021 :
4022 530704 : if (!l || rel_is_ref(l) || !is_left(l->op) || list_empty(l->attr))
4023 529718 : return rel;
4024 :
4025 1964 : for(node *n = rel->exps->h; n; n = n->next) {
4026 986 : sql_exp *e = n->data;
4027 :
4028 986 : if (e->type == e_cmp && !is_semantics(e) && !e->f) {
4029 973 : list *attrs = l->attr;
4030 973 : sql_exp *a = attrs->h->data;
4031 :
4032 973 : if (exps_find_exp(l->attr, e->l) && exp_is_true(e->r) && e->flag == cmp_equal /*&& exp_is_true(a)*/) {
4033 : // printf("# optimize select leftgroup -> semi\n");
4034 8 : if (!list_empty(l->exps)) {
4035 13 : for(node *m = l->exps->h; m; m = m->next) {
4036 7 : sql_exp *j = m->data;
4037 7 : reset_any(j);
4038 : }
4039 : }
4040 8 : l->attr = NULL;
4041 8 : l->op = exp_is_true(a)?op_semi:op_anti;
4042 8 : list_remove_node(rel->exps, NULL, n);
4043 8 : rel = rel_project(v->sql->sa, rel, rel_projections(v->sql, rel, NULL, 1, 1));
4044 8 : list_append(rel->exps, attrs->h->data);
4045 8 : v->changes++;
4046 8 : return rel;
4047 : }
4048 : }
4049 : }
4050 : return rel;
4051 : }
4052 :
4053 : static sql_rel *
4054 3651638 : rel_optimize_select_and_joins_topdown_(visitor *v, sql_rel *rel)
4055 : {
4056 : /* push_join_down introduces semijoins */
4057 3651638 : uint8_t cycle = *(uint8_t*) v->data;
4058 3651638 : if (cycle <= 0) {
4059 1588227 : rel = rel_semijoin_use_fk(v, rel);
4060 1588227 : rel = rel_push_join_down(v, rel);
4061 : }
4062 :
4063 3651638 : rel = rel_simplify_fk_joins(v, rel);
4064 3651638 : rel = rel_push_select_down(v, rel);
4065 3651638 : rel = rel_select_leftgroup_2_semi(v, rel);
4066 3651638 : if (rel && rel->l && (is_select(rel->op) || is_join(rel->op)))
4067 1156620 : rel = rel_use_index(v, rel);
4068 3651638 : return rel;
4069 : }
4070 :
4071 : static sql_rel *
4072 126673 : rel_optimize_select_and_joins_topdown(visitor *v, global_props *gp, sql_rel *rel)
4073 : {
4074 126673 : v->data = &gp->opt_cycle;
4075 126673 : rel = rel_visitor_topdown(v, rel, &rel_optimize_select_and_joins_topdown_);
4076 126673 : v->data = gp;
4077 126673 : return rel;
4078 : }
4079 :
4080 : run_optimizer
4081 626143 : bind_optimize_select_and_joins_topdown(visitor *v, global_props *gp)
4082 : {
4083 626143 : int flag = v->sql->sql_optimizer;
4084 625947 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
4085 541559 : || gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti] ||
4086 1252090 : gp->cnt[op_select]) && (flag & optimize_select_and_joins_topdown) ? rel_optimize_select_and_joins_topdown : NULL;
4087 : }
4088 :
4089 :
4090 : static int
4091 1246024 : can_push_func(sql_exp *e, sql_rel *rel, int *must, int depth)
4092 : {
4093 1290549 : switch(e->type) {
4094 1091992 : case e_cmp: {
4095 1091992 : sql_exp *l = e->l, *r = e->r, *f = e->f;
4096 :
4097 : /* don't push down functions inside attribute joins */
4098 1091992 : if (e->flag == cmp_or || e->flag == cmp_in || e->flag == cmp_notin || e->flag == cmp_filter || (is_join(rel->op) && is_any(e)))
4099 : return 0;
4100 1036574 : if (depth > 0) { /* for comparisons under the top ones, they become functions */
4101 58 : int lmust = 0;
4102 58 : int res = can_push_func(l, rel, &lmust, depth + 1) && can_push_func(r, rel, &lmust, depth + 1) &&
4103 20 : (!f || can_push_func(f, rel, &lmust, depth + 1));
4104 12 : if (res && !lmust)
4105 : return 1;
4106 54 : (*must) |= lmust;
4107 54 : return res;
4108 : } else {
4109 1036516 : int mustl = 0, mustr = 0, mustf = 0;
4110 1036516 : return ((l->type == e_column || can_push_func(l, rel, &mustl, depth + 1)) && (*must = mustl)) ||
4111 2066000 : ((r->type == e_column || can_push_func(r, rel, &mustr, depth + 1)) && (*must = mustr)) ||
4112 3648 : ((f && (f->type == e_column || can_push_func(f, rel, &mustf, depth + 1)) && (*must = mustf)));
4113 : }
4114 : }
4115 44525 : case e_convert:
4116 44525 : return can_push_func(e->l, rel, must, depth + 1);
4117 9445 : case e_aggr:
4118 : case e_func: {
4119 9445 : list *l = e->l;
4120 9445 : int res = 1, lmust = 0;
4121 :
4122 9445 : if (exp_unsafe(e, false, false))
4123 : return 0;
4124 26925 : if (l) for (node *n = l->h; n && res; n = n->next)
4125 17480 : res &= can_push_func(n->data, rel, &lmust, depth + 1);
4126 9445 : if (res && !lmust)
4127 : return 1;
4128 8598 : (*must) |= lmust;
4129 8598 : return res;
4130 : }
4131 50813 : case e_column:
4132 50813 : if (rel && !rel_find_exp(rel, e))
4133 : return 0;
4134 29885 : (*must) = 1;
4135 : /* fall through */
4136 : default:
4137 : return 1;
4138 : }
4139 : }
4140 :
4141 : static int
4142 905563 : exps_can_push_func(list *exps, sql_rel *rel)
4143 : {
4144 3938512 : for(node *n = exps->h; n; n = n->next) {
4145 3056977 : sql_exp *e = n->data;
4146 3056977 : int mustl = 0, mustr = 0;
4147 :
4148 3056977 : if ((is_joinop(rel->op) || is_select(rel->op)) && ((can_push_func(e, rel->l, &mustl, 0) && mustl)))
4149 24028 : return 1;
4150 3052722 : if (is_joinop(rel->op) && can_push_func(e, rel->r, &mustr, 0) && mustr)
4151 : return 1;
4152 : }
4153 : return 0;
4154 : }
4155 :
4156 : static int
4157 82807 : exp_needs_push_down(sql_rel *rel, sql_exp *e)
4158 : {
4159 107493 : switch(e->type) {
4160 27792 : case e_cmp:
4161 : /* don't push down functions inside attribute joins */
4162 27792 : if (e->flag == cmp_or || e->flag == cmp_in || e->flag == cmp_notin || e->flag == cmp_filter || (is_join(rel->op) && is_any(e)))
4163 : return 0;
4164 26857 : return exp_needs_push_down(rel, e->l) || exp_needs_push_down(rel, e->r) || (e->f && exp_needs_push_down(rel, e->f));
4165 24686 : case e_convert:
4166 24686 : return exp_needs_push_down(rel, e->l);
4167 1916 : case e_aggr:
4168 : case e_func:
4169 1916 : if (!e->l || exps_are_atoms(e->l))
4170 20 : return 0;
4171 : return 1;
4172 1455 : case e_atom:
4173 1455 : if (!e->f || exps_are_atoms(e->f))
4174 1455 : return 0;
4175 : return 1;
4176 : case e_column:
4177 : default:
4178 : return 0;
4179 : }
4180 : }
4181 :
4182 : static int
4183 24028 : exps_need_push_down(sql_rel *rel, list *exps )
4184 : {
4185 49916 : for(node *n = exps->h; n; n = n->next)
4186 27784 : if (exp_needs_push_down(rel, n->data))
4187 : return 1;
4188 : return 0;
4189 : }
4190 :
4191 : static sql_exp *exp_push_single_func_down(visitor *v, sql_rel *rel, sql_rel *ol, sql_rel *or, sql_exp *e, int depth);
4192 :
4193 : static list *
4194 2408 : exps_push_single_func_down(visitor *v, sql_rel *rel, sql_rel *ol, sql_rel *or, list *exps, int depth)
4195 : {
4196 4816 : if (mvc_highwater(v->sql))
4197 : return exps;
4198 :
4199 6706 : for (node *n = exps->h; n; n = n->next)
4200 4298 : if ((n->data = exp_push_single_func_down(v, rel, ol, or, n->data, depth)) == NULL)
4201 : return NULL;
4202 : return exps;
4203 : }
4204 :
4205 : static sql_exp *
4206 15695 : exp_push_single_func_down(visitor *v, sql_rel *rel, sql_rel *ol, sql_rel *or, sql_exp *e, int depth)
4207 : {
4208 27437 : if (mvc_highwater(v->sql))
4209 : return e;
4210 :
4211 15695 : switch(e->type) {
4212 4235 : case e_cmp: {
4213 4235 : if (e->flag == cmp_or || e->flag == cmp_filter) {
4214 247 : if ((e->l = exps_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4215 : return NULL;
4216 247 : if ((e->r = exps_push_single_func_down(v, rel, ol, or, e->r, depth + 1)) == NULL)
4217 : return NULL;
4218 3988 : } else if (e->flag == cmp_in || e->flag == cmp_notin) {
4219 18 : if ((e->l = exp_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4220 : return NULL;
4221 18 : if ((e->r = exps_push_single_func_down(v, rel, ol, or, e->r, depth + 1)) == NULL)
4222 : return NULL;
4223 : } else {
4224 3970 : if ((e->l = exp_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4225 : return NULL;
4226 3970 : if ((e->r = exp_push_single_func_down(v, rel, ol, or, e->r, depth + 1)) == NULL)
4227 : return NULL;
4228 3970 : if (e->f && (e->f = exp_push_single_func_down(v, rel, ol, or, e->f, depth + 1)) == NULL)
4229 : return NULL;
4230 : }
4231 : } break;
4232 2004 : case e_convert:
4233 2004 : if ((e->l = exp_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4234 : return NULL;
4235 : break;
4236 3976 : case e_aggr:
4237 : case e_func: {
4238 3976 : sql_rel *l = rel->l, *r = rel->r;
4239 3976 : int must = 0, mustl = 0, mustr = 0;
4240 :
4241 3976 : if (exp_unsafe(e, false, false))
4242 23 : return e;
4243 3976 : if (!e->l || exps_are_atoms(e->l))
4244 23 : return e;
4245 3953 : if ((is_joinop(rel->op) && ((can_push_func(e, l, &mustl, depth + 1) && mustl) || (can_push_func(e, r, &mustr, depth + 1) && mustr))) ||
4246 2971 : (is_select(rel->op) && can_push_func(e, l, &must, depth + 1) && must)) {
4247 3940 : exp_label(v->sql->sa, e, ++v->sql->label);
4248 : /* we need a full projection, group by's and unions cannot be extended with more expressions */
4249 3940 : if (mustr) {
4250 352 : if (r == or) /* don't project twice */
4251 329 : rel->r = r = rel_project(v->sql->sa, r, rel_projections(v->sql, r, NULL, 1, 1));
4252 352 : list_append(r->exps, e);
4253 : } else {
4254 3588 : if (l == ol) /* don't project twice */
4255 1832 : rel->l = l = rel_project(v->sql->sa, l, rel_projections(v->sql, l, NULL, 1, 1));
4256 3588 : list_append(l->exps, e);
4257 : }
4258 3940 : e = exp_ref(v->sql, e);
4259 3940 : v->changes++;
4260 : }
4261 3953 : } break;
4262 1144 : case e_atom: {
4263 1144 : if (e->f && (e->f = exps_push_single_func_down(v, rel, ol, or, e->f, depth + 1)) == NULL)
4264 : return NULL;
4265 : } break;
4266 : case e_column:
4267 : case e_psm:
4268 : break;
4269 : }
4270 : return e;
4271 : }
4272 :
4273 : static inline sql_rel *
4274 3578213 : rel_push_func_down(visitor *v, sql_rel *rel)
4275 : {
4276 3578213 : if ((is_select(rel->op) || is_joinop(rel->op)) && rel->l && rel->exps && !(rel_is_ref(rel))) {
4277 1081981 : int changes = v->changes;
4278 1081981 : sql_rel *l = rel->l, *r = rel->r;
4279 :
4280 : /* only push down when is useful */
4281 1081981 : if ((is_select(rel->op) && list_length(rel->exps) <= 1) || rel_is_ref(l) || (is_joinop(rel->op) && rel_is_ref(r)))
4282 530173 : return rel;
4283 551808 : if (exps_can_push_func(rel->exps, rel) && exps_need_push_down(rel, rel->exps) && !exps_push_single_func_down(v, rel, l, r, rel->exps, 0))
4284 : return NULL;
4285 551808 : if (v->changes > changes) /* once we get a better join order, we can try to remove this projection */
4286 1896 : return rel_project(v->sql->sa, rel, rel_projections(v->sql, rel, NULL, 1, 1));
4287 : }
4288 3046144 : if (is_simple_project(rel->op) && rel->l && rel->exps) {
4289 1133923 : sql_rel *pl = rel->l;
4290 :
4291 1133923 : if (is_joinop(pl->op) && exps_can_push_func(rel->exps, rel)) {
4292 0 : sql_rel *l = pl->l, *r = pl->r, *ol = l, *or = r;
4293 :
4294 0 : for (node *n = rel->exps->h; n; ) {
4295 0 : node *next = n->next;
4296 0 : sql_exp *e = n->data;
4297 0 : int mustl = 0, mustr = 0;
4298 :
4299 0 : if ((can_push_func(e, l, &mustl, 0) && mustl) || (can_push_func(e, r, &mustr, 0) && mustr)) {
4300 0 : if (mustl) {
4301 0 : if (l == ol) /* don't project twice */
4302 0 : pl->l = l = rel_project(v->sql->sa, l, rel_projections(v->sql, l, NULL, 1, 1));
4303 0 : list_append(l->exps, e);
4304 0 : list_remove_node(rel->exps, NULL, n);
4305 0 : v->changes++;
4306 : } else {
4307 0 : if (r == or) /* don't project twice */
4308 0 : pl->r = r = rel_project(v->sql->sa, r, rel_projections(v->sql, r, NULL, 1, 1));
4309 0 : list_append(r->exps, e);
4310 0 : list_remove_node(rel->exps, NULL, n);
4311 0 : v->changes++;
4312 : }
4313 : }
4314 0 : n = next;
4315 : }
4316 : }
4317 : }
4318 : return rel;
4319 : }
4320 :
4321 : static sql_rel *
4322 3578213 : rel_push_func_and_select_down_(visitor *v, sql_rel *rel)
4323 : {
4324 3578213 : if (rel)
4325 3578213 : rel = rel_push_func_down(v, rel);
4326 3578213 : if (rel)
4327 3578213 : rel = rel_push_select_down(v, rel);
4328 3578213 : return rel;
4329 : }
4330 :
4331 : static sql_rel *
4332 126673 : rel_push_func_and_select_down(visitor *v, global_props *gp, sql_rel *rel)
4333 : {
4334 126673 : (void) gp;
4335 126673 : return rel_visitor_topdown(v, rel, &rel_push_func_and_select_down_);
4336 : }
4337 :
4338 : run_optimizer
4339 626147 : bind_push_func_and_select_down(visitor *v, global_props *gp)
4340 : {
4341 626147 : int flag = v->sql->sql_optimizer;
4342 625951 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
4343 541563 : || gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti] || gp->cnt[op_select])
4344 752820 : && (flag & push_func_and_select_down) ? rel_push_func_and_select_down : NULL;
4345 : }
|