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 219929 : select_split_exp(mvc *sql, sql_exp *e, sql_rel *rel)
25 : {
26 219929 : switch(e->type) {
27 : case e_column:
28 : return e;
29 6884 : case e_convert:
30 6884 : e->l = select_split_exp(sql, e->l, rel);
31 6884 : return e;
32 24349 : case e_aggr:
33 : case e_func:
34 24349 : if (!is_analytic(e) && !exp_has_sideeffect(e)) {
35 24344 : sql_subfunc *f = e->f;
36 24344 : 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 75266 : case e_cmp:
41 75266 : if (e->flag == cmp_or || e->flag == cmp_filter) {
42 18846 : select_split_exps(sql, e->l, rel);
43 18846 : select_split_exps(sql, e->r, rel);
44 56420 : } else if (e->flag == cmp_in || e->flag == cmp_notin) {
45 3251 : e->l = select_split_exp(sql, e->l, rel);
46 3251 : select_split_exps(sql, e->r, rel);
47 : } else {
48 53169 : e->l = select_split_exp(sql, e->l, rel);
49 53169 : e->r = select_split_exp(sql, e->r, rel);
50 53169 : 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 65678 : select_split_exps(mvc *sql, list *exps, sql_rel *rel)
63 : {
64 65678 : node *n;
65 :
66 65678 : if (!exps)
67 : return;
68 165544 : for(n=exps->h; n; n = n->next){
69 99866 : sql_exp *e = n->data;
70 :
71 99866 : e = select_split_exp(sql, e, rel);
72 99866 : n->data = e;
73 : }
74 : }
75 :
76 : static sql_rel *
77 1652776 : rel_split_select_(visitor *v, sql_rel *rel)
78 : {
79 1652776 : if (!rel || !is_select(rel->op) || list_empty(rel->exps) || !rel->l || mvc_highwater(v->sql))
80 1432719 : return rel;
81 :
82 220057 : bool funcs = false;
83 :
84 : /* are there functions */
85 470631 : for (node *n = rel->exps->h; n && !funcs; n = n->next)
86 250574 : funcs = exp_has_func(n->data);
87 :
88 : /* introduce extra project */
89 220057 : if (funcs) {
90 24735 : sql_rel *nrel = rel_project(v->sql->sa, rel->l,
91 24735 : rel_projections(v->sql, rel->l, NULL, 1, 1));
92 24735 : if (!nrel || !nrel->exps)
93 : return NULL;
94 24735 : rel->l = nrel;
95 : /* recursively split all functions and add those to the projection list */
96 24735 : select_split_exps(v->sql, rel->exps, nrel);
97 24735 : return rel;
98 : }
99 : return rel;
100 : }
101 :
102 : static sql_rel *
103 55306 : rel_split_select(visitor *v, global_props *gp, sql_rel *rel)
104 : {
105 55306 : (void) gp;
106 55306 : return rel_visitor_bottomup(v, rel, &rel_split_select_);
107 : }
108 :
109 : run_optimizer
110 621727 : bind_split_select(visitor *v, global_props *gp)
111 : {
112 621727 : int flag = v->sql->sql_optimizer;
113 546872 : return gp->opt_cycle == 0 && gp->opt_level == 1 && (flag & split_select)
114 1168591 : && 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 1457025 : rel_remove_redundant_join_(visitor *v, sql_rel *rel)
127 : {
128 1457025 : if ((is_join(rel->op) || is_semi(rel->op)) && !list_empty(rel->exps)) {
129 216844 : sql_rel *l = rel->l, *r = rel->r, *b, *p = NULL, *j;
130 :
131 216844 : 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 216835 : } else if (is_basetable(r->op) && is_simple_project(l->op) && need_distinct(l)) {
136 2307 : b = r;
137 2307 : p = l;
138 2307 : j = p->l;
139 : }
140 216844 : if (!p || !j || j->op != rel->op)
141 : return rel;
142 : /* j must have b->l (ie table) */
143 9 : sql_rel *jl = j->l, *jr = j->r;
144 9 : if ((is_basetable(jl->op) && jl->l == b->l) ||
145 7 : (is_basetable(jr->op) && jr->l == b->l)) {
146 8 : int left = 0;
147 8 : if (is_basetable(jl->op) && jl->l == b->l)
148 8 : left = 1;
149 8 : if (!list_empty(p->exps)) {
150 15 : for (node *n=p->exps->h; n; n = n->next) { /* all exps of 'p' must be bound to the opposite side */
151 8 : sql_exp *e = n->data;
152 :
153 14 : if (!rel_rebind_exp(v->sql, left ? jr : jl, e))
154 : return rel;
155 : }
156 : }
157 7 : 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 47402 : rel_remove_redundant_join(visitor *v, global_props *gp, sql_rel *rel)
171 : {
172 47402 : (void) gp;
173 47402 : 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 621778 : bind_remove_redundant_join(visitor *v, global_props *gp)
178 : {
179 621778 : int flag = v->sql->sql_optimizer;
180 547006 : return gp->opt_cycle == 0 && gp->opt_level == 1 && (gp->cnt[op_left] || gp->cnt[op_right]
181 529128 : || gp->cnt[op_full] || gp->cnt[op_join] || gp->cnt[op_semi] || gp->cnt[op_anti]) &&
182 668991 : (flag & remove_redundant_join) ? rel_remove_redundant_join : NULL;
183 : }
184 :
185 :
186 : static list *
187 1114766 : exp_merge_range(visitor *v, sql_rel *rel, list *exps)
188 : {
189 1114766 : node *n, *m;
190 2395623 : for (n=exps->h; n; n = n->next) {
191 1282750 : sql_exp *e = n->data;
192 1282750 : sql_exp *le = e->l;
193 1282750 : sql_exp *re = e->r;
194 :
195 : /* handle the and's in the or lists */
196 1282750 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
197 43235 : e->l = exp_merge_range(v, rel, e->l);
198 43235 : e->r = exp_merge_range(v, rel, e->r);
199 : /* only look for gt, gte, lte, lt */
200 1239515 : } else if (n->next &&
201 163784 : e->type == e_cmp && e->flag < cmp_equal && !e->f &&
202 6811 : re->card == CARD_ATOM && !is_anti(e)) {
203 1266 : for (m=n->next; m; m = m->next) {
204 776 : sql_exp *f = m->data;
205 776 : sql_exp *lf = f->l;
206 776 : sql_exp *rf = f->r;
207 776 : int c_le = is_numeric_upcast(le), c_lf = is_numeric_upcast(lf);
208 :
209 776 : 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 1238885 : } else if (n->next &&
250 163154 : e->type == e_cmp && e->flag < cmp_equal && !e->f &&
251 6181 : re->card > CARD_ATOM && !is_anti(e)) {
252 11206 : for (m=n->next; m; m = m->next) {
253 6778 : sql_exp *f = m->data;
254 6778 : sql_exp *lf = f->l;
255 6778 : sql_exp *rf = f->r;
256 :
257 6778 : 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 39414 : exps_cse( mvc *sql, list *oexps, list *l, list *r )
337 : {
338 39414 : list *nexps;
339 39414 : node *n, *m;
340 39414 : char *lu, *ru;
341 39414 : int lc = 0, rc = 0, match = 0, res = 0;
342 :
343 39414 : if (list_length(l) == 0 || list_length(r) == 0)
344 0 : return 0;
345 :
346 : /* first recursive exps_cse */
347 39414 : nexps = new_exp_list(sql->sa);
348 82617 : for (n = l->h; n; n = n->next) {
349 43203 : sql_exp *e = n->data;
350 :
351 43203 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
352 15087 : res = exps_cse(sql, nexps, e->l, e->r);
353 : } else {
354 28116 : append(nexps, e);
355 : }
356 : }
357 39414 : l = nexps;
358 :
359 39414 : nexps = new_exp_list(sql->sa);
360 85806 : for (n = r->h; n; n = n->next) {
361 46392 : sql_exp *e = n->data;
362 :
363 46392 : 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 44250 : append(nexps, e);
367 : }
368 : }
369 39414 : r = nexps;
370 :
371 : /* simplify true or .. and .. or true */
372 39414 : if (list_length(l) == list_length(r) && list_length(l) == 1) {
373 34898 : sql_exp *le = l->h->data, *re = r->h->data;
374 :
375 34898 : if (exp_is_true(le)) {
376 13 : append(oexps, le);
377 13 : return 1;
378 : }
379 34885 : if (exp_is_true(re)) {
380 5 : append(oexps, re);
381 5 : return 1;
382 : }
383 : }
384 :
385 39396 : lu = SA_ZNEW_ARRAY(sql->ta, char, list_length(l));
386 39396 : ru = SA_ZNEW_ARRAY(sql->ta, char, list_length(r));
387 82598 : for (n = l->h, lc = 0; n; n = n->next, lc++) {
388 43202 : sql_exp *le = n->data;
389 :
390 95378 : for ( m = r->h, rc = 0; m; m = m->next, rc++) {
391 52176 : sql_exp *re = m->data;
392 :
393 52176 : 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 39396 : 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 39347 : 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 23328 : exp_col_key(sql_exp *e)
428 : {
429 17587 : 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 4280 : detect_col_cmp_eqs(mvc *sql, list *eqs, sql_hash *eqh)
469 : {
470 4280 : bool col_multivalue_cmp_eq = false;
471 16078 : for (node *n = eqs->h; n; n = n->next ) {
472 11798 : sql_exp *e = n->data;
473 11798 : 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 11798 : bool found = false;
477 :
478 11798 : int key = eqh->key(le);
479 11798 : sql_hash_e *he = eqh->buckets[key&(eqh->size-1)];
480 :
481 14693 : for (;he && !found; he = he->chain) {
482 2895 : eq_cv *cv = he->value;
483 2895 : if (!exp_equal(le, cv->col)) {
484 2895 : cv->vs = append(cv->vs, re);
485 2895 : found = col_multivalue_cmp_eq = true;
486 : /* remove this and the previous (->first) occurrence (if exists) from eqs */
487 2895 : if (cv->first) {
488 1792 : list_remove_data(eqs, NULL, cv->first);
489 1792 : cv->first = NULL;
490 : }
491 2895 : list_remove_node(eqs, NULL, n);
492 : }
493 : }
494 :
495 11798 : if (!found) {
496 8903 : eq_cv *cv = SA_NEW(sql->sa, eq_cv);
497 8903 : cv->first = e;
498 8903 : cv->vs = sa_list(sql->sa);
499 8903 : cv->vs = append(cv->vs, re);
500 8903 : cv->col = le;
501 :
502 8903 : hash_add(eqh, key, cv);
503 : }
504 : }
505 4280 : 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 66145 : 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 85518 : bool eq_only = true;
595 182532 : for (node *n = exps->h; n && eq_only; n = n->next) {
596 97014 : sql_exp *e = n->data;
597 97014 : sql_exp *le = e->l, *re = e->r;
598 193777 : eq_only &= (e->type == e_cmp && e->flag == cmp_equal &&
599 34686 : le->card != CARD_ATOM && is_column(le->type) &&
600 130572 : re->card == CARD_ATOM && !is_semantics(e));
601 : }
602 :
603 85518 : if (list_length(exps) > 1) {
604 5632 : if (eq_only)
605 4520 : *mce_ands = append(*mce_ands, exps);
606 : else
607 1112 : *gen_ands = append(*gen_ands, exps);
608 79886 : } else if (list_length(exps) == 1) {
609 79886 : sql_exp *se = exps->h->data;
610 79886 : sql_exp *le = se->l, *re = se->r;
611 :
612 79886 : if (se->type == e_cmp && se->flag == cmp_or && !is_anti(se)) {
613 : /* for a cmp_or expression go down the tree */
614 19373 : exp_or_chain_groups(sql, (list*)le, gen_ands, mce_ands, eqs, noneq);
615 19373 : exp_or_chain_groups(sql, (list*)re, gen_ands, mce_ands, eqs, noneq);
616 :
617 60513 : } else if (eq_only) {
618 15355 : *eqs = append(*eqs, se);
619 : } else {
620 45158 : *noneq = append(*noneq, se);
621 : }
622 : }
623 66145 : }
624 :
625 : static list *
626 1685 : 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 1685 : list *ins = new_exp_list(sql->sa);
632 55605 : for (int i = 0; i < eqh->size; i++) {
633 53920 : sql_hash_e *he = eqh->buckets[i];
634 :
635 56559 : while (he) {
636 2639 : eq_cv *cv = he->value;
637 : /* NOTE: cmp_eq expressions with a single entry are still in eqs */
638 2639 : if (list_length(cv->vs) > 1)
639 1792 : ins = append(ins, exp_in(sql->sa, cv->col, cv->vs, cmp_in));
640 2639 : he = he->chain;
641 : }
642 : }
643 1685 : 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 519753 : merge_ors(mvc *sql, list *exps, int *changes)
673 : {
674 519753 : sql_hash *eqh = NULL, *meqh = NULL;
675 519753 : list *eqs = NULL, *neq = NULL, *gen_ands = NULL, *mce_ands = NULL, *ins = NULL, *mins = NULL;
676 1117158 : for (node *n = exps->h; n; n = n->next) {
677 597405 : sql_exp *e = n->data;
678 :
679 597405 : 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 23386 : gen_ands = new_exp_list(sql->sa);
691 23386 : mce_ands = new_exp_list(sql->sa);
692 23386 : eqs = new_exp_list(sql->sa);
693 23386 : neq = new_exp_list(sql->sa);
694 :
695 : /* walk the OR tree */
696 23386 : exp_or_chain_groups(sql, e->l, &gen_ands, &mce_ands, &eqs, &neq);
697 23386 : exp_or_chain_groups(sql, e->r, &gen_ands, &mce_ands, &eqs, &neq);
698 :
699 : /* detect col cmp_eq exps with multiple values */
700 23386 : bool col_multival = false;
701 23386 : if (list_length(eqs) > 1) {
702 4280 : eqh = hash_new(sql->sa, 32, (fkeyvalue)&exp_col_key);
703 4280 : col_multival = detect_col_cmp_eqs(sql, eqs, eqh);
704 : }
705 :
706 : /* detect mutli-col cmp_eq exps with multiple (lists of) values */
707 23386 : bool multicol_multival = false;
708 23386 : 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 23386 : if (!col_multival && !multicol_multival)
714 21630 : continue;
715 :
716 1756 : if (col_multival)
717 1685 : ins = generate_single_col_cmp_in(sql, eqh);
718 :
719 1756 : if (multicol_multival)
720 80 : mins = generate_multi_col_cmp_in(sql, meqh);
721 :
722 : /* create the new OR tree */
723 1756 : sql_exp *new = (ins) ? ins->h->data : mins->h->data;
724 :
725 71 : if (ins) {
726 1792 : 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 1756 : 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 1756 : 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 1756 : 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 1759 : 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 2074 : 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 1756 : list_remove_node(exps, NULL, n);
782 1756 : exps = append(exps, new);
783 : }
784 : }
785 519753 : 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 599101 : merge_notequal(mvc *sql, list *exps, int *changes)
793 : {
794 599101 : list *inequality_groups = NULL, *nexps = NULL;
795 599101 : int needed = 0;
796 :
797 1286434 : for (node *n = exps->h; n; n = n->next) {
798 687333 : sql_exp *e = n->data;
799 :
800 687333 : if (TRIVIAL_NOT_EQUAL_CMP(e)) {
801 82130 : bool appended = false;
802 :
803 82130 : if (inequality_groups) {
804 9087 : for (node *m = inequality_groups->h; m && !appended; m = m->next) {
805 5208 : list *next = m->data;
806 5208 : sql_exp *first = (sql_exp*) next->h->data;
807 :
808 5208 : if (exp_match(first->l, e->l)) {
809 1162 : list_append(next, e);
810 1162 : appended = true;
811 : }
812 : }
813 : }
814 3879 : if (!appended) {
815 80968 : if (!inequality_groups)
816 78251 : inequality_groups = new_exp_list(sql->sa);
817 80968 : list_append(inequality_groups, list_append(new_exp_list(sql->sa), e));
818 : }
819 : }
820 : }
821 :
822 599101 : if (inequality_groups) { /* if one list of inequalities has more than one entry, then the re-write is needed */
823 159219 : for (node *n = inequality_groups->h; n; n = n->next) {
824 80968 : list *next = n->data;
825 :
826 80968 : if (list_length(next) > 1)
827 1077 : needed = 1;
828 : }
829 : }
830 :
831 78251 : if (needed) {
832 995 : nexps = new_exp_list(sql->sa);
833 2606 : for (node *n = inequality_groups->h; n; n = n->next) {
834 1611 : list *next = n->data;
835 1611 : sql_exp *first = (sql_exp*) next->h->data;
836 :
837 1611 : if (list_length(next) > 1) {
838 1077 : list *notin = new_exp_list(sql->sa);
839 :
840 3316 : for (node *m = next->h; m; m = m->next) {
841 2239 : sql_exp *e = m->data;
842 2239 : list_append(notin, e->r);
843 : }
844 1077 : list_append(nexps, exp_in(sql->sa, first->l, notin, cmp_notin));
845 : } else {
846 534 : list_append(nexps, first);
847 : }
848 : }
849 :
850 4126 : for (node *n = exps->h; n; n = n->next) {
851 3131 : sql_exp *e = n->data;
852 :
853 3131 : if (!TRIVIAL_NOT_EQUAL_CMP(e))
854 358 : list_append(nexps, e);
855 : }
856 995 : (*changes)++;
857 : } else {
858 : nexps = exps;
859 : }
860 :
861 1285272 : for (node *n = nexps->h; n ; n = n->next) {
862 686171 : sql_exp *e = n->data;
863 :
864 686171 : if (e->type == e_cmp && e->flag == cmp_or) {
865 39674 : e->l = merge_notequal(sql, e->l, changes);
866 39674 : e->r = merge_notequal(sql, e->r, changes);
867 : }
868 : }
869 :
870 599101 : return nexps;
871 : }
872 :
873 : int
874 171514 : is_numeric_upcast(sql_exp *e)
875 : {
876 171514 : if (is_convert(e->type)) {
877 4652 : sql_subtype *f = exp_fromtype(e);
878 4652 : sql_subtype *t = exp_totype(e);
879 :
880 4652 : if (f->type->eclass == t->type->eclass && EC_COMPUTE(f->type->eclass)) {
881 1636 : 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 44892 : try_rewrite_equal_or_is_null(mvc *sql, sql_rel *rel, sql_exp *or, list *l1, list *l2)
891 : {
892 44892 : if (list_length(l1) == 1) {
893 41304 : bool valid = true, first_is_null_found = false, second_is_null_found = false;
894 41304 : sql_exp *cmp = l1->h->data;
895 41304 : sql_exp *first = cmp->l, *second = cmp->r;
896 :
897 41304 : if (is_compare(cmp->type) && !is_anti(cmp) && !cmp->f && cmp->flag == cmp_equal) {
898 7207 : int fupcast = is_numeric_upcast(first), supcast = is_numeric_upcast(second);
899 14678 : for(node *n = l2->h ; n && valid; n = n->next) {
900 7471 : sql_exp *e = n->data, *l = e->l, *r = e->r;
901 :
902 7471 : if (is_compare(e->type) && e->flag == cmp_equal && !e->f &&
903 4468 : !is_anti(e) && is_semantics(e)) {
904 1777 : int lupcast = is_numeric_upcast(l);
905 1777 : int rupcast = is_numeric_upcast(r);
906 1777 : sql_exp *rr = rupcast ? r->l : r;
907 :
908 1777 : if (rr->type == e_atom && rr->l && atom_null(rr->l)) {
909 1777 : if (exp_match_exp(fupcast?first->l:first, lupcast?l->l:l))
910 : first_is_null_found = true;
911 352 : else if (exp_match_exp(supcast?second->l:second, lupcast?l->l:l))
912 : second_is_null_found = true;
913 : else
914 5782 : valid = false;
915 : } else {
916 : valid = false;
917 : }
918 : } else {
919 : valid = false;
920 : }
921 : }
922 7207 : if (valid && first_is_null_found && second_is_null_found) {
923 261 : sql_subtype super;
924 :
925 261 : cmp_supertype(&super, exp_subtype(first), exp_subtype(second)); /* first and second must have the same type */
926 261 : if (!(first = exp_check_type(sql, &super, rel, first, type_equal)) ||
927 261 : !(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 261 : sql_exp *res = exp_compare(sql->sa, first, second, cmp->flag);
933 261 : set_semantics(res);
934 261 : if (exp_name(or))
935 0 : exp_prop_alias(sql->sa, res, or);
936 261 : return res;
937 : }
938 : }
939 : }
940 : return or;
941 : }
942 :
943 : static list *
944 1026403 : merge_cmp_or_null(mvc *sql, sql_rel *rel, list *exps, int *changes)
945 : {
946 2206901 : for (node *n = exps->h; n ; n = n->next) {
947 1180498 : sql_exp *e = n->data;
948 :
949 1180498 : if (is_compare(e->type) && e->flag == cmp_or && !is_anti(e)) {
950 22446 : sql_exp *ne = try_rewrite_equal_or_is_null(sql, rel, e, e->l, e->r);
951 22446 : if (ne != e) {
952 259 : (*changes)++;
953 259 : n->data = ne;
954 : }
955 22446 : ne = try_rewrite_equal_or_is_null(sql, rel, e, e->r, e->l);
956 22446 : if (ne != e) {
957 2 : (*changes)++;
958 2 : n->data = ne;
959 : }
960 : }
961 : }
962 1026403 : return exps;
963 : }
964 :
965 : static list *
966 1026403 : cleanup_equal_exps(mvc *sql, sql_rel *rel, list *exps, int *changes)
967 : {
968 1026403 : if (list_length(exps) <= 1)
969 : return exps;
970 140630 : if (is_join(rel->op)) {
971 211559 : for(node *n = exps->h; n; n = n->next) {
972 142226 : sql_exp *e = n->data;
973 284295 : if (e->type == e_cmp && !e->f && e->flag <= cmp_notequal &&
974 183415 : !rel_find_exp(rel->l, e->l) && !rel_find_exp(rel->r, e->r) &&
975 41173 : !find_prop(e->p, PROP_HASHCOL) && !find_prop(e->p, PROP_JOINIDX)) {
976 20506 : exp_swap(e);
977 : }
978 : }
979 : }
980 140630 : bool needed = false;
981 436409 : for(node *n = exps->h; !needed && n; n = n->next) {
982 586313 : for (node *m = n->next; !needed && m; m = m->next) {
983 290534 : if (exp_match_exp_semantics(n->data, m->data, true))
984 89 : needed = true;
985 : }
986 : }
987 140630 : 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 1026403 : rel_select_cse(visitor *v, sql_rel *rel)
1018 : {
1019 1026403 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps) /* cleanup equal expressions */
1020 1026403 : rel->exps = cleanup_equal_exps(v->sql, rel, rel->exps, &v->changes); /* (a = b) and (a += b) */
1021 :
1022 1026403 : if (is_select(rel->op) && rel->exps)
1023 519753 : rel->exps = merge_ors(v->sql, rel->exps, &v->changes);
1024 :
1025 1026403 : if (is_select(rel->op) && rel->exps)
1026 519753 : rel->exps = merge_notequal(v->sql, rel->exps, &v->changes); /* x <> 1 and x <> 2 => x not in (1, 2)*/
1027 :
1028 1026403 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps)
1029 1026403 : 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 1026403 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps) {
1032 1026403 : node *n;
1033 1026403 : list *nexps;
1034 1026403 : int needed = 0;
1035 :
1036 2200286 : for (n=rel->exps->h; n && !needed; n = n->next) {
1037 1173883 : sql_exp *e = n->data;
1038 :
1039 1173883 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e))
1040 1173883 : needed = 1;
1041 : }
1042 1026403 : if (!needed)
1043 : return rel;
1044 21376 : nexps = new_exp_list(v->sql->sa);
1045 50685 : for (n=rel->exps->h; n; n = n->next) {
1046 29309 : sql_exp *e = n->data;
1047 :
1048 29309 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e)) {
1049 : /* split the common expressions */
1050 22185 : v->changes += exps_cse(v->sql, nexps, e->l, e->r);
1051 : } else {
1052 7124 : append(nexps, e);
1053 : }
1054 : }
1055 21376 : rel->exps = nexps;
1056 : }
1057 : return rel;
1058 : }
1059 :
1060 : static list *
1061 13545 : exps_merge_select_rse( mvc *sql, list *l, list *r, bool *merged)
1062 : {
1063 13545 : node *n, *m, *o;
1064 13545 : list *nexps = NULL, *lexps, *rexps;
1065 13545 : bool lmerged = true, rmerged = true;
1066 :
1067 13545 : lexps = new_exp_list(sql->sa);
1068 28463 : for (n = l->h; n; n = n->next) {
1069 14918 : sql_exp *e = n->data;
1070 :
1071 14918 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e) && !is_semantics(e)) {
1072 5232 : lmerged = false;
1073 5232 : list *nexps = exps_merge_select_rse(sql, e->l, e->r, &lmerged);
1074 5634 : for (o = nexps->h; o; o = o->next)
1075 402 : append(lexps, o->data);
1076 : } else {
1077 9686 : append(lexps, e);
1078 : }
1079 : }
1080 13545 : if (lmerged)
1081 8362 : lmerged = (list_length(lexps) == 1);
1082 13545 : rexps = new_exp_list(sql->sa);
1083 29484 : for (n = r->h; n; n = n->next) {
1084 15939 : sql_exp *e = n->data;
1085 :
1086 15939 : 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 15240 : append(rexps, e);
1093 : }
1094 : }
1095 13545 : if (rmerged)
1096 12867 : rmerged = (list_length(r) == 1);
1097 :
1098 13545 : nexps = new_exp_list(sql->sa);
1099 :
1100 : /* merge merged lists first ? */
1101 23633 : for (n = lexps->h; n; n = n->next) {
1102 10088 : sql_exp *le = n->data, *re, *fnd = NULL;
1103 :
1104 10088 : if (le->type != e_cmp || le->flag == cmp_or || is_anti(le) || is_semantics(le) || is_symmetric(le))
1105 598 : continue;
1106 19573 : for (m = rexps->h; !fnd && m; m = m->next) {
1107 10083 : re = m->data;
1108 10083 : if (exps_match_col_exps(le, re))
1109 1535 : fnd = re;
1110 : }
1111 9490 : if (fnd && (is_anti(fnd) || is_semantics(fnd)))
1112 48 : 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 1487 : if (fnd) {
1121 1487 : re = fnd;
1122 1487 : fnd = NULL;
1123 1487 : if (is_anti(le) || is_anti(re) || is_symmetric(re))
1124 0 : continue;
1125 1924 : 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 1193 : } 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 1202 : } 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 727 : } 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 497 : } 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 13545 : 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 394079 : rel_merge_select_rse(visitor *v, sql_rel *rel)
1194 : {
1195 : /* only execute once per select */
1196 394079 : if ((is_select(rel->op) || is_join(rel->op) || is_semi(rel->op)) && rel->exps && !is_rel_merge_select_rse_used(rel->used)) {
1197 139335 : node *n, *o;
1198 139335 : list *nexps = new_exp_list(v->sql->sa);
1199 :
1200 298185 : for (n=rel->exps->h; n; n = n->next) {
1201 158850 : sql_exp *e = n->data;
1202 :
1203 166464 : if (e->type == e_cmp && e->flag == cmp_or && !is_anti(e) && !is_semantics(e)) {
1204 : /* possibly merge related expressions */
1205 7614 : bool merged = false;
1206 :
1207 7614 : list *ps = exps_merge_select_rse(v->sql, e->l, e->r, &merged);
1208 8197 : for (o = ps->h; o; o = o->next)
1209 583 : append(nexps, o->data);
1210 7614 : if (merged)
1211 87 : v->changes++;
1212 : else
1213 7527 : append(nexps, e);
1214 : } else {
1215 151236 : append(nexps, e);
1216 : }
1217 : }
1218 139335 : rel->exps = nexps;
1219 139335 : rel->used |= rel_merge_select_rse_used;
1220 : }
1221 394079 : return rel;
1222 : }
1223 :
1224 : /* pack optimizers into a single function call to avoid iterations in the AST */
1225 : static sql_rel *
1226 3604739 : rel_optimize_select_and_joins_bottomup_(visitor *v, sql_rel *rel)
1227 : {
1228 3604739 : if (!rel || (!is_join(rel->op) && !is_semi(rel->op) && !is_select(rel->op)) || list_empty(rel->exps))
1229 2578336 : return rel;
1230 1026403 : uint8_t cycle = *(uint8_t*) v->data;
1231 :
1232 1026403 : rel->exps = exp_merge_range(v, rel, rel->exps);
1233 1026403 : rel = rel_select_cse(v, rel);
1234 1026403 : if (cycle == 1)
1235 394079 : rel = rel_merge_select_rse(v, rel);
1236 1026403 : rel = rewrite_simplify(v, cycle, v->value_based_opt, rel);
1237 1026403 : return rel;
1238 : }
1239 :
1240 : static sql_rel *
1241 124790 : rel_optimize_select_and_joins_bottomup(visitor *v, global_props *gp, sql_rel *rel)
1242 : {
1243 124790 : v->data = &gp->opt_cycle;
1244 124790 : rel = rel_visitor_bottomup(v, rel, &rel_optimize_select_and_joins_bottomup_);
1245 124790 : v->data = gp;
1246 124790 : return rel;
1247 : }
1248 :
1249 : run_optimizer
1250 621676 : bind_optimize_select_and_joins_bottomup(visitor *v, global_props *gp)
1251 : {
1252 621676 : int flag = v->sql->sql_optimizer;
1253 621474 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right] ||
1254 538892 : gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti] ||
1255 1243150 : 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 3405530 : 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 3405530 : if ((is_innerjoin(rel->op) || is_left(rel->op) || is_right(rel->op) /*|| is_semi(rel->op)*/) && !list_empty(rel->exps)) {
1265 479817 : int left = is_innerjoin(rel->op) || is_right(rel->op) || rel->op == op_semi;
1266 479817 : int right = is_innerjoin(rel->op) || is_left(rel->op) || is_semi(rel->op);
1267 479817 : sql_rel *jl = rel->l, *ojl = jl, *jr = rel->r, *ojr = jr;
1268 :
1269 479817 : set_processed(jl);
1270 479817 : set_processed(jr);
1271 1032705 : for (node *n = rel->exps->h; n;) {
1272 552888 : node *next = n->next;
1273 552888 : sql_exp *e = n->data;
1274 :
1275 552888 : if (left && rel_rebind_exp(v->sql, jl, e) && !is_any(e)) { /* select expressions on left */
1276 1327 : if (!is_select(jl->op) || rel_is_ref(jl))
1277 1317 : rel->l = jl = rel_select(v->sql->sa, jl, NULL);
1278 1327 : rel_select_add_exp(v->sql->sa, jl, e);
1279 1327 : list_remove_node(rel->exps, NULL, n);
1280 1327 : v->changes++;
1281 551561 : } else if (right && rel_rebind_exp(v->sql, jr, e) && !is_any(e)) { /* select expressions on right */
1282 41 : if (!is_select(jr->op) || rel_is_ref(jr))
1283 39 : rel->r = jr = rel_select(v->sql->sa, jr, NULL);
1284 41 : rel_select_add_exp(v->sql->sa, jr, e);
1285 41 : list_remove_node(rel->exps, NULL, n);
1286 41 : v->changes++;
1287 : }
1288 : n = next;
1289 : }
1290 479817 : if (ojl != jl)
1291 1317 : set_processed(jl);
1292 479817 : if (ojr != jr)
1293 39 : set_processed(jr);
1294 : }
1295 3405530 : return rel;
1296 : }
1297 :
1298 : static inline bool
1299 3405530 : is_non_trivial_select_applied_to_outer_join(sql_rel *rel)
1300 : {
1301 3405530 : 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 5564 : replace_column_references_with_nulls_1(mvc *sql, sql_rel *inner_join_side, list* exps) {
1311 5564 : if (list_empty(exps))
1312 : return;
1313 14127 : for(node* n = exps->h; n; n=n->next) {
1314 8563 : sql_exp* e = n->data;
1315 8563 : replace_column_references_with_nulls_2(sql, inner_join_side, e);
1316 : }
1317 : }
1318 :
1319 : static void
1320 27660 : replace_column_references_with_nulls_2(mvc *sql, sql_rel *inner_join_side, sql_exp* e) {
1321 35305 : if (e == NULL) {
1322 : return;
1323 : }
1324 :
1325 29254 : switch (e->type) {
1326 8727 : case e_column:
1327 8727 : if (rel_find_exp_and_corresponding_rel(inner_join_side, e, true, NULL, NULL)) {
1328 2366 : e->type = e_atom;
1329 2366 : e->l = atom_general(sql->sa, &e->tpe, NULL, 0);
1330 2366 : e->r = e->f = NULL;
1331 : }
1332 : break;
1333 9127 : case e_cmp:
1334 9127 : switch (e->flag) {
1335 6481 : 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 6481 : sql_exp* l = e->l;
1343 6481 : sql_exp* r = e->r;
1344 6481 : sql_exp* f = e->f;
1345 :
1346 6481 : replace_column_references_with_nulls_2(sql, inner_join_side, l);
1347 6481 : replace_column_references_with_nulls_2(sql, inner_join_side, r);
1348 6481 : replace_column_references_with_nulls_2(sql, inner_join_side, f);
1349 6481 : break;
1350 : }
1351 1909 : case cmp_filter:
1352 : case cmp_or:
1353 : {
1354 1909 : list* l = e->l;
1355 1909 : list* r = e->r;
1356 1909 : replace_column_references_with_nulls_1(sql, inner_join_side, l);
1357 1909 : replace_column_references_with_nulls_1(sql, inner_join_side, r);
1358 1909 : break;
1359 : }
1360 737 : case cmp_in:
1361 : case cmp_notin:
1362 : {
1363 737 : sql_exp* l = e->l;
1364 737 : list* r = e->r;
1365 737 : replace_column_references_with_nulls_2(sql, inner_join_side, l);
1366 737 : replace_column_references_with_nulls_1(sql, inner_join_side, r);
1367 737 : break;
1368 : }
1369 : default:
1370 : break;
1371 : }
1372 : break;
1373 1009 : case e_func:
1374 : {
1375 1009 : list* l = e->l;
1376 1009 : replace_column_references_with_nulls_1(sql, inner_join_side, l);
1377 1009 : break;
1378 : }
1379 1164 : case e_convert:
1380 : {
1381 1164 : sql_exp* l = e->l;
1382 1164 : replace_column_references_with_nulls_2(sql, inner_join_side, l);
1383 1164 : break;
1384 : }
1385 : default:
1386 : break;
1387 : }
1388 : }
1389 :
1390 : static sql_rel *
1391 4782 : 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 4782 : if (is_select(inner_join_side->op) && inner_join_side->l)
1395 4782 : inner_join_side = inner_join_side->l;
1396 :
1397 4782 : list* select_predicates = exps_copy(v->sql, sel->exps);
1398 :
1399 10089 : for(node* n = select_predicates->h; n; n=n->next) {
1400 5398 : sql_exp* e = n->data;
1401 5398 : replace_column_references_with_nulls_2(v->sql, inner_join_side, e);
1402 :
1403 5398 : if (exp_is_false(e)) {
1404 91 : join->op = new_type;
1405 91 : v->changes++;
1406 91 : break;
1407 : }
1408 : }
1409 :
1410 4782 : return sel;
1411 : }
1412 :
1413 : static inline sql_rel *
1414 3405530 : rel_out2inner(visitor *v, sql_rel *rel) {
1415 :
1416 3405530 : if (!is_non_trivial_select_applied_to_outer_join(rel)) {
1417 : // Nothing to do here.
1418 : return rel;
1419 : }
1420 :
1421 4760 : sql_rel* join = (sql_rel*) rel->l;
1422 :
1423 4760 : 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 4760 : sql_rel* inner_join_side;
1434 4760 : if (is_left(join->op)) {
1435 4712 : inner_join_side = join->r;
1436 4712 : 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 4141 : exps_uses_any(list *exps, list *l)
1458 : {
1459 4141 : bool uses_any = false;
1460 :
1461 4141 : if (list_empty(exps) || list_empty(l))
1462 12 : return false;
1463 8264 : for (node *n = l->h; n && !uses_any; n = n->next) {
1464 4135 : sql_exp *e = n->data;
1465 4135 : 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 700824 : find_projection_for_join2semi(sql_rel *rel)
1620 : {
1621 700824 : 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 371824 : if (rel->card < CARD_AGGR) /* const or groupby without group by exps */
1623 : return ALL_VALUES_DISTINCT;
1624 370695 : if (list_length(rel->exps) == 1) {
1625 6455 : 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 6455 : if (e->type == e_column) {
1628 6425 : sql_rel *res = NULL;
1629 6425 : sql_exp *found = NULL;
1630 6425 : 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 6425 : 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 9209 : return ALL_VALUES_DISTINCT;
1635 2936 : if (is_unique(e))
1636 2230 : return has_nil(e) ? MAY_HAVE_DUPLICATE_NULLS : ALL_VALUES_DISTINCT;
1637 :
1638 706 : if ((is_simple_project(rel->op) || is_groupby(rel->op) || is_inter(rel->op) || is_except(rel->op)) &&
1639 128 : (found = rel_find_exp_and_corresponding_rel(rel->l, e, false, &res, &underjoin)) && !underjoin) { /* grouping column on inner relation */
1640 112 : if (need_distinct(res) && list_length(res->exps) == 1)
1641 : return ALL_VALUES_DISTINCT;
1642 112 : if (is_unique(found))
1643 0 : return has_nil(e) ? MAY_HAVE_DUPLICATE_NULLS : ALL_VALUES_DISTINCT;
1644 112 : 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 2227871 : find_candidate_join2semi(visitor *v, sql_rel *rel, bool *swap)
1663 : {
1664 : /* generalize possibility : we need the visitor 'step' here */
1665 2228397 : if (rel_is_ref(rel)) /* if the join has multiple references, it's dangerous to convert it into a semijoin */
1666 : return NULL;
1667 2112637 : if (rel->op == op_join && !list_empty(rel->exps) && list_empty(rel->attr)) {
1668 352534 : sql_rel *l = rel->l, *r = rel->r;
1669 352534 : int foundr = NO_PROJECTION_FOUND, foundl = NO_PROJECTION_FOUND, found = NO_PROJECTION_FOUND;
1670 352534 : bool ok = false;
1671 :
1672 352534 : foundr = find_projection_for_join2semi(r);
1673 352534 : if (foundr < ALL_VALUES_DISTINCT)
1674 348290 : foundl = find_projection_for_join2semi(l);
1675 352534 : if (foundr && foundr > foundl) {
1676 4248 : *swap = false;
1677 4248 : found = foundr;
1678 348286 : } else if (foundl) {
1679 2599 : *swap = true;
1680 2599 : found = foundl;
1681 : }
1682 :
1683 6847 : 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 13698 : for (node *n=rel->exps->h; n && !ok; n = n->next) {
1686 6851 : sql_exp *e = n->data;
1687 :
1688 10506 : 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 4 : (found == ALL_VALUES_DISTINCT || !is_semantics(e) || !has_nil((sql_exp *)e->l) || !has_nil((sql_exp *)e->r));
1690 : }
1691 : }
1692 :
1693 352534 : if (ok)
1694 : return rel;
1695 : }
1696 2109437 : if (is_join(rel->op) || is_semi(rel->op)) {
1697 529938 : sql_rel *c;
1698 :
1699 529938 : if ((c=find_candidate_join2semi(v, rel->l, swap)) != NULL ||
1700 529558 : (c=find_candidate_join2semi(v, rel->r, swap)) != NULL)
1701 401 : if (list_empty(c->attr))
1702 : return c;
1703 : }
1704 2109036 : 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 2494 : subrel_uses_exp_outside_subrel(sql_rel *rel, list *l, sql_rel *c)
1711 : {
1712 2495 : if (rel == c)
1713 : return 0;
1714 : /* for subrel only expect joins (later possibly selects) */
1715 819 : if (is_join(rel->op) || is_semi(rel->op)) {
1716 415 : if (exps_uses_any(rel->exps, l))
1717 : return 1;
1718 812 : if (subrel_uses_exp_outside_subrel(rel->l, l, c) ||
1719 405 : subrel_uses_exp_outside_subrel(rel->r, l, c))
1720 5 : return 1;
1721 : }
1722 806 : 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 3200 : 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 3200 : if (is_simple_project(rel->op) || is_groupby(rel->op) || is_select(rel->op)) {
1732 3200 : if (!list_empty(rel->exps) && exps_uses_any(rel->exps, l))
1733 : return 1;
1734 1682 : if ((is_simple_project(rel->op) || is_groupby(rel->op)) && !list_empty(rel->r) && exps_uses_any(rel->r, l))
1735 : return 1;
1736 1682 : if (rel->l)
1737 1682 : 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 3405530 : rel_join2semijoin(visitor *v, sql_rel *rel)
1746 : {
1747 3405530 : if ((is_simple_project(rel->op) || is_groupby(rel->op)) && rel->l) {
1748 1168375 : bool swap = false;
1749 1168375 : sql_rel *l = rel->l;
1750 1168375 : sql_rel *c = find_candidate_join2semi(v, l, &swap);
1751 :
1752 1168375 : if (c) {
1753 : /* 'p' is a project */
1754 3200 : 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 3200 : if (!rel_uses_exp_outside_subrel(rel, p->exps, c)) {
1758 1674 : c->op = op_semi;
1759 1674 : if (swap) {
1760 518 : sql_rel *tmp = c->r;
1761 518 : c->r = c->l;
1762 518 : c->l = tmp;
1763 : }
1764 1674 : v->changes++;
1765 : }
1766 : }
1767 : }
1768 3405530 : return rel;
1769 : }
1770 :
1771 : static inline sql_rel *
1772 3405530 : rel_push_join_down_outer(visitor *v, sql_rel *rel)
1773 : {
1774 3405530 : if (is_join(rel->op) && !is_outerjoin(rel->op) && !is_single(rel) && !list_empty(rel->exps) && !rel_is_ref(rel)) {
1775 363071 : sql_rel *l = rel->l, *r = rel->r;
1776 :
1777 363071 : if (is_left(r->op) && (is_select(l->op) || (is_join(l->op) && !is_outerjoin(l->op))) && !rel_is_ref(l) &&
1778 884 : !rel_is_ref(r)) {
1779 884 : sql_rel *rl = r->l;
1780 884 : sql_rel *rr = r->r;
1781 884 : if (rel_is_ref(rl) || rel_is_ref(rr))
1782 : return rel;
1783 : /* join exps should only include l and r.l */
1784 884 : list *njexps = sa_list(v->sql->sa);
1785 2016 : for(node *n = rel->exps->h; n; n = n->next) {
1786 1132 : sql_exp *je = n->data;
1787 :
1788 1132 : assert(je->type == e_cmp);
1789 1132 : if (je->f)
1790 : return rel;
1791 1132 : 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 1132 : list_append(njexps, je);
1793 : } else {
1794 0 : return rel;
1795 : }
1796 : }
1797 884 : sql_rel *nl = rel_crossproduct(v->sql->sa, rel_dup(l), rl, rel->op);
1798 884 : r->l = nl;
1799 884 : nl->exps = njexps;
1800 884 : nl->attr = rel->attr;
1801 884 : rel->attr = NULL;
1802 884 : set_processed(nl);
1803 884 : rel_dup(r);
1804 884 : rel_destroy(rel);
1805 884 : rel = r;
1806 884 : v->changes++;
1807 : }
1808 : }
1809 : return rel;
1810 : }
1811 :
1812 : static sql_rel *
1813 3405530 : rel_optimize_joins_(visitor *v, sql_rel *rel)
1814 : {
1815 3405530 : rel = rel_push_join_exps_down(v, rel);
1816 3405530 : rel = rel_out2inner(v, rel);
1817 3405530 : rel = rel_join2semijoin(v, rel);
1818 3405530 : rel = rel_push_join_down_outer(v, rel);
1819 3405530 : return rel;
1820 : }
1821 :
1822 : static sql_rel *
1823 88046 : rel_optimize_joins(visitor *v, global_props *gp, sql_rel *rel)
1824 : {
1825 88046 : (void) gp;
1826 88046 : return rel_visitor_topdown(v, rel, &rel_optimize_joins_);
1827 : }
1828 :
1829 : run_optimizer
1830 621951 : bind_optimize_joins(visitor *v, global_props *gp)
1831 : {
1832 621951 : int flag = v->sql->sql_optimizer;
1833 621729 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
1834 1243680 : || 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 696605 : get_relations(visitor *v, sql_rel *rel, list *rels)
1842 : {
1843 968796 : if (list_empty(rel->attr) && !rel_is_ref(rel) && rel->op == op_join && rel->exps == NULL) {
1844 272191 : sql_rel *l = rel->l;
1845 272191 : sql_rel *r = rel->r;
1846 :
1847 272191 : get_relations(v, l, rels);
1848 272191 : get_relations(v, r, rels);
1849 272191 : rel->l = NULL;
1850 272191 : rel->r = NULL;
1851 272191 : rel_destroy(rel);
1852 : } else {
1853 424414 : rel = rel_join_order_(v, rel);
1854 424414 : append(rels, rel);
1855 : }
1856 696605 : }
1857 :
1858 : static void
1859 186812 : get_inner_relations(mvc *sql, sql_rel *rel, list *rels)
1860 : {
1861 296644 : if (!rel_is_ref(rel) && is_join(rel->op)) {
1862 109832 : sql_rel *l = rel->l;
1863 109832 : sql_rel *r = rel->r;
1864 :
1865 109832 : get_inner_relations(sql, l, rels);
1866 109832 : get_inner_relations(sql, r, rels);
1867 : } else {
1868 186812 : append(rels, rel);
1869 : }
1870 186812 : }
1871 :
1872 : static int
1873 1045246 : exp_count(int *cnt, sql_exp *e)
1874 : {
1875 1045246 : int flag;
1876 1045246 : if (!e)
1877 : return 0;
1878 1045246 : if (find_prop(e->p, PROP_JOINIDX))
1879 3541 : *cnt += 100;
1880 1045246 : if (find_prop(e->p, PROP_HASHCOL))
1881 34181 : *cnt += 100;
1882 1045246 : if (find_prop(e->p, PROP_HASHIDX))
1883 0 : *cnt += 100;
1884 1045246 : switch(e->type) {
1885 386010 : case e_cmp:
1886 386010 : if (!is_complex_exp(e->flag)) {
1887 328089 : exp_count(cnt, e->l);
1888 328089 : exp_count(cnt, e->r);
1889 328089 : if (e->f)
1890 3052 : exp_count(cnt, e->f);
1891 : }
1892 386010 : flag = e->flag;
1893 386010 : switch (flag) {
1894 304260 : case cmp_equal:
1895 304260 : *cnt += 90;
1896 304260 : return 90;
1897 17344 : case cmp_notequal:
1898 17344 : *cnt += 7;
1899 17344 : return 7;
1900 6485 : case cmp_gt:
1901 : case cmp_gte:
1902 : case cmp_lt:
1903 : case cmp_lte:
1904 6485 : *cnt += 6;
1905 6485 : if (e->l) {
1906 6485 : sql_exp *l = e->l;
1907 6485 : sql_subtype *t = exp_subtype(l);
1908 6485 : if (EC_TEMP(t->type->eclass)) /* give preference to temporal ranges */
1909 172 : *cnt += 90;
1910 : }
1911 6485 : 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 52556 : case cmp_in:
1925 : case cmp_notin: {
1926 52556 : list *l = e->r;
1927 52556 : int c = 9 - 10*list_length(l);
1928 52556 : *cnt += c;
1929 52556 : return c;
1930 : }
1931 4657 : case cmp_or: /* prefer or over functions */
1932 4657 : *cnt += 3;
1933 4657 : return 3;
1934 : default:
1935 : return 0;
1936 : }
1937 520427 : case e_column:
1938 520427 : *cnt += 20;
1939 520427 : return 20;
1940 120458 : case e_atom:
1941 120458 : *cnt += 10;
1942 120458 : return 10;
1943 2835 : case e_func:
1944 : /* functions are more expensive, depending on the number of columns involved. */
1945 2835 : if (e->card == CARD_ATOM)
1946 : return 0;
1947 2544 : *cnt -= 5*list_length(e->l);
1948 2544 : return 5*list_length(e->l);
1949 15516 : case e_convert:
1950 : /* functions are more expensive, depending on the number of columns involved. */
1951 15516 : if (e->card == CARD_ATOM)
1952 : return 0;
1953 : /* fall through */
1954 : default:
1955 14860 : *cnt -= 5;
1956 14860 : return -5;
1957 : }
1958 : }
1959 :
1960 : int
1961 262733 : exp_keyvalue(sql_exp *e)
1962 : {
1963 262733 : int cnt = 0;
1964 58345 : exp_count(&cnt, e);
1965 262733 : return cnt;
1966 : }
1967 :
1968 : static sql_exp *
1969 734010 : joinexp_col(sql_exp *e, sql_rel *r)
1970 : {
1971 734010 : if (e->type == e_cmp) {
1972 734010 : if (rel_has_exp(r, e->l, false) >= 0)
1973 392592 : return e->l;
1974 341418 : return e->r;
1975 : }
1976 0 : assert(0);
1977 : return NULL;
1978 : }
1979 :
1980 : static sql_column *
1981 486340 : table_colexp(sql_exp *e, sql_rel *r)
1982 : {
1983 486340 : sql_table *t = r->l;
1984 :
1985 486340 : if (e->type == e_column) {
1986 472508 : const char *name = exp_name(e);
1987 472508 : node *cn;
1988 :
1989 472508 : if (r->exps) { /* use alias */
1990 884082 : for (cn = r->exps->h; cn; cn = cn->next) {
1991 879826 : sql_exp *ce = cn->data;
1992 879826 : if (strcmp(exp_name(ce), name) == 0) {
1993 468252 : name = ce->r;
1994 468252 : break;
1995 : }
1996 : }
1997 : }
1998 1036518 : for (cn = ol_first_node(t->columns); cn; cn = cn->next) {
1999 1032262 : sql_column *c = cn->data;
2000 1032262 : if (strcmp(c->base.name, name) == 0)
2001 468252 : return c;
2002 : }
2003 : }
2004 : return NULL;
2005 : }
2006 :
2007 : static list *
2008 353055 : matching_joins(allocator *sa, list *rels, list *exps, sql_exp *je)
2009 : {
2010 353055 : sql_rel *l, *r;
2011 :
2012 353055 : assert (je->type == e_cmp);
2013 :
2014 353055 : l = find_rel(rels, je->l);
2015 353055 : r = find_rel(rels, je->r);
2016 353055 : if (l && r) {
2017 352917 : list *res;
2018 352917 : list *n_rels = sa_list(sa);
2019 :
2020 352917 : append(n_rels, l);
2021 352917 : append(n_rels, r);
2022 352917 : res = list_select(exps, n_rels, (fcmp) &exp_joins_rels, (fdup)NULL);
2023 352917 : return res;
2024 : }
2025 138 : 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 457247 : find_fk_index(mvc *sql, sql_table *l, list *lcols, sql_table *r, list *rcols)
2037 : {
2038 457247 : sql_trans *tr = sql->session->tr;
2039 :
2040 457247 : if (l->idxs) {
2041 457247 : node *in;
2042 544112 : for (in = ol_first_node(l->idxs); in; in = in->next){
2043 87705 : sql_idx *li = in->data;
2044 87705 : 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 706110 : find_basetable( sql_rel *r)
2061 : {
2062 1056237 : if (!r)
2063 : return NULL;
2064 1048683 : switch(r->op) {
2065 568533 : case op_basetable:
2066 568533 : if (!r->l)
2067 0 : return NULL;
2068 : return r;
2069 350127 : case op_semi:
2070 : case op_anti:
2071 : case op_project:
2072 : case op_select:
2073 : case op_topn:
2074 : case op_sample:
2075 350127 : return find_basetable(r->l);
2076 : default:
2077 : return NULL;
2078 : }
2079 : }
2080 :
2081 : static int
2082 97613 : exps_count(list *exps)
2083 : {
2084 97613 : node *n;
2085 97613 : int cnt = 0;
2086 :
2087 97613 : if (!exps)
2088 : return 0;
2089 220896 : for (n = exps->h; n; n=n->next)
2090 123283 : exp_count(&cnt, n->data);
2091 97613 : return cnt;
2092 : }
2093 :
2094 : static list *
2095 251610 : order_join_expressions(mvc *sql, list *dje, list *rels)
2096 : {
2097 251610 : node *n;
2098 251610 : int cnt = list_length(dje);
2099 :
2100 251610 : if (cnt <= 1)
2101 : return dje;
2102 :
2103 64831 : list *res = sa_list(sql->sa);
2104 64831 : int i, *keys = SA_NEW_ARRAY(sql->ta, int, cnt);
2105 64831 : void **data = SA_NEW_ARRAY(sql->ta, void*, cnt);
2106 :
2107 269219 : for (n = dje->h, i = 0; n; n = n->next, i++) {
2108 204388 : sql_exp *e = n->data;
2109 :
2110 204388 : keys[i] = exp_keyvalue(e);
2111 : /* add some weight for the selections */
2112 204388 : if (e->type == e_cmp && !is_complex_exp(e->flag)) {
2113 204373 : sql_rel *l = find_rel(rels, e->l);
2114 204373 : sql_rel *r = find_rel(rels, e->r);
2115 :
2116 204373 : if (l && is_select(l->op) && l->exps)
2117 52339 : keys[i] += list_length(l->exps)*10 + exps_count(l->exps);
2118 204373 : if (r && is_select(r->op) && r->exps)
2119 45274 : keys[i] += list_length(r->exps)*10 + exps_count(r->exps);
2120 : }
2121 204388 : data[i] = n->data;
2122 : }
2123 : /* sort descending */
2124 64831 : GDKqsort(keys, data, NULL, cnt, sizeof(int), sizeof(void *), TYPE_int, true, true);
2125 334050 : for(i=0; i<cnt; i++) {
2126 204388 : list_append(res, data[i]);
2127 : }
2128 : return res;
2129 : }
2130 :
2131 : static int
2132 235404 : find_join_rels(list **L, list **R, list *exps, list *rels)
2133 : {
2134 235404 : node *n;
2135 :
2136 235404 : *L = sa_list(exps->sa);
2137 235404 : *R = sa_list(exps->sa);
2138 235404 : if (!exps || list_length(exps) <= 1)
2139 : return -1;
2140 287225 : for(n = exps->h; n; n = n->next) {
2141 216794 : sql_exp *e = n->data;
2142 216794 : sql_rel *l = NULL, *r = NULL;
2143 :
2144 216794 : if (!is_complex_exp(e->flag)){
2145 216787 : l = find_rel(rels, e->l);
2146 216787 : r = find_rel(rels, e->r);
2147 : }
2148 216787 : if (l<r) {
2149 140221 : list_append(*L, l);
2150 140221 : list_append(*R, r);
2151 : } else {
2152 76573 : list_append(*L, r);
2153 76573 : list_append(*R, l);
2154 : }
2155 : }
2156 : return 0;
2157 : }
2158 :
2159 : static list *
2160 70431 : distinct_join_exps(list *aje, list *lrels, list *rrels)
2161 : {
2162 70431 : node *n, *m, *o, *p;
2163 70431 : int len = list_length(aje), i, j;
2164 70431 : char *used = SA_ZNEW_ARRAY(aje->sa, char, len);
2165 70431 : list *res = sa_list(aje->sa);
2166 :
2167 70431 : assert(len == list_length(lrels));
2168 287225 : for(n = lrels->h, m = rrels->h, j = 0; n && m;
2169 216794 : n = n->next, m = m->next, j++) {
2170 216794 : if (n->data && m->data)
2171 944595 : for(o = n->next, p = m->next, i = j+1; o && p;
2172 727851 : o = o->next, p = p->next, i++) {
2173 727851 : if (o->data == n->data && p->data == m->data)
2174 29833 : used[i] = 1;
2175 : }
2176 : }
2177 287225 : for (i = 0, n = aje->h; i < len; n = n->next, i++) {
2178 216794 : if (!used[i])
2179 191926 : list_append(res, n->data);
2180 : }
2181 70431 : return res;
2182 : }
2183 :
2184 : static list *
2185 235404 : find_fk( mvc *sql, list *rels, list *exps)
2186 : {
2187 235404 : node *djn;
2188 235404 : list *sdje, *aje, *dje;
2189 235404 : list *lrels, *rrels;
2190 :
2191 : /* first find the distinct join expressions */
2192 235404 : aje = list_select(exps, rels, (fcmp) &exp_is_join, (fdup)NULL);
2193 : /* add left/right relation */
2194 235404 : if (find_join_rels(&lrels, &rrels, aje, rels) < 0)
2195 : dje = aje;
2196 : else
2197 70431 : dje = distinct_join_exps(aje, lrels, rrels);
2198 591959 : for(djn=dje->h; djn; djn = djn->next) {
2199 : /* equal join expressions */
2200 356648 : sql_idx *idx = NULL;
2201 356648 : sql_exp *je = djn->data, *le = je->l, *re = je->r;
2202 :
2203 356648 : if (is_complex_exp(je->flag))
2204 : break;
2205 356555 : if (!find_prop(je->p, PROP_JOINIDX)) {
2206 353055 : int swapped = 0;
2207 353055 : list *aaje = matching_joins(sql->sa, rels, aje, je);
2208 353055 : list *eje = list_select(aaje, (void*)1, (fcmp) &exp_is_eqjoin, (fdup)NULL);
2209 353055 : sql_rel *lr = find_rel(rels, le), *olr = lr;
2210 353055 : sql_rel *rr = find_rel(rels, re), *orr = rr;
2211 353055 : sql_rel *bt = NULL;
2212 353055 : char *iname;
2213 :
2214 353055 : sql_table *l, *r;
2215 353055 : list *lexps = list_map(eje, lr, (fmap) &joinexp_col);
2216 353055 : list *rexps = list_map(eje, rr, (fmap) &joinexp_col);
2217 353055 : list *lcols, *rcols;
2218 :
2219 353055 : lr = find_basetable(lr);
2220 353055 : rr = find_basetable(rr);
2221 353055 : if (!lr || !rr)
2222 230323 : continue;
2223 246831 : l = lr->l;
2224 246831 : r = rr->l;
2225 246831 : lcols = list_map(lexps, lr, (fmap) &table_colexp);
2226 246831 : rcols = list_map(rexps, rr, (fmap) &table_colexp);
2227 246831 : lcols->destroy = NULL;
2228 246831 : rcols->destroy = NULL;
2229 246831 : if (list_length(lcols) != list_length(rcols))
2230 17874 : continue;
2231 :
2232 228957 : idx = find_fk_index(sql, l, lcols, r, rcols);
2233 228957 : if (!idx) {
2234 228290 : idx = find_fk_index(sql, r, rcols, l, lcols);
2235 228290 : swapped = 1;
2236 : }
2237 :
2238 228957 : 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 235404 : sdje = order_join_expressions(sql, dje, rels);
2294 235404 : return sdje;
2295 : }
2296 :
2297 : static int
2298 546034 : rels_find_one_rel( sql_rel **rels, int nr, sql_exp *e)
2299 : {
2300 546034 : int fnd = 0;
2301 :
2302 4395050 : for(int i = 1; i<=nr; i++) {
2303 3849082 : if (rel_has_exp(rels[i], e, false) == 0) {
2304 545793 : 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 152223 : order_joins(visitor *v, list *rels, list *exps)
2342 : {
2343 152223 : sql_rel *top = NULL, *l = NULL, *r = NULL;
2344 152223 : sql_exp *cje;
2345 152223 : node *djn;
2346 152223 : list *sdje, *n_rels = NULL;
2347 152223 : int fnd = 0;
2348 152223 : unsigned int rsingle;
2349 152223 : int direct = 1;
2350 :
2351 : /* find foreign keys and reorder the expressions on reducing quality */
2352 152223 : sdje = find_fk(v->sql, rels, exps);
2353 :
2354 425135 : for(djn = sdje->h; djn; djn = djn->next ) {
2355 272912 : sql_exp *e = djn->data;
2356 272912 : list_remove_data(exps, NULL, e);
2357 : }
2358 152223 : 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 152223 : int nr_exps = list_length(sdje), nr_rels = list_length(rels), ci = 1;
2364 152223 : if (nr_rels > 64) {
2365 1 : direct = 0;
2366 1 : n_rels = sa_list(v->sql->ta);
2367 : }
2368 152223 : sql_rel **rels_a = SA_NEW_ARRAY(v->sql->ta, sql_rel*, nr_rels+1); /* don't use slot 0 */
2369 152223 : rels_a[0] = NULL;
2370 576637 : for (node *n = rels->h; n; n = n->next, ci++) {
2371 424414 : rels_a[ci] = n->data;
2372 : }
2373 152223 : ulng *h = SA_NEW_ARRAY(v->sql->ta, ulng, nr_exps), rel_mask = 0; /* bit field (for > 64 its an imprint) */
2374 152223 : uint16_t *r1 = SA_NEW_ARRAY(v->sql->ta, uint16_t, nr_exps);
2375 152223 : uint16_t *r2 = SA_NEW_ARRAY(v->sql->ta, uint16_t, nr_exps);
2376 : /* change r3 into rest list's */
2377 152223 : int *r3 = SA_NEW_ARRAY(v->sql->ta, int, nr_exps);
2378 :
2379 152223 : ci = 0;
2380 425135 : for (node *n = sdje->h; n; n = n->next, ci++) {
2381 272912 : sql_exp *cje = n->data;
2382 :
2383 272912 : h[ci] = r1[ci] = r2[ci] = 0;
2384 272912 : r3[ci] = 0;
2385 : /* h[ci] = exp_find_rels(cje, rels) */
2386 272912 : if (cje->type != e_cmp || is_complex_exp(cje->flag) || !find_prop(cje->p, PROP_HASHCOL) ||
2387 29 : (cje->type == e_cmp && cje->f == NULL)) {
2388 272912 : cje->tmp = ci;
2389 272912 : r1[ci] = rels_find_one_rel(rels_a, nr_rels, cje->l);
2390 272912 : r2[ci] = rels_find_one_rel(rels_a, nr_rels, cje->r);
2391 272912 : if (r1[ci])
2392 272778 : h[ci] |= ((ulng)1)<<((r1[ci]-1)%64);
2393 272912 : if (r2[ci])
2394 272759 : h[ci] |= ((ulng)1)<<((r2[ci]-1)%64);
2395 272912 : 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 152223 : if (list_length(rels) >= 2 && sdje->h) {
2407 : /* get the first expression */
2408 152213 : cje = sdje->h->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 152213 : if (0 && popcount64(h[cje->tmp]) > 2)
2416 : assert(0);
2417 152213 : if (cje->type != e_cmp || is_complex_exp(cje->flag) || !find_prop(cje->p, PROP_HASHCOL) ||
2418 29 : (cje->type == e_cmp && cje->f == NULL)) {
2419 152213 : l = rels_a[r1[cje->tmp]];
2420 152213 : r = rels_a[r2[cje->tmp]];
2421 152213 : rel_mask |= h[cje->tmp];
2422 : }
2423 152213 : cje->tmp = 0;
2424 :
2425 152213 : if (l && r && l != r)
2426 152082 : list_remove_data(sdje, NULL, cje);
2427 : }
2428 152223 : if (l && r && l != r) {
2429 152082 : list_remove_data(rels, NULL, l);
2430 152082 : list_remove_data(rels, NULL, r);
2431 152082 : if (!direct) {
2432 1 : list_append(n_rels, l);
2433 1 : list_append(n_rels, r);
2434 : }
2435 :
2436 : /* Create a relation between l and r. Since the calling
2437 : functions rewrote the join tree, into a list of expressions
2438 : and a list of (simple) relations, there are no outer joins
2439 : involved, we can simply do a crossproduct here.
2440 : */
2441 152082 : rsingle = is_single(r);
2442 152082 : reset_single(r);
2443 152082 : top = rel_crossproduct(v->sql->sa, l, r, op_join);
2444 152082 : if (rsingle)
2445 5068 : set_single(r);
2446 152082 : rel_join_add_exp(v->sql->sa, top, cje);
2447 :
2448 : /* all other join expressions on these 2 relations */
2449 156389 : for (node *en = exps->h; en; ) {
2450 4307 : node *next = en->next;
2451 4307 : sql_exp *e = en->data;
2452 4307 : if (rel_rebind_exp(v->sql, top, e)) {
2453 4129 : rel_join_add_exp(v->sql->sa, top, e);
2454 4129 : list_remove_data(exps, NULL, e);
2455 : }
2456 : en = next;
2457 : }
2458 : fnd = 1;
2459 : }
2460 : /* build join tree using the ordered list */
2461 269670 : while(list_length(sdje) && fnd) {
2462 117447 : fnd = 0;
2463 : /* find the first expression which could be added */
2464 871471 : for(djn = sdje->h; djn && !fnd && rels->h; djn = (!fnd)?djn->next:NULL) {
2465 377012 : node *en;
2466 377012 : l = r = NULL;
2467 :
2468 377012 : cje = djn->data;
2469 377012 : if ((h[cje->tmp] & rel_mask) > 0) {
2470 117369 : if (rel_mask & (((ulng)1)<<((r1[cje->tmp]-1)%64)))
2471 66159 : l = rels_a[r1[cje->tmp]];
2472 117369 : if (rel_mask & (((ulng)1)<<((r2[cje->tmp]-1)%64)))
2473 51211 : r = rels_a[r2[cje->tmp]];
2474 : }
2475 377012 : if (!direct) { /* check if at least one side in n_rels */
2476 1040 : if (l && !list_find(n_rels, l, NULL))
2477 1007 : l = NULL;
2478 1040 : if (r && !list_find(n_rels, r, NULL))
2479 1 : r = NULL;
2480 : }
2481 :
2482 377012 : if (l && r) {
2483 0 : assert(0);
2484 : /* create a selection on the current */
2485 : rel_join_add_exp(v->sql->sa, top, cje);
2486 : fnd = 1;
2487 377012 : } else if (l || r) {
2488 : /* TODO: handle case for joins which need > 2 relations, ie where the current 'top' of the
2489 : * join tree needs to add more then one relation */
2490 117369 : rel_mask |= h[cje->tmp];
2491 117369 : if (l) {
2492 66159 : r = rels_a[r2[cje->tmp]];
2493 : } else {
2494 51210 : l = r;
2495 51210 : r = rels_a[r1[cje->tmp]];
2496 : }
2497 117369 : if (!r) {
2498 0 : fnd = 1; /* not really, but this bails out */
2499 0 : list_remove_data(sdje, NULL, cje); /* handle later as select */
2500 0 : continue;
2501 : }
2502 :
2503 : /* remove the expression from the lists */
2504 117369 : list_remove_data(sdje, NULL, cje);
2505 :
2506 117369 : list_remove_data(rels, NULL, r);
2507 117369 : if (!direct)
2508 63 : append(n_rels, r);
2509 :
2510 : /* create a join using the current expression */
2511 117369 : rsingle = is_single(r);
2512 117369 : reset_single(r);
2513 117369 : top = rel_crossproduct(v->sql->sa, top, r, op_join);
2514 117369 : if (rsingle)
2515 0 : set_single(r);
2516 117369 : rel_join_add_exp(v->sql->sa, top, cje);
2517 :
2518 : /* all join expressions on these tables */
2519 117776 : for (en = exps->h; en; ) {
2520 407 : node *next = en->next;
2521 407 : sql_exp *e = en->data;
2522 407 : if (rel_rebind_exp(v->sql, top, e)) {
2523 176 : rel_join_add_exp(v->sql->sa, top, e);
2524 176 : list_remove_data(exps, NULL, e);
2525 : }
2526 : en = next;
2527 : }
2528 : /* Remove other joins on the current 'n_rels'
2529 : set in the distinct list too */
2530 690661 : for (en = sdje->h; en; ) {
2531 573292 : node *next = en->next;
2532 573292 : sql_exp *e = en->data;
2533 573292 : if ((direct && ((e->flag <= cmp_notequal && (h[e->tmp] & rel_mask) == h[e->tmp]) || (e->flag > cmp_notequal && rel_rebind_exp(v->sql, top, e)))) ||
2534 1953 : (!direct && rel_rebind_exp(v->sql, top, e))) {
2535 3241 : rel_join_add_exp(v->sql->sa, top, e);
2536 3241 : list_remove_data(sdje, NULL, en->data);
2537 : }
2538 : en = next;
2539 : }
2540 : fnd = 1;
2541 : }
2542 : }
2543 : }
2544 152223 : if (list_length(rels)) { /* more relations */
2545 1169 : node *n;
2546 4050 : for(n=rels->h; n; n = n->next) {
2547 2881 : sql_rel *nr = n->data;
2548 :
2549 2881 : if (top) {
2550 2740 : rsingle = is_single(nr);
2551 2740 : reset_single(nr);
2552 2740 : top = rel_crossproduct(v->sql->sa, top, nr, op_join);
2553 2740 : if (rsingle)
2554 0 : set_single(nr);
2555 : } else
2556 : top = nr;
2557 : }
2558 : }
2559 152223 : if (list_length(sdje)) {
2560 209 : if (list_empty(exps))
2561 : exps = sdje;
2562 : else
2563 0 : exps = list_merge(exps, sdje, (fdup)NULL);
2564 : }
2565 152223 : if (list_length(exps)) { /* more expressions (add selects) */
2566 221 : top = rel_select(v->sql->sa, top, NULL);
2567 453 : for(node *n=exps->h; n; n = n->next) {
2568 232 : sql_exp *e = n->data;
2569 :
2570 232 : if (exp_is_join_exp(e) == 0) {
2571 220 : sql_rel *nr = NULL;
2572 220 : if (is_theta_exp(e->flag)) {
2573 144 : nr = rel_push_join(v->sql, top->l, e->l, e->r, e->f, e, 0);
2574 76 : } else if (e->flag == cmp_filter || e->flag == cmp_or) {
2575 76 : sql_exp *l = exps_find_one_multi_exp(e->l), *r = exps_find_one_multi_exp(e->r);
2576 76 : if (l && r)
2577 74 : nr = rel_push_join(v->sql, top->l, l, r, NULL, e, 0);
2578 : }
2579 218 : if (!nr)
2580 2 : rel_join_add_exp(v->sql->sa, top->l, e);
2581 : } else
2582 12 : rel_select_add_exp(v->sql->sa, top, e);
2583 : }
2584 221 : if (list_empty(top->exps)) { /* empty select */
2585 209 : sql_rel *l = top->l;
2586 209 : top->l = NULL;
2587 209 : rel_destroy(top);
2588 209 : top = l;
2589 : }
2590 : }
2591 : return top;
2592 : }
2593 :
2594 : static int
2595 424414 : rel_neg_in_size(sql_rel *r)
2596 : {
2597 424414 : if ((is_union(r->op) /*|| is_munion(r->op)*/) && r->nrcols == 0)
2598 0 : return -1 + rel_neg_in_size(r->l);
2599 424414 : if (is_project(r->op) && r->nrcols == 0)
2600 0 : return -1;
2601 : return 0;
2602 : }
2603 :
2604 424414 : static void _rel_destroy(void *dummy, sql_rel *rel)
2605 : {
2606 424414 : (void)dummy;
2607 424414 : rel_destroy(rel);
2608 424414 : }
2609 :
2610 : static list *
2611 152223 : push_in_join_down(mvc *sql, list *rels, list *exps)
2612 : {
2613 152223 : node *n;
2614 152223 : int restart = 1;
2615 152223 : list *nrels;
2616 :
2617 : /* we should sort these first, ie small in's before large one's */
2618 152223 : nrels = list_sort(rels, (fkeyvalue)&rel_neg_in_size, (fdup)&rel_dup);
2619 :
2620 : /* we need to cleanup, the new refs ! */
2621 152223 : rels->destroy = (fdestroy)_rel_destroy;
2622 152223 : list_destroy(rels);
2623 152223 : rels = nrels;
2624 :
2625 : /* one of the rels should be a op_union with nrcols == 0 */
2626 456669 : while (restart) {
2627 576637 : for (n = rels->h; n; n = n->next) {
2628 424414 : sql_rel *r = n->data;
2629 :
2630 424414 : restart = 0;
2631 424414 : if (is_project(r->op) && r->nrcols == 0) {
2632 : /* next step find expression on this relation */
2633 0 : node *m;
2634 0 : sql_rel *l = NULL;
2635 0 : sql_exp *je = NULL;
2636 :
2637 0 : for(m = exps->h; !je && m; m = m->next) {
2638 0 : sql_exp *e = m->data;
2639 :
2640 0 : if (e->type == e_cmp && e->flag == cmp_equal) {
2641 : /* in values are on
2642 : the right of the join */
2643 0 : if (rel_has_exp(r, e->r, false) >= 0)
2644 0 : je = e;
2645 : }
2646 : }
2647 : /* with this expression find other relation */
2648 0 : if (je && (l = find_rel(rels, je->l)) != NULL) {
2649 0 : unsigned int rsingle = is_single(r);
2650 0 : reset_single(r);
2651 0 : sql_rel *nr = rel_crossproduct(sql->sa, l, r, op_join);
2652 0 : if (rsingle)
2653 0 : set_single(r);
2654 0 : rel_join_add_exp(sql->sa, nr, je);
2655 0 : list_append(rels, nr);
2656 0 : list_remove_data(rels, NULL, l);
2657 0 : list_remove_data(rels, NULL, r);
2658 0 : list_remove_data(exps, NULL, je);
2659 0 : restart = 1;
2660 0 : break;
2661 : }
2662 :
2663 : }
2664 : }
2665 : }
2666 152223 : return rels;
2667 : }
2668 :
2669 : static list *
2670 724992 : push_up_join_exps( mvc *sql, sql_rel *rel)
2671 : {
2672 724992 : if (rel_is_ref(rel))
2673 : return NULL;
2674 :
2675 684642 : switch(rel->op) {
2676 284379 : case op_join: {
2677 284379 : sql_rel *rl = rel->l;
2678 284379 : sql_rel *rr = rel->r;
2679 284379 : list *l, *r;
2680 :
2681 284379 : if (rel_is_ref(rl) && rel_is_ref(rr)) {
2682 0 : l = rel->exps;
2683 0 : rel->exps = NULL;
2684 0 : return l;
2685 : }
2686 284379 : l = push_up_join_exps(sql, rl);
2687 284379 : r = push_up_join_exps(sql, rr);
2688 284379 : if (l && r) {
2689 34 : l = list_merge(l, r, (fdup)NULL);
2690 34 : r = NULL;
2691 284345 : } else if (!l) {
2692 173007 : l = r;
2693 173007 : r = NULL;
2694 : }
2695 284379 : if (rel->exps) {
2696 253123 : if (l && !r)
2697 100843 : r = l;
2698 253123 : l = list_merge(rel->exps, r, (fdup)NULL);
2699 : }
2700 284379 : rel->exps = NULL;
2701 284379 : return l;
2702 : }
2703 : default:
2704 : return NULL;
2705 : }
2706 : }
2707 :
2708 : static sql_rel *
2709 281246 : reorder_join(visitor *v, sql_rel *rel)
2710 : {
2711 281246 : list *exps, *rels;
2712 :
2713 281246 : if (is_innerjoin(rel->op) && !is_single(rel) && !rel_is_ref(rel) && list_empty(rel->attr)) {
2714 173065 : if (list_empty(rel->exps)) {
2715 21642 : sql_rel *l = rel->l, *r = rel->r;
2716 21642 : if (!is_innerjoin(l->op) && !is_innerjoin(r->op))
2717 : return rel;
2718 : }
2719 156234 : rel->exps = push_up_join_exps(v->sql, rel);
2720 : }
2721 :
2722 264415 : if (!is_innerjoin(rel->op) || is_single(rel) || rel_is_ref(rel) || list_empty(rel->exps) || !list_empty(rel->attr)) {
2723 112192 : if (!list_empty(rel->exps)) { /* cannot add join idxs to cross products */
2724 76980 : exps = rel->exps;
2725 76980 : rel->exps = NULL; /* should be all crosstables by now */
2726 76980 : rels = sa_list(v->sql->ta);
2727 : /* try to use an join index also for outer joins */
2728 76980 : get_inner_relations(v->sql, rel, rels);
2729 76980 : int cnt = list_length(exps);
2730 76980 : rel->exps = find_fk(v->sql, rels, exps);
2731 76980 : if (list_length(rel->exps) != cnt)
2732 16206 : rel->exps = order_join_expressions(v->sql, exps, rels);
2733 : }
2734 112192 : rel->l = rel_join_order_(v, rel->l);
2735 112192 : rel->r = rel_join_order_(v, rel->r);
2736 : } else {
2737 152223 : exps = rel->exps;
2738 152223 : rel->exps = NULL; /* should be all crosstables by now */
2739 152223 : rels = sa_list(v->sql->ta);
2740 152223 : get_relations(v, rel, rels);
2741 152223 : if (list_length(rels) > 1) {
2742 152223 : rels = push_in_join_down(v->sql, rels, exps);
2743 152223 : rel = order_joins(v, rels, exps);
2744 : } else {
2745 0 : rel->exps = exps;
2746 : }
2747 : }
2748 : return rel;
2749 : }
2750 :
2751 : static sql_rel *
2752 2382717 : rel_join_order_(visitor *v, sql_rel *rel)
2753 : {
2754 2382717 : if (!rel)
2755 : return rel;
2756 :
2757 2367265 : switch (rel->op) {
2758 : case op_basetable:
2759 : break;
2760 3808 : case op_table:
2761 3808 : if (IS_TABLE_PROD_FUNC(rel->flag) || rel->flag == TABLE_FROM_RELATION)
2762 3808 : rel->l = rel_join_order_(v, rel->l);
2763 : break;
2764 : case op_join:
2765 : case op_left:
2766 : case op_right:
2767 : case op_full:
2768 : break;
2769 :
2770 11340 : case op_semi:
2771 : case op_anti:
2772 :
2773 : case op_union:
2774 : case op_inter:
2775 : case op_except:
2776 : case op_merge:
2777 11340 : rel->l = rel_join_order_(v, rel->l);
2778 11340 : rel->r = rel_join_order_(v, rel->r);
2779 11340 : break;
2780 115269 : case op_munion:
2781 115269 : assert(rel->l);
2782 465591 : for (node *n = ((list*)rel->l)->h; n; n = n->next)
2783 350322 : n->data = rel_join_order_(v, n->data);
2784 : break;
2785 1264680 : case op_project:
2786 : case op_select:
2787 : case op_groupby:
2788 : case op_topn:
2789 : case op_sample:
2790 1264680 : rel->l = rel_join_order_(v, rel->l);
2791 1264680 : break;
2792 52 : case op_ddl:
2793 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) {
2794 0 : rel->l = rel_join_order_(v, rel->l);
2795 : } else if (rel->flag == ddl_list || rel->flag == ddl_exception) {
2796 52 : rel->l = rel_join_order_(v, rel->l);
2797 52 : rel->r = rel_join_order_(v, rel->r);
2798 : }
2799 : break;
2800 11142 : case op_insert:
2801 : case op_update:
2802 : case op_delete:
2803 11142 : rel->r = rel_join_order_(v, rel->r);
2804 11142 : break;
2805 : case op_truncate:
2806 : break;
2807 : }
2808 2367265 : if (is_join(rel->op))
2809 281246 : rel = reorder_join(v, rel);
2810 : return rel;
2811 : }
2812 :
2813 : static sql_rel *
2814 81183 : rel_join_order(visitor *v, global_props *gp, sql_rel *rel)
2815 : {
2816 81183 : (void) gp;
2817 81183 : sql_rel *r = rel_join_order_(v, rel);
2818 81183 : sa_reset(v->sql->ta);
2819 81183 : return r;
2820 : }
2821 :
2822 : run_optimizer
2823 621816 : bind_join_order(visitor *v, global_props *gp)
2824 : {
2825 621816 : int flag = v->sql->sql_optimizer;
2826 621620 : return gp->opt_level == 1 && gp->opt_cycle < 10 && !gp->cnt[op_update] && (gp->cnt[op_join] || gp->cnt[op_left] ||
2827 1237382 : gp->cnt[op_right] || gp->cnt[op_full]) && (flag & join_order) ? rel_join_order : NULL;
2828 : }
2829 :
2830 : /* this join order is to be done once after statistics are gathered */
2831 : run_optimizer
2832 715129 : bind_join_order2(visitor *v, global_props *gp)
2833 : {
2834 : /*int flag = v->sql->sql_optimizer;
2835 : return gp->opt_level == 1 && !gp->has_special_modify && !gp->cnt[op_update] && (gp->cnt[op_join] || gp->cnt[op_left] ||
2836 : gp->cnt[op_right] || gp->cnt[op_full]) && (flag & join_order) ? rel_join_order : NULL;*/
2837 : /* TODO we have to propagate count statistics here */
2838 715129 : (void) v;
2839 715129 : (void) gp;
2840 715129 : return NULL;
2841 : }
2842 :
2843 :
2844 : static int
2845 13623 : is_identity_of(sql_exp *e, sql_rel *l)
2846 : {
2847 13623 : if (e->type != e_cmp)
2848 : return 0;
2849 13596 : if (!is_identity(e->l, l) || !is_identity(e->r, l) || (e->f && !is_identity(e->f, l)))
2850 13596 : return 0;
2851 : return 1;
2852 : }
2853 :
2854 : static inline sql_rel *
2855 17732 : rel_rewrite_semijoin(visitor *v, sql_rel *rel)
2856 : {
2857 17732 : assert(is_semi(rel->op));
2858 : {
2859 17732 : sql_rel *l = rel->l;
2860 17732 : sql_rel *r = rel->r;
2861 17732 : sql_rel *rl = (r->l)?r->l:NULL;
2862 17732 : int on_identity = 1;
2863 :
2864 17732 : if (!rel->exps || list_length(rel->exps) != 1 || !is_identity_of(rel->exps->h->data, l))
2865 : on_identity = 0;
2866 :
2867 : /* rewrite {semi,anti}join (A, join(A,B)) into {semi,anti}join (A,B)
2868 : * and {semi,anti}join (A, join(B,A)) into {semi,anti}join (A,B)
2869 : * Where the semi/anti join is done using the identity */
2870 0 : if (on_identity && l->ref.refcnt == 2 && ((is_join(r->op) && (l == r->l || l == r->r)) ||
2871 0 : (is_project(r->op) && rl && is_join(rl->op) && (l == rl->l || l == rl->r)))){
2872 0 : sql_rel *or = r;
2873 :
2874 0 : if (is_project(r->op))
2875 0 : r = rl;
2876 :
2877 0 : if (l == r->r)
2878 0 : rel->r = rel_dup(r->l);
2879 : else
2880 0 : rel->r = rel_dup(r->r);
2881 :
2882 0 : rel->exps = r->exps;
2883 0 : r->exps = NULL;
2884 0 : rel->attr = r->attr;
2885 0 : r->attr = NULL;
2886 0 : rel_destroy(or);
2887 0 : v->changes++;
2888 : }
2889 : }
2890 : {
2891 17732 : sql_rel *l = rel->l, *rl = NULL;
2892 17732 : sql_rel *r = rel->r, *or = r;
2893 :
2894 17732 : if (r)
2895 17732 : rl = r->l;
2896 17732 : if (r && is_project(r->op)) {
2897 14656 : r = rl;
2898 14656 : if (r)
2899 14441 : rl = r->l;
2900 : }
2901 :
2902 : /* More general case is (join reduction)
2903 : {semi,anti}join (A, join(A,B) [A.c1 == B.c1]) [ A.c1 == B.c1 ]
2904 : into {semi,anti}join (A,B) [ A.c1 == B.c1 ]
2905 :
2906 : for semijoin also A.c1 == B.k1 ] [ A.c1 == B.k2 ] could be rewritten
2907 : */
2908 17732 : if (l && r && rl &&
2909 16425 : is_basetable(l->op) && is_basetable(rl->op) &&
2910 3902 : is_join(r->op) && l->l == rl->l)
2911 : {
2912 26 : node *n, *m;
2913 26 : list *exps;
2914 :
2915 51 : if (!rel->exps || !r->exps ||
2916 25 : list_length(rel->exps) != list_length(r->exps))
2917 1 : return rel;
2918 25 : exps = new_exp_list(v->sql->sa);
2919 :
2920 : /* are the join conditions equal */
2921 25 : for (n = rel->exps->h, m = r->exps->h;
2922 25 : n && m; n = n->next, m = m->next)
2923 : {
2924 25 : sql_exp *le = NULL, *oe = n->data;
2925 25 : sql_exp *re = NULL, *ne = m->data;
2926 25 : sql_column *cl;
2927 25 : int equal = 0;
2928 :
2929 25 : if (oe->type != e_cmp || ne->type != e_cmp ||
2930 25 : oe->flag != cmp_equal ||
2931 25 : ne->flag != cmp_equal || is_anti(oe) || is_anti(ne))
2932 : return rel;
2933 :
2934 25 : if ((cl = exp_find_column(rel->l, oe->l, -2)) != NULL) {
2935 25 : le = oe->l;
2936 25 : re = oe->r;
2937 0 : } else if ((cl = exp_find_column(rel->l, oe->r, -2)) != NULL) {
2938 0 : le = oe->r;
2939 0 : re = oe->l;
2940 : } else
2941 : return rel;
2942 :
2943 25 : if (exp_find_column(rl, ne->l, -2) == cl) {
2944 25 : sql_exp *e = (or != r)?rel_find_exp(or, re):re;
2945 :
2946 25 : if (e)
2947 24 : equal = exp_match_exp(ne->r, e);
2948 25 : if (!e || !equal)
2949 : return rel;
2950 0 : re = ne->r;
2951 0 : } else if (exp_find_column(rl, ne->r, -2) == cl) {
2952 0 : sql_exp *e = (or != r)?rel_find_exp(or, re):re;
2953 :
2954 0 : if (e)
2955 0 : equal = exp_match_exp(ne->l, e);
2956 0 : if (!e || !equal)
2957 : return rel;
2958 0 : re = ne->l;
2959 : } else
2960 : return rel;
2961 :
2962 0 : ne = exp_compare(v->sql->sa, le, re, cmp_equal);
2963 0 : append(exps, ne);
2964 : }
2965 :
2966 0 : rel->r = rel_dup(r->r);
2967 0 : rel->exps = exps;
2968 0 : rel_destroy(or);
2969 0 : v->changes++;
2970 : }
2971 : }
2972 : return rel;
2973 : }
2974 :
2975 : /*
2976 : * Push semijoins down, pushes the semijoin through a join.
2977 : *
2978 : * semijoin( join(A, B) [ A.x == B.y ], C ) [ A.z == C.c ]
2979 : * ->
2980 : * join( semijoin(A, C) [ A.z == C.c ], B ) [ A.x == B.y ]
2981 : *
2982 : * also push simple expressions of a semijoin down if they only
2983 : * involve the left sided of the semijoin.
2984 : *
2985 : * in some cases the other way is useful, ie push join down
2986 : * semijoin. When the join reduces (ie when there are selects on it).
2987 : *
2988 : * At the moment, we only flag changes by this optimizer on the first level of optimization
2989 : */
2990 : static inline sql_rel *
2991 458436 : rel_push_semijoin_down_or_up(visitor *v, sql_rel *rel)
2992 : {
2993 458436 : uint8_t cycle = *(uint8_t*) v->data;
2994 :
2995 458436 : if (rel->op == op_join && rel->exps && rel->l) {
2996 423191 : sql_rel *l = rel->l, *r = rel->r;
2997 :
2998 423191 : if (is_semi(l->op) && !rel_is_ref(l) && is_select(r->op) && !rel_is_ref(r)) {
2999 22 : rel->l = l->l;
3000 22 : l->l = rel;
3001 22 : if (cycle <= 0)
3002 0 : v->changes++;
3003 22 : return l;
3004 : }
3005 : }
3006 : /* also case with 2 joins */
3007 : /* join ( join ( semijoin(), table), select (table)); */
3008 458414 : if (rel->op == op_join && rel->exps && rel->l) {
3009 423169 : sql_rel *l = rel->l, *r = rel->r;
3010 423169 : sql_rel *ll;
3011 :
3012 423169 : if (is_join(l->op) && !rel_is_ref(l) && is_select(r->op) && !rel_is_ref(r)) {
3013 7917 : ll = l->l;
3014 7917 : if (is_semi(ll->op) && !rel_is_ref(ll)) {
3015 51 : l->l = ll->l;
3016 51 : ll->l = rel;
3017 51 : if (cycle <= 0)
3018 12 : v->changes++;
3019 51 : return ll;
3020 : }
3021 : }
3022 : }
3023 : /* first push down the expressions involving only A */
3024 458363 : if (rel->op == op_semi && rel->exps && rel->l) {
3025 12036 : sql_rel *jl = rel->l, *ojl = jl;
3026 :
3027 12036 : set_processed(jl);
3028 27503 : for (node *n = rel->exps->h; n;) {
3029 15467 : node *next = n->next;
3030 15467 : sql_exp *e = n->data;
3031 :
3032 15467 : if (n != rel->exps->h && e->type == e_cmp && rel_rebind_exp(v->sql, jl, e)) {
3033 14 : if (!is_select(jl->op) || rel_is_ref(jl))
3034 12 : rel->l = jl = rel_select(v->sql->sa, jl, NULL);
3035 14 : rel_select_add_exp(v->sql->sa, jl, e);
3036 14 : list_remove_node(rel->exps, NULL, n);
3037 14 : if (cycle <= 0)
3038 14 : v->changes++;
3039 : }
3040 : n = next;
3041 : }
3042 12036 : if (ojl != jl)
3043 12 : set_processed(jl);
3044 : }
3045 458363 : if (rel->op == op_semi && rel->exps && rel->l) {
3046 12036 : operator_type op = rel->op, lop;
3047 12036 : node *n;
3048 12036 : sql_rel *l = rel->l, *ll = NULL, *lr = NULL;
3049 12036 : sql_rel *r = rel->r;
3050 12036 : list *exps = rel->exps, *nsexps, *njexps, *nsattr, *njattr;
3051 12036 : int left = 1, right = 1;
3052 :
3053 : /* handle project
3054 : if (l->op == op_project && !need_distinct(l))
3055 : l = l->l;
3056 : */
3057 :
3058 12036 : if (!is_join(l->op) || is_full(l->op) || rel_is_ref(l) || is_single(l))
3059 : return rel;
3060 :
3061 1171 : lop = l->op;
3062 1171 : ll = l->l;
3063 1171 : lr = l->r;
3064 :
3065 : /* check which side is used and other exps are atoms or from right of semijoin */
3066 2252 : for(n = exps->h; n; n = n->next) {
3067 1278 : sql_exp *sje = n->data;
3068 :
3069 1278 : if (sje->type != e_cmp || is_complex_exp(sje->flag))
3070 : return rel;
3071 : /* sje->l from ll and sje->r/f from semijoin r ||
3072 : * sje->l from semijoin r and sje->r/f from ll ||
3073 : * sje->l from lr and sje->r/f from semijoin r ||
3074 : * sje->l from semijoin r and sje->r/f from lr */
3075 2492 : if (left &&
3076 2492 : ((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))) ||
3077 1234 : (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)))))
3078 : right = 0;
3079 : else
3080 907 : left = 0;
3081 1709 : if (right &&
3082 1604 : ((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))) ||
3083 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)))))
3084 : left = 0;
3085 : else
3086 : right = 0;
3087 1246 : if (!right && !left)
3088 : return rel;
3089 : }
3090 974 : if (left && is_right(lop))
3091 : return rel;
3092 973 : if (right && is_left(lop))
3093 : return rel;
3094 971 : nsexps = exps_copy(v->sql, rel->exps);
3095 971 : nsattr = exps_copy(v->sql, rel->attr);
3096 971 : njexps = exps_copy(v->sql, l->exps);
3097 971 : njattr = exps_copy(v->sql, l->attr);
3098 971 : if (left)
3099 231 : l = rel_crossproduct(v->sql->sa, rel_dup(ll), rel_dup(r), op);
3100 : else
3101 740 : l = rel_crossproduct(v->sql->sa, rel_dup(lr), rel_dup(r), op);
3102 971 : l->exps = nsexps;
3103 971 : l->attr = nsattr;
3104 971 : set_processed(l);
3105 971 : if (left)
3106 231 : l = rel_crossproduct(v->sql->sa, l, rel_dup(lr), lop);
3107 : else
3108 740 : l = rel_crossproduct(v->sql->sa, rel_dup(ll), l, lop);
3109 971 : l->exps = njexps;
3110 971 : l->attr = njattr;
3111 971 : set_processed(l);
3112 971 : rel_destroy(rel);
3113 971 : rel = l;
3114 971 : if (cycle <= 0)
3115 569 : v->changes++;
3116 : }
3117 : return rel;
3118 : }
3119 :
3120 : /* antijoin(a, union(b,c)) -> antijoin(antijoin(a,b), c) */
3121 : static inline sql_rel *
3122 5655 : rel_rewrite_antijoin(visitor *v, sql_rel *rel)
3123 : {
3124 5655 : sql_rel *l = rel->l;
3125 5655 : sql_rel *r = rel->r;
3126 :
3127 5655 : assert(rel->op == op_anti);
3128 5655 : if (l && !rel_is_ref(l) && r && !rel_is_ref(r) && is_union(r->op) && !is_single(r)) {
3129 0 : sql_rel *rl = rel_dup(r->l), *nl;
3130 0 : sql_rel *rr = rel_dup(r->r);
3131 :
3132 0 : if (!is_project(rl->op))
3133 0 : rl = rel_project(v->sql->sa, rl,
3134 : rel_projections(v->sql, rl, NULL, 1, 1));
3135 0 : if (!is_project(rr->op))
3136 0 : rr = rel_project(v->sql->sa, rr,
3137 : rel_projections(v->sql, rr, NULL, 1, 1));
3138 0 : rel_rename_exps(v->sql, r->exps, rl->exps);
3139 0 : rel_rename_exps(v->sql, r->exps, rr->exps);
3140 :
3141 0 : nl = rel_crossproduct(v->sql->sa, rel->l, rl, op_anti);
3142 0 : nl->exps = exps_copy(v->sql, rel->exps);
3143 0 : nl->attr = exps_copy(v->sql, rel->attr);
3144 0 : set_processed(nl);
3145 0 : rel->l = nl;
3146 0 : rel->r = rr;
3147 0 : rel_destroy(r);
3148 0 : v->changes++;
3149 0 : return rel;
3150 : }
3151 : return rel;
3152 : }
3153 :
3154 : static sql_rel *
3155 3405545 : rel_optimize_semi_and_anti_(visitor *v, sql_rel *rel)
3156 : {
3157 : /* rewrite semijoin (A, join(A,B)) into semijoin (A,B) */
3158 3405545 : if (rel && is_semi(rel->op))
3159 17732 : rel = rel_rewrite_semijoin(v, rel);
3160 : /* push semijoin through join */
3161 3405545 : if (rel && (is_semi(rel->op) || is_innerjoin(rel->op)))
3162 458436 : rel = rel_push_semijoin_down_or_up(v, rel);
3163 : /* antijoin(a, union(b,c)) -> antijoin(antijoin(a,b), c) */
3164 3405545 : if (rel && rel->op == op_anti)
3165 5655 : rel = rel_rewrite_antijoin(v, rel);
3166 3405545 : return rel;
3167 : }
3168 :
3169 : static sql_rel *
3170 88046 : rel_optimize_semi_and_anti(visitor *v, global_props *gp, sql_rel *rel)
3171 : {
3172 88046 : v->data = &gp->opt_cycle;
3173 88046 : rel = rel_visitor_bottomup(v, rel, &rel_optimize_semi_and_anti_);
3174 88046 : v->data = gp;
3175 88046 : return rel;
3176 : }
3177 :
3178 : run_optimizer
3179 621816 : bind_optimize_semi_and_anti(visitor *v, global_props *gp)
3180 : {
3181 : /* Important -> Re-write semijoins after rel_join_order */
3182 621816 : int flag = v->sql->sql_optimizer;
3183 621609 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
3184 1243425 : || gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti]) && (flag & optimize_semi_and_anti) ? rel_optimize_semi_and_anti : NULL;
3185 : }
3186 :
3187 :
3188 : static sql_rel *
3189 1575165 : rel_semijoin_use_fk(visitor *v, sql_rel *rel)
3190 : {
3191 1575165 : if (is_semi(rel->op) && rel->exps) {
3192 6201 : list *exps = rel->exps;
3193 6201 : list *rels = sa_list(v->sql->sa);
3194 :
3195 6201 : rel->exps = NULL;
3196 6201 : append(rels, rel->l);
3197 6201 : append(rels, rel->r);
3198 6201 : (void) find_fk( v->sql, rels, exps);
3199 :
3200 6201 : rel->exps = exps;
3201 : }
3202 1575165 : return rel;
3203 : }
3204 :
3205 : /*
3206 : * Push {semi}joins down, pushes the joins through group by expressions.
3207 : * When the join is on the group by columns, we can push the joins left
3208 : * under the group by. This should only be done, iff the new semijoin would
3209 : * reduce the input table to the groupby. So there should be a reduction
3210 : * (selection) on the table A and this should be propagated to the groupby via
3211 : * for example a primary key.
3212 : *
3213 : * {semi}join( A, groupby( B ) [gbe][aggrs] ) [ gbe == A.x ]
3214 : * ->
3215 : * {semi}join( A, groupby( semijoin(B,A) [gbe == A.x] ) [gbe][aggrs] ) [ gbe == A.x ]
3216 : */
3217 : static inline sql_rel *
3218 1575165 : rel_push_join_down(visitor *v, sql_rel *rel)
3219 : {
3220 1575165 : if (!rel_is_ref(rel) && ((is_left(rel->op) || rel->op == op_join || is_semi(rel->op)) && rel->l && rel->exps)) {
3221 230213 : sql_rel *gb = rel->r, *ogb = gb, *l = NULL, *rell = rel->l;
3222 :
3223 230213 : if (is_simple_project(gb->op) && !rel_is_ref(gb))
3224 44990 : gb = gb->l;
3225 :
3226 230213 : if (rel_is_ref(rell) || !gb || rel_is_ref(gb))
3227 : return rel;
3228 :
3229 220733 : if (is_groupby(gb->op) && gb->r && list_length(gb->r)) {
3230 172 : list *exps = rel->exps, *jes = new_exp_list(v->sql->sa), *gbes = gb->r;
3231 172 : node *n, *m;
3232 : /* find out if all group by expressions are used in the join */
3233 177 : for(n = gbes->h; n; n = n->next) {
3234 172 : sql_exp *gbe = n->data;
3235 172 : int fnd = 0;
3236 172 : const char *rname = NULL, *name = NULL;
3237 :
3238 : /* project in between, ie find alias */
3239 : /* first find expression in expression list */
3240 172 : gbe = exps_uses_exp( gb->exps, gbe);
3241 172 : if (!gbe)
3242 0 : continue;
3243 172 : if (ogb != gb)
3244 150 : gbe = exps_uses_exp( ogb->exps, gbe);
3245 172 : if (gbe) {
3246 132 : rname = exp_find_rel_name(gbe);
3247 132 : name = exp_name(gbe);
3248 : }
3249 :
3250 132 : if (!name)
3251 40 : return rel;
3252 :
3253 335 : for (m = exps->h; m && !fnd; m = m->next) {
3254 203 : sql_exp *je = m->data;
3255 :
3256 203 : if (je->card >= CARD_ATOM && je->type == e_cmp &&
3257 203 : !is_complex_exp(je->flag)) {
3258 : /* expect right expression to match */
3259 203 : sql_exp *r = je->r;
3260 :
3261 203 : if (r == 0 || r->type != e_column)
3262 7 : continue;
3263 196 : if (r->l && rname && strcmp(r->l, rname) == 0 && strcmp(r->r, name)==0) {
3264 : fnd = 1;
3265 80 : } else if (!r->l && !rname && strcmp(r->r, name)==0) {
3266 : fnd = 1;
3267 : }
3268 : if (fnd) {
3269 116 : sql_exp *le = je->l;
3270 116 : sql_exp *re = exp_push_down_prj(v->sql, r, gb, gb->l);
3271 116 : if (!re || (list_length(jes) == 0 && !find_prop(le->p, PROP_HASHCOL))) {
3272 : fnd = 0;
3273 : } else {
3274 5 : int anti = is_anti(je), semantics = is_semantics(je);
3275 :
3276 5 : je = exp_compare(v->sql->sa, le, re, je->flag);
3277 5 : if (anti) set_anti(je);
3278 5 : if (semantics) set_semantics(je);
3279 5 : list_append(jes, je);
3280 : }
3281 : }
3282 : }
3283 : }
3284 132 : if (!fnd)
3285 : return rel;
3286 : }
3287 5 : l = rel_dup(rel->l);
3288 :
3289 : /* push join's left side (as semijoin) down group by */
3290 5 : l = gb->l = rel_crossproduct(v->sql->sa, gb->l, l, op_semi);
3291 5 : l->exps = jes;
3292 5 : set_processed(l);
3293 5 : v->changes++;
3294 5 : return rel;
3295 : }
3296 : }
3297 : return rel;
3298 : }
3299 :
3300 : static bool
3301 728 : check_projection_on_foreignside(sql_rel *r, list *pexps, int fk_left)
3302 : {
3303 : /* projection columns from the foreign side */
3304 728 : if (list_empty(pexps))
3305 : return true;
3306 3156 : for (node *n = pexps->h; n; n = n->next) {
3307 3091 : sql_exp *pe = n->data;
3308 :
3309 3091 : if (pe && is_atom(pe->type))
3310 23 : continue;
3311 3068 : if (pe && !is_alias(pe->type))
3312 : return false;
3313 : /* check for columns from the pk side, then keep the join with the pk */
3314 3047 : if ((fk_left && rel_find_exp(r->r, pe)) || (!fk_left && rel_find_exp(r->l, pe)))
3315 594 : return false;
3316 : }
3317 : return true;
3318 : }
3319 :
3320 : static sql_rel *
3321 236212 : rel_simplify_project_fk_join(mvc *sql, sql_rel *r, list *pexps, list *orderexps, int *changes)
3322 : {
3323 236212 : sql_rel *rl = r->l, *rr = r->r, *nr = NULL;
3324 236212 : sql_exp *je, *le, *nje, *re;
3325 236212 : int fk_left = 1;
3326 :
3327 : /* check for foreign key join */
3328 236212 : if (list_length(r->exps) != 1 || !list_empty(r->attr))
3329 7334 : return r;
3330 228878 : if (!(je = exps_find_prop(r->exps, PROP_JOINIDX)) || je->flag != cmp_equal)
3331 : return r;
3332 : /* je->l == foreign expression, je->r == primary expression */
3333 1204 : if (rel_find_exp(r->l, je->l)) {
3334 : fk_left = 1;
3335 34 : } else if (rel_find_exp(r->r, je->l)) {
3336 : fk_left = 0;
3337 : } else { /* not found */
3338 : return r;
3339 : }
3340 :
3341 : /* primary side must be a full table */
3342 1170 : if ((fk_left && (!is_left(r->op) && !is_full(r->op)) && !is_basetable(rr->op)) ||
3343 34 : (!fk_left && (!is_right(r->op) && !is_full(r->op)) && !is_basetable(rl->op)))
3344 554 : return r;
3345 :
3346 650 : if (!check_projection_on_foreignside(r, pexps, fk_left) || !check_projection_on_foreignside(r, orderexps, fk_left))
3347 613 : return r;
3348 :
3349 : /* rewrite, ie remove pkey side if possible */
3350 37 : le = (sql_exp*)je->l, re = (sql_exp*)je->l;
3351 :
3352 : /* both have NULL and there are semantics, the join cannot be removed */
3353 37 : if (is_semantics(je) && has_nil(le) && has_nil(re))
3354 : return r;
3355 :
3356 37 : (*changes)++;
3357 : /* if the foreign key column doesn't have NULL values, then return it */
3358 37 : if (!has_nil(le) || is_full(r->op) || (fk_left && is_left(r->op)) || (!fk_left && is_right(r->op))) {
3359 : /* if ->attr, introduce group by on index */
3360 31 : if (fk_left) {
3361 23 : nr = rel_dup(r->l);
3362 : } else {
3363 8 : nr = rel_dup(r->r);
3364 : }
3365 31 : if (!list_empty(r->attr)) {
3366 0 : nr = rel_groupby(sql, nr, NULL);
3367 0 : if (nr) {
3368 : // printf("# introduced groupby \n");
3369 0 : nr->r = append(sa_list(sql->sa), le);
3370 0 : nr->exps = r->attr;
3371 : }
3372 : }
3373 31 : return nr;
3374 : }
3375 :
3376 : /* remove NULL values, ie generate a select not null */
3377 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);
3378 6 : set_anti(nje);
3379 6 : set_has_no_nil(nje);
3380 6 : set_semantics(nje);
3381 6 : if (fk_left) {
3382 6 : nr = rel_dup(r->l);
3383 : } else {
3384 0 : nr = rel_dup(r->r);
3385 : }
3386 6 : nr = rel_select(sql->sa, nr, nje);
3387 6 : set_processed(nr);
3388 6 : return nr;
3389 : }
3390 :
3391 : static sql_rel *
3392 1853 : rel_simplify_count_fk_join(mvc *sql, sql_rel *r, list *gexps, list *gcols, int *changes)
3393 : {
3394 1853 : sql_rel *rl = r->l, *rr = r->r, *nr = NULL;
3395 1853 : sql_exp *je, *le, *nje, *re, *oce;
3396 1853 : int fk_left = 1;
3397 :
3398 : /* check for foreign key join */
3399 1853 : if (list_length(r->exps) != 1)
3400 : return r;
3401 1852 : if (!(je = exps_find_prop(r->exps, PROP_JOINIDX)) || je->flag != cmp_equal)
3402 : return r;
3403 : /* je->l == foreign expression, je->r == primary expression */
3404 63 : if (rel_find_exp(r->l, je->l)) {
3405 : fk_left = 1;
3406 7 : } else if (rel_find_exp(r->r, je->l)) {
3407 : fk_left = 0;
3408 : } else { /* not found */
3409 : return r;
3410 : }
3411 :
3412 63 : oce = gexps->h->data;
3413 63 : if (oce->l) /* we only handle COUNT(*) */
3414 : return r;
3415 :
3416 : /* primary side must be a full table */
3417 62 : if ((fk_left && (!is_left(r->op) && !is_full(r->op)) && !is_basetable(rr->op)) ||
3418 6 : (!fk_left && (!is_right(r->op) && !is_full(r->op)) && !is_basetable(rl->op)))
3419 : return r;
3420 :
3421 33 : if (fk_left && is_join(rl->op) && !rel_is_ref(rl)) {
3422 12 : r->l = rel_simplify_count_fk_join(sql, rl, gexps, gcols, changes);
3423 12 : if (rl != r->l)
3424 9 : rel_destroy(rl);
3425 : }
3426 39 : if (!fk_left && is_join(rr->op) && !rel_is_ref(rr)) {
3427 2 : r->r = rel_simplify_count_fk_join(sql, rr, gexps, gcols, changes);
3428 2 : if (rr != r->r)
3429 2 : rel_destroy(rr);
3430 : }
3431 :
3432 39 : if (!check_projection_on_foreignside(r, gcols, fk_left))
3433 : return r;
3434 :
3435 : /* rewrite, ie remove pkey side if possible */
3436 37 : le = (sql_exp*)je->l, re = (sql_exp*)je->l;
3437 :
3438 : /* both have NULL and there are semantics, the join cannot be removed */
3439 37 : if (is_semantics(je) && has_nil(le) && has_nil(re))
3440 : return r;
3441 :
3442 37 : (*changes)++;
3443 : /* if the foreign key column doesn't have NULL values, then return it */
3444 37 : if (!has_nil(le) || is_full(r->op) || (fk_left && is_left(r->op)) || (!fk_left && is_right(r->op))) {
3445 31 : if (fk_left) {
3446 25 : nr = rel_dup(r->l);
3447 : } else {
3448 6 : nr = rel_dup(r->r);
3449 : }
3450 31 : return nr;
3451 : }
3452 :
3453 : /* remove NULL values, ie generate a select not null */
3454 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);
3455 6 : set_anti(nje);
3456 6 : set_has_no_nil(nje);
3457 6 : set_semantics(nje);
3458 6 : if (fk_left) {
3459 6 : nr = rel_dup(r->l);
3460 : } else {
3461 0 : nr = rel_dup(r->r);
3462 : }
3463 6 : nr = rel_select(sql->sa, nr, nje);
3464 6 : set_processed(nr);
3465 6 : return nr;
3466 : }
3467 :
3468 : /*
3469 : * Handle (left/right/outer/natural) join fk-pk rewrites
3470 : * 1 group by ( fk-pk-join () ) [ count(*) ] -> group by ( fk )
3471 : * 2 project ( fk-pk-join () ) [ fk-column ] -> project (fk table)[ fk-column ]
3472 : * 3 project ( fk1-pk1-join( fk2-pk2-join()) [ fk-column, pk1 column ] -> project (fk1-pk1-join)[ fk-column, pk1 column ]
3473 : */
3474 : static inline sql_rel *
3475 3617624 : rel_simplify_fk_joins(visitor *v, sql_rel *rel)
3476 : {
3477 3617624 : sql_rel *r = NULL;
3478 :
3479 3617624 : if (is_simple_project(rel->op))
3480 1186289 : r = rel->l;
3481 :
3482 3617661 : while (is_simple_project(rel->op) && r && list_length(r->exps) == 1 && (is_join(r->op) || r->op == op_semi) && !(rel_is_ref(r))) {
3483 236212 : sql_rel *or = r;
3484 :
3485 236212 : r = rel_simplify_project_fk_join(v->sql, r, rel->exps, rel->r, &v->changes);
3486 236212 : if (r == or)
3487 : return rel;
3488 37 : rel_destroy(rel->l);
3489 37 : rel->l = r;
3490 : }
3491 :
3492 3381449 : if (!is_groupby(rel->op))
3493 : return rel;
3494 :
3495 85016 : r = rel->l;
3496 128288 : while(r && is_simple_project(r->op))
3497 43272 : r = r->l;
3498 :
3499 99235 : 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)) &&
3500 : /* currently only single count aggregation is handled, no other projects or aggregation */
3501 103254 : list_length(rel->exps) == 1 && exp_aggr_is_count(rel->exps->h->data)) {
3502 1839 : sql_rel *or = r;
3503 :
3504 1839 : r = rel_simplify_count_fk_join(v->sql, r, rel->exps, rel->r, &v->changes);
3505 1839 : if (r == or)
3506 : return rel;
3507 26 : rel_destroy(rel->l);
3508 26 : rel->l = r;
3509 : }
3510 : return rel;
3511 : }
3512 :
3513 : /*
3514 : * Gets the column expressions of a diff function and adds them to "columns".
3515 : * The diff function has two possible argument types: either a sql_exp representing a column
3516 : * or a sql_exp representing another diff function, therefore this function is recursive.
3517 : */
3518 : static void
3519 168 : get_diff_function_columns(sql_exp *diffExp, list *columns) {
3520 168 : list *args = diffExp->l;
3521 :
3522 370 : for (node *arg = args->h; arg; arg = arg->next) {
3523 202 : sql_exp *exp = arg->data;
3524 :
3525 : // diff function
3526 202 : if (exp->type == e_func) {
3527 34 : get_diff_function_columns(exp, columns);
3528 : }
3529 : // column
3530 : else {
3531 168 : list_append(columns, exp);
3532 : }
3533 : }
3534 168 : }
3535 :
3536 : /*
3537 : * Builds a list of aggregation key columns to be used by the select push down algorithm, namely for
3538 : * window functions. Returns NULL if the window function does not partition by any column
3539 : */
3540 : static list *
3541 3603 : get_aggregation_key_columns(allocator *sa, sql_rel *r) {
3542 34377 : for (node* n = r->exps->h; n; n = n->next) {
3543 30998 : sql_exp *e = n->data;
3544 :
3545 30998 : if (e->type == e_func) {
3546 7903 : sql_subfunc *f = e->f;
3547 :
3548 : // aggregation function
3549 7903 : if (!strcmp(f->func->base.name, "rank")) {
3550 224 : list* rankArguments = e->l;
3551 : // the partition key is the second argument
3552 224 : sql_exp *partitionExp = rankArguments->h->next->data;
3553 :
3554 : // check if the key contains any columns, i.e., is a diff function
3555 224 : if (partitionExp->type == e_func) {
3556 : // get columns to list
3557 134 : list *aggColumns = sa_list(sa);
3558 134 : get_diff_function_columns(partitionExp, aggColumns);
3559 134 : return aggColumns;
3560 : }
3561 : // the function has no aggregation columns (e_atom of boolean)
3562 : else {
3563 : return NULL;
3564 : }
3565 :
3566 : }
3567 : }
3568 : }
3569 : return NULL;
3570 : }
3571 :
3572 : /*
3573 : * Checks if a filter column is also used as an aggregation key, so it can be later safely pushed down.
3574 : */
3575 : static int
3576 187 : filter_column_in_aggregation_columns(sql_exp *column, list *aggColumns) {
3577 : /* check if it is a column or an e_convert, and get the actual column if it is the latter */
3578 187 : if (column->type == e_convert) {
3579 1 : column = column->l;
3580 : }
3581 :
3582 187 : char *tableName = column->l;
3583 187 : char *columnName = column->r;
3584 :
3585 404 : for (node *n = aggColumns->h; n; n = n->next) {
3586 226 : sql_exp *aggCol = n->data;
3587 226 : char *aggColTableName = aggCol->l;
3588 226 : char *aggColColumnName = aggCol->r;
3589 :
3590 226 : if (!strcmp(tableName, aggColTableName) && !strcmp(columnName, aggColColumnName)) {
3591 : /* match */
3592 : return 1;
3593 : }
3594 : }
3595 :
3596 : /* no matches found */
3597 : return 0;
3598 : }
3599 :
3600 :
3601 : /*
3602 : * Push select down, pushes the selects through (simple) projections. Also
3603 : * it cleans up the projections which become useless.
3604 : *
3605 : * WARNING - Make sure to call try_remove_empty_select macro before returning so we ensure
3606 : * possible generated empty selects won't never be generated
3607 : */
3608 : static sql_rel *
3609 7161715 : rel_push_select_down(visitor *v, sql_rel *rel)
3610 : {
3611 7161715 : list *exps = NULL;
3612 7161715 : sql_rel *r = NULL;
3613 7161715 : node *n;
3614 :
3615 7161715 : if (rel_is_ref(rel)) {
3616 370508 : if (is_select(rel->op) && !list_empty(rel->exps)) {
3617 : /* add inplace empty select */
3618 1722 : sql_rel *l = rel_select(v->sql->sa, rel->l, NULL);
3619 :
3620 1722 : l->exps = rel->exps;
3621 1722 : set_processed(l);
3622 1722 : rel->exps = NULL;
3623 1722 : rel->l = l;
3624 1722 : v->changes++;
3625 : }
3626 370508 : return rel;
3627 : }
3628 :
3629 : /* don't make changes for empty selects */
3630 6791207 : if (is_select(rel->op) && list_empty(rel->exps))
3631 10 : return try_remove_empty_select(v, rel);
3632 :
3633 : /* merge 2 selects */
3634 6791197 : r = rel->l;
3635 6791197 : if (is_select(rel->op) && r && r->exps && is_select(r->op) && !(rel_is_ref(r)) && !exps_have_func(rel->exps)) {
3636 27 : (void)list_merge(r->exps, rel->exps, (fdup)NULL);
3637 27 : rel->l = NULL;
3638 27 : rel_destroy(rel);
3639 27 : v->changes++;
3640 27 : return try_remove_empty_select(v, r);
3641 : }
3642 : /*
3643 : * Push select through semi/anti join
3644 : * select (semi(A,B)) == semi(select(A), B)
3645 : */
3646 6791170 : if (is_select(rel->op) && r && is_semi(r->op) && !(rel_is_ref(r))) {
3647 308 : rel->l = r->l;
3648 308 : r->l = rel;
3649 308 : v->changes++;
3650 : /*
3651 : * if A has 2 references (ie used on both sides of
3652 : * the semi join), we also push the select into A.
3653 : */
3654 308 : if (rel_is_ref(rel->l) && rel->l == rel_find_ref(r->r)){
3655 0 : sql_rel *lx = rel->l;
3656 0 : sql_rel *rx = r->r;
3657 0 : if (lx->ref.refcnt == 2 && !rel_is_ref(rx)) {
3658 0 : while (rx->l && !rel_is_ref(rx->l) &&
3659 0 : (is_project(rx->op) ||
3660 : is_select(rx->op) ||
3661 : is_join(rx->op)))
3662 : rx = rx->l;
3663 : /* probably we need to introduce a project */
3664 0 : rel_destroy(rel->l);
3665 0 : lx = rel_project(v->sql->sa, rel, rel_projections(v->sql, rel, NULL, 1, 1));
3666 0 : r->l = lx;
3667 0 : rx->l = rel_dup(lx);
3668 : }
3669 : }
3670 308 : return r;
3671 : }
3672 6790862 : exps = rel->exps;
3673 :
3674 : /* push select through join */
3675 6790862 : if (is_select(rel->op) && r && is_join(r->op) && !rel_is_ref(r) && !is_single(r)){
3676 21810 : sql_rel *jl = r->l, *ojl = jl, *jr = r->r, *ojr = jr;
3677 21810 : int left = r->op == op_join || r->op == op_left;
3678 21810 : int right = r->op == op_join || r->op == op_right;
3679 :
3680 21810 : if (r->op == op_full)
3681 : return rel;
3682 :
3683 : /* introduce selects under the join (if needed) */
3684 21788 : set_processed(jl);
3685 21788 : set_processed(jr);
3686 47882 : for (n = exps->h; n;) {
3687 26094 : node *next = n->next;
3688 26094 : sql_exp *e = n->data;
3689 :
3690 26094 : if (!exp_unsafe(e, false, true)) {
3691 25888 : if (left && rel_rebind_exp(v->sql, jl, e)) {
3692 13203 : if (!is_select(jl->op) || rel_is_ref(jl))
3693 11030 : r->l = jl = rel_select(v->sql->sa, jl, NULL);
3694 13203 : rel_select_add_exp(v->sql->sa, jl, e);
3695 13203 : list_remove_node(exps, NULL, n);
3696 13203 : v->changes++;
3697 12685 : } else if (right && rel_rebind_exp(v->sql, jr, e)) {
3698 5104 : if (!is_select(jr->op) || rel_is_ref(jr))
3699 4180 : r->r = jr = rel_select(v->sql->sa, jr, NULL);
3700 5104 : rel_select_add_exp(v->sql->sa, jr, e);
3701 5104 : list_remove_node(exps, NULL, n);
3702 5104 : v->changes++;
3703 : }
3704 : }
3705 : n = next;
3706 : }
3707 21788 : if (ojl != jl)
3708 11030 : set_processed(jl);
3709 21788 : if (ojr != jr)
3710 4180 : set_processed(jr);
3711 : }
3712 :
3713 : /* merge select and cross product ? */
3714 6790840 : if (is_select(rel->op) && r && r->op == op_join && !rel_is_ref(r) && !is_single(r) && !exps_have_unsafe(exps, false, true)) {
3715 14590 : for (n = exps->h; n;) {
3716 1982 : node *next = n->next;
3717 1982 : sql_exp *e = n->data;
3718 :
3719 1982 : if (exp_is_join(e, NULL) == 0) {
3720 678 : if (!r->exps)
3721 104 : r->exps = sa_list(v->sql->sa);
3722 678 : append(r->exps, e);
3723 678 : list_remove_node(exps, NULL, n);
3724 678 : v->changes++;
3725 : }
3726 : n = next;
3727 : }
3728 : }
3729 :
3730 6790840 : 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)){
3731 69321 : sql_rel *pl = r->l, *opl = pl;
3732 : /* we cannot push through window functions (for safety I disabled projects over DDL too) */
3733 69321 : if (pl && pl->op != op_ddl && !exps_have_unsafe(r->exps, false, false)) {
3734 : /* introduce selects under the project (if needed) */
3735 48575 : set_processed(pl);
3736 48575 : if (!pl->exps)
3737 388 : pl->exps = sa_list(v->sql->sa);
3738 103491 : for (n = exps->h; n;) {
3739 54916 : node *next = n->next;
3740 54916 : sql_exp *e = n->data, *ne = NULL;
3741 :
3742 : /* can we move it down */
3743 54916 : if (e->type == e_cmp && (ne = exp_push_down_prj(v->sql, e, r, pl)) && ne != e) {
3744 25396 : if (!(is_select(pl->op) && is_join(pl->op) && is_semi(pl->op)) || rel_is_ref(pl))
3745 25396 : r->l = pl = rel_select(v->sql->sa, pl, NULL);
3746 25396 : rel_select_add_exp(v->sql->sa, pl, ne);
3747 25396 : list_remove_node(exps, NULL, n);
3748 25396 : v->changes++;
3749 : }
3750 : n = next;
3751 : }
3752 48575 : if (opl != pl)
3753 18271 : set_processed(pl);
3754 : }
3755 :
3756 : /* push filters if they match the aggregation key on a window function */
3757 3603 : else if (pl && pl->op != op_ddl && exps_have_unsafe(r->exps, false, false)) {
3758 3603 : set_processed(pl);
3759 : /* list of aggregation key columns */
3760 3603 : list *aggColumns = get_aggregation_key_columns(v->sql->sa, r);
3761 :
3762 : /* aggregation keys found, check if any filter matches them */
3763 3603 : if (aggColumns) {
3764 325 : for (n = exps->h; n;) {
3765 191 : node *next = n->next;
3766 191 : sql_exp *e = n->data, *ne = NULL;
3767 :
3768 191 : if (e->type == e_cmp) {
3769 : /* simple comparison filter */
3770 191 : if (e->flag == cmp_gt || e->flag == cmp_gte || e->flag == cmp_lte || e->flag == cmp_lt
3771 191 : || e->flag == cmp_equal || e->flag == cmp_notequal || e->flag == cmp_in || e->flag == cmp_notin
3772 5 : || (e->flag == cmp_filter && ((list*)e->l)->cnt == 1)) {
3773 187 : sql_exp* column;
3774 : /* the column in 'like' filters is stored inside a list */
3775 187 : if (e->flag == cmp_filter) {
3776 1 : column = ((list*)e->l)->h->data;
3777 : } else {
3778 186 : column = e->l;
3779 : }
3780 :
3781 : /* check if the expression matches any aggregation key, meaning we can
3782 : try to safely push it down */
3783 187 : if (filter_column_in_aggregation_columns(column, aggColumns)) {
3784 9 : ne = exp_push_down_prj(v->sql, e, r, pl);
3785 :
3786 : /* can we move it down */
3787 9 : if (ne && ne != e && pl->exps) {
3788 9 : if (!is_select(pl->op) || rel_is_ref(pl))
3789 8 : r->l = pl = rel_select(v->sql->sa, pl, NULL);
3790 9 : rel_select_add_exp(v->sql->sa, pl, ne);
3791 9 : list_remove_node(exps, NULL, n);
3792 9 : v->changes++;
3793 : }
3794 : }
3795 : }
3796 : }
3797 : n = next;
3798 : }
3799 :
3800 : /* cleanup list */
3801 134 : list_destroy(aggColumns);
3802 : }
3803 : }
3804 : }
3805 :
3806 : /* try push select under set relation */
3807 6790840 : if (is_select(rel->op) && r && is_set(r->op) && !list_empty(r->exps) && !rel_is_ref(r) && !is_single(r) && !list_empty(exps)) {
3808 19 : sql_rel *u = r, *ul = u->l, *ur = u->r;
3809 :
3810 19 : ul = rel_dup(ul);
3811 19 : ur = rel_dup(ur);
3812 19 : if (!is_project(ul->op))
3813 0 : ul = rel_project(v->sql->sa, ul,
3814 : rel_projections(v->sql, ul, NULL, 1, 1));
3815 19 : if (!is_project(ur->op))
3816 0 : ur = rel_project(v->sql->sa, ur,
3817 : rel_projections(v->sql, ur, NULL, 1, 1));
3818 19 : rel_rename_exps(v->sql, u->exps, ul->exps);
3819 19 : rel_rename_exps(v->sql, u->exps, ur->exps);
3820 :
3821 : /* introduce selects under the set */
3822 19 : ul = rel_select(v->sql->sa, ul, NULL);
3823 19 : ul->exps = exps_copy(v->sql, exps);
3824 19 : set_processed(ul);
3825 19 : ur = rel_select(v->sql->sa, ur, NULL);
3826 19 : ur->exps = exps_copy(v->sql, exps);
3827 19 : set_processed(ur);
3828 :
3829 19 : rel = rel_inplace_setop(v->sql, rel, ul, ur, u->op, rel_projections(v->sql, rel, NULL, 1, 1));
3830 19 : if (need_distinct(u))
3831 0 : set_distinct(rel);
3832 19 : v->changes++;
3833 : }
3834 6790840 : if (is_select(rel->op) && r && is_munion(r->op) && !list_empty(r->exps) && !rel_is_ref(r) && !is_single(r) && !list_empty(exps)) {
3835 4878 : sql_rel *u = r;
3836 4878 : list *rels = u->l, *nrels = sa_list(v->sql->sa);
3837 14660 : for(node *n = rels->h; n; n = n->next) {
3838 9782 : sql_rel *ul = n->data;
3839 9782 : ul = rel_dup(ul);
3840 9782 : if (!is_project(ul->op))
3841 8 : ul = rel_project(v->sql->sa, ul,
3842 : rel_projections(v->sql, ul, NULL, 1, 1));
3843 9782 : rel_rename_exps(v->sql, u->exps, ul->exps);
3844 :
3845 : /* introduce selects under the set */
3846 9782 : ul = rel_select(v->sql->sa, ul, NULL);
3847 9782 : ul->exps = exps_copy(v->sql, exps);
3848 9782 : set_processed(ul);
3849 9782 : nrels = append(nrels, ul);
3850 : }
3851 :
3852 4878 : rel = rel_inplace_setop_n_ary(v->sql, rel, nrels, u->op, rel_projections(v->sql, rel, NULL, 1, 1));
3853 4878 : if (need_distinct(u))
3854 6 : set_distinct(rel);
3855 4878 : v->changes++;
3856 : }
3857 :
3858 6790840 : return try_remove_empty_select(v, rel);
3859 : }
3860 :
3861 : static int
3862 12033 : index_exp(sql_exp *e, sql_idx *i)
3863 : {
3864 12033 : if (e->type == e_cmp && !is_complex_exp(e->flag)) {
3865 6776 : switch(i->type) {
3866 6776 : case hash_idx:
3867 : case oph_idx:
3868 6776 : if (e->flag == cmp_equal)
3869 : return 0;
3870 : /* fall through */
3871 : case join_idx:
3872 : default:
3873 1252 : return -1;
3874 : }
3875 : }
3876 : return -1;
3877 : }
3878 :
3879 : /* find column for the select/join expression */
3880 : static sql_column *
3881 5524 : sjexp_col(sql_exp *e, sql_rel *r)
3882 : {
3883 5524 : sql_column *res = NULL;
3884 :
3885 5524 : if (e->type == e_cmp && !is_complex_exp(e->flag)) {
3886 5524 : res = exp_find_column(r, e->l, -2);
3887 5524 : if (!res)
3888 466 : res = exp_find_column(r, e->r, -2);
3889 : }
3890 5524 : return res;
3891 : }
3892 :
3893 : static sql_idx *
3894 1759568 : find_index(allocator *sa, sql_rel *rel, sql_rel *sub, list **EXPS)
3895 : {
3896 1759568 : node *n;
3897 :
3898 : /* any (partial) match of the expressions with the index columns */
3899 : /* Depending on the index type we may need full matches and only
3900 : limited number of cmp types (hash only equality etc) */
3901 : /* Depending on the index type we should (in the rel_bin) generate
3902 : more code, ie for spatial index add post filter etc, for hash
3903 : compute hash value and use index */
3904 :
3905 1759568 : if (sub->exps && rel->exps)
3906 7075671 : for(n = sub->exps->h; n; n = n->next) {
3907 5496543 : prop *p;
3908 5496543 : sql_exp *e = n->data;
3909 :
3910 5496543 : if ((p = find_prop(e->p, PROP_HASHIDX)) != NULL) {
3911 9408 : list *exps, *cols;
3912 9408 : sql_idx *i = p->value.pval;
3913 9408 : fcmp cmp = (fcmp)&sql_column_kc_cmp;
3914 :
3915 : /* join indices are only interesting for joins */
3916 9408 : if (i->type == join_idx || list_length(i->columns) <= 1)
3917 0 : continue;
3918 : /* based on the index type, find qualifying exps */
3919 9408 : exps = list_select(rel->exps, i, (fcmp) &index_exp, (fdup)NULL);
3920 9408 : if (list_empty(exps))
3921 4848 : continue;
3922 : /* now we obtain the columns, move into sql_column_kc_cmp! */
3923 4560 : cols = list_map(exps, sub, (fmap) &sjexp_col);
3924 :
3925 : /* TODO check that at most 2 relations are involved */
3926 :
3927 : /* Match the index columns with the expression columns.
3928 : TODO, Allow partial matches ! */
3929 4560 : if (list_match(cols, i->columns, cmp) == 0) {
3930 : /* re-order exps in index order */
3931 286 : node *n, *m;
3932 286 : list *es = sa_list(sa);
3933 :
3934 958 : for(n = i->columns->h; n; n = n->next) {
3935 672 : int i = 0;
3936 2152 : for(m = cols->h; m; m = m->next, i++) {
3937 2152 : if (cmp(m->data, n->data) == 0){
3938 672 : sql_exp *e = list_fetch(exps, i);
3939 672 : list_append(es, e);
3940 672 : break;
3941 : }
3942 : }
3943 : }
3944 : /* fix the destroy function */
3945 286 : cols->destroy = NULL;
3946 286 : *EXPS = es;
3947 286 : e->used = 1;
3948 286 : return i;
3949 : }
3950 4274 : cols->destroy = NULL;
3951 : }
3952 : }
3953 : return NULL;
3954 : }
3955 :
3956 : static inline sql_rel *
3957 1150264 : rel_use_index(visitor *v, sql_rel *rel)
3958 : {
3959 1150264 : list *exps = NULL;
3960 1150264 : sql_idx *i = find_index(v->sql->sa, rel, rel->l, &exps);
3961 1150264 : int left = 1;
3962 :
3963 1150264 : assert(is_select(rel->op) || is_join(rel->op));
3964 1150264 : if (!i && is_join(rel->op)) {
3965 609304 : left = 0;
3966 609304 : i = find_index(v->sql->sa, rel, rel->r, &exps);
3967 : }
3968 :
3969 1150084 : if (i) {
3970 286 : prop *p;
3971 286 : node *n;
3972 286 : int single_table = 1;
3973 286 : sql_exp *re = NULL;
3974 :
3975 956 : for( n = exps->h; n && single_table; n = n->next) {
3976 670 : sql_exp *e = n->data, *nre = e->l;
3977 :
3978 670 : if (!is_compare(e->type) || is_anti(e) || e->flag != cmp_equal)
3979 : return rel;
3980 670 : if (is_join(rel->op) && ((left && !rel_find_exp(rel->l, nre)) || (!left && rel_find_exp(rel->r, nre))))
3981 111 : nre = e->r;
3982 670 : single_table = (!re || (exp_relname(nre) && exp_relname(re) && strcmp(exp_relname(nre), exp_relname(re)) == 0));
3983 670 : re = nre;
3984 : }
3985 286 : if (single_table) { /* add PROP_HASHCOL to all column exps */
3986 932 : for( n = exps->h; n; n = n->next) {
3987 654 : sql_exp *e = n->data;
3988 :
3989 : /* swapped ? */
3990 654 : if (is_join(rel->op) && ((left && !rel_find_exp(rel->l, e->l)) || (!left && !rel_find_exp(rel->r, e->l)))) {
3991 165 : exp_swap(e);
3992 : }
3993 654 : p = find_prop(e->p, PROP_HASHCOL);
3994 654 : if (!p)
3995 285 : e->p = p = prop_create(v->sql->sa, PROP_HASHCOL, e->p);
3996 654 : p->value.pval = i;
3997 : }
3998 : }
3999 : /* add the remaining exps to the new exp list */
4000 286 : if (list_length(rel->exps) > list_length(exps)) {
4001 108 : for( n = rel->exps->h; n; n = n->next) {
4002 81 : sql_exp *e = n->data;
4003 81 : if (!list_find(exps, e, (fcmp)&exp_cmp))
4004 27 : list_append(exps, e);
4005 : }
4006 : }
4007 286 : rel->exps = exps;
4008 : }
4009 : return rel;
4010 : }
4011 :
4012 : static sql_rel *
4013 3617624 : rel_select_leftgroup_2_semi(visitor *v, sql_rel *rel)
4014 : {
4015 3617624 : if (rel_is_ref(rel) || !is_select(rel->op) || list_empty(rel->exps))
4016 3086870 : return rel;
4017 530754 : sql_rel *l = rel->l;
4018 :
4019 530754 : if (!l || rel_is_ref(l) || !is_left(l->op) || list_empty(l->attr))
4020 529781 : return rel;
4021 :
4022 1938 : for(node *n = rel->exps->h; n; n = n->next) {
4023 973 : sql_exp *e = n->data;
4024 :
4025 973 : if (e->type == e_cmp && !is_semantics(e) && !e->f) {
4026 964 : list *attrs = l->attr;
4027 964 : sql_exp *a = attrs->h->data;
4028 :
4029 964 : if (exps_find_exp(l->attr, e->l) && exp_is_true(e->r) && e->flag == cmp_equal /*&& exp_is_true(a)*/) {
4030 : // printf("# optimize select leftgroup -> semi\n");
4031 8 : if (!list_empty(l->exps)) {
4032 13 : for(node *m = l->exps->h; m; m = m->next) {
4033 7 : sql_exp *j = m->data;
4034 7 : reset_any(j);
4035 : }
4036 : }
4037 8 : l->attr = NULL;
4038 8 : l->op = exp_is_true(a)?op_semi:op_anti;
4039 8 : list_remove_node(rel->exps, NULL, n);
4040 8 : rel = rel_project(v->sql->sa, rel, rel_projections(v->sql, rel, NULL, 1, 1));
4041 8 : list_append(rel->exps, attrs->h->data);
4042 8 : v->changes++;
4043 8 : return rel;
4044 : }
4045 : }
4046 : }
4047 : return rel;
4048 : }
4049 :
4050 : static sql_rel *
4051 3617624 : rel_optimize_select_and_joins_topdown_(visitor *v, sql_rel *rel)
4052 : {
4053 : /* push_join_down introduces semijoins */
4054 3617624 : uint8_t cycle = *(uint8_t*) v->data;
4055 3617624 : if (cycle <= 0) {
4056 1575165 : rel = rel_semijoin_use_fk(v, rel);
4057 1575165 : rel = rel_push_join_down(v, rel);
4058 : }
4059 :
4060 3617624 : rel = rel_simplify_fk_joins(v, rel);
4061 3617624 : rel = rel_push_select_down(v, rel);
4062 3617624 : rel = rel_select_leftgroup_2_semi(v, rel);
4063 3617624 : if (rel && rel->l && (is_select(rel->op) || is_join(rel->op)))
4064 1150264 : rel = rel_use_index(v, rel);
4065 3617624 : return rel;
4066 : }
4067 :
4068 : static sql_rel *
4069 124790 : rel_optimize_select_and_joins_topdown(visitor *v, global_props *gp, sql_rel *rel)
4070 : {
4071 124790 : v->data = &gp->opt_cycle;
4072 124790 : rel = rel_visitor_topdown(v, rel, &rel_optimize_select_and_joins_topdown_);
4073 124790 : v->data = gp;
4074 124790 : return rel;
4075 : }
4076 :
4077 : run_optimizer
4078 621821 : bind_optimize_select_and_joins_topdown(visitor *v, global_props *gp)
4079 : {
4080 621821 : int flag = v->sql->sql_optimizer;
4081 621620 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
4082 538906 : || gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti] ||
4083 1243441 : gp->cnt[op_select]) && (flag & optimize_select_and_joins_topdown) ? rel_optimize_select_and_joins_topdown : NULL;
4084 : }
4085 :
4086 :
4087 : static int
4088 1235093 : can_push_func(sql_exp *e, sql_rel *rel, int *must, int depth)
4089 : {
4090 1278944 : switch(e->type) {
4091 1082030 : case e_cmp: {
4092 1082030 : sql_exp *l = e->l, *r = e->r, *f = e->f;
4093 :
4094 : /* don't push down functions inside attribute joins */
4095 1082030 : if (e->flag == cmp_or || e->flag == cmp_in || e->flag == cmp_notin || e->flag == cmp_filter || (is_join(rel->op) && is_any(e)))
4096 : return 0;
4097 1026839 : if (depth > 0) { /* for comparisons under the top ones, they become functions */
4098 58 : int lmust = 0;
4099 58 : int res = can_push_func(l, rel, &lmust, depth + 1) && can_push_func(r, rel, &lmust, depth + 1) &&
4100 20 : (!f || can_push_func(f, rel, &lmust, depth + 1));
4101 12 : if (res && !lmust)
4102 : return 1;
4103 54 : (*must) |= lmust;
4104 54 : return res;
4105 : } else {
4106 1026781 : int mustl = 0, mustr = 0, mustf = 0;
4107 1026781 : return ((l->type == e_column || can_push_func(l, rel, &mustl, depth + 1)) && (*must = mustl)) ||
4108 2046553 : ((r->type == e_column || can_push_func(r, rel, &mustr, depth + 1)) && (*must = mustr)) ||
4109 3648 : ((f && (f->type == e_column || can_push_func(f, rel, &mustf, depth + 1)) && (*must = mustf)));
4110 : }
4111 : }
4112 43851 : case e_convert:
4113 43851 : return can_push_func(e->l, rel, must, depth + 1);
4114 9420 : case e_aggr:
4115 : case e_func: {
4116 9420 : list *l = e->l;
4117 9420 : int res = 1, lmust = 0;
4118 :
4119 9420 : if (exp_unsafe(e, false, false))
4120 : return 0;
4121 26851 : if (l) for (node *n = l->h; n && res; n = n->next)
4122 17431 : res &= can_push_func(n->data, rel, &lmust, depth + 1);
4123 9420 : if (res && !lmust)
4124 : return 1;
4125 8573 : (*must) |= lmust;
4126 8573 : return res;
4127 : }
4128 50075 : case e_column:
4129 50075 : if (rel && !rel_find_exp(rel, e))
4130 : return 0;
4131 29513 : (*must) = 1;
4132 : /* fall through */
4133 : default:
4134 : return 1;
4135 : }
4136 : }
4137 :
4138 : static int
4139 896428 : exps_can_push_func(list *exps, sql_rel *rel)
4140 : {
4141 3902852 : for(node *n = exps->h; n; n = n->next) {
4142 3030092 : sql_exp *e = n->data;
4143 3030092 : int mustl = 0, mustr = 0;
4144 :
4145 3030092 : if ((is_joinop(rel->op) || is_select(rel->op)) && ((can_push_func(e, rel->l, &mustl, 0) && mustl)))
4146 23668 : return 1;
4147 3025845 : if (is_joinop(rel->op) && can_push_func(e, rel->r, &mustr, 0) && mustr)
4148 : return 1;
4149 : }
4150 : return 0;
4151 : }
4152 :
4153 : static int
4154 81741 : exp_needs_push_down(sql_rel *rel, sql_exp *e)
4155 : {
4156 106068 : switch(e->type) {
4157 27436 : case e_cmp:
4158 : /* don't push down functions inside attribute joins */
4159 27436 : if (e->flag == cmp_or || e->flag == cmp_in || e->flag == cmp_notin || e->flag == cmp_filter || (is_join(rel->op) && is_any(e)))
4160 : return 0;
4161 26503 : return exp_needs_push_down(rel, e->l) || exp_needs_push_down(rel, e->r) || (e->f && exp_needs_push_down(rel, e->f));
4162 24327 : case e_convert:
4163 24327 : return exp_needs_push_down(rel, e->l);
4164 1915 : case e_aggr:
4165 : case e_func:
4166 1915 : if (!e->l || exps_are_atoms(e->l))
4167 20 : return 0;
4168 : return 1;
4169 1461 : case e_atom:
4170 1461 : if (!e->f || exps_are_atoms(e->f))
4171 1461 : return 0;
4172 : return 1;
4173 : case e_column:
4174 : default:
4175 : return 0;
4176 : }
4177 : }
4178 :
4179 : static int
4180 23668 : exps_need_push_down(sql_rel *rel, list *exps )
4181 : {
4182 49201 : for(node *n = exps->h; n; n = n->next)
4183 27428 : if (exp_needs_push_down(rel, n->data))
4184 : return 1;
4185 : return 0;
4186 : }
4187 :
4188 : static sql_exp *exp_push_single_func_down(visitor *v, sql_rel *rel, sql_rel *ol, sql_rel *or, sql_exp *e, int depth);
4189 :
4190 : static list *
4191 2407 : exps_push_single_func_down(visitor *v, sql_rel *rel, sql_rel *ol, sql_rel *or, list *exps, int depth)
4192 : {
4193 4814 : if (mvc_highwater(v->sql))
4194 : return exps;
4195 :
4196 6704 : for (node *n = exps->h; n; n = n->next)
4197 4297 : if ((n->data = exp_push_single_func_down(v, rel, ol, or, n->data, depth)) == NULL)
4198 : return NULL;
4199 : return exps;
4200 : }
4201 :
4202 : static sql_exp *
4203 15689 : exp_push_single_func_down(visitor *v, sql_rel *rel, sql_rel *ol, sql_rel *or, sql_exp *e, int depth)
4204 : {
4205 27427 : if (mvc_highwater(v->sql))
4206 : return e;
4207 :
4208 15689 : switch(e->type) {
4209 4234 : case e_cmp: {
4210 4234 : if (e->flag == cmp_or || e->flag == cmp_filter) {
4211 247 : if ((e->l = exps_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4212 : return NULL;
4213 247 : if ((e->r = exps_push_single_func_down(v, rel, ol, or, e->r, depth + 1)) == NULL)
4214 : return NULL;
4215 3987 : } else if (e->flag == cmp_in || e->flag == cmp_notin) {
4216 18 : if ((e->l = exp_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4217 : return NULL;
4218 18 : if ((e->r = exps_push_single_func_down(v, rel, ol, or, e->r, depth + 1)) == NULL)
4219 : return NULL;
4220 : } else {
4221 3969 : if ((e->l = exp_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4222 : return NULL;
4223 3969 : if ((e->r = exp_push_single_func_down(v, rel, ol, or, e->r, depth + 1)) == NULL)
4224 : return NULL;
4225 3969 : if (e->f && (e->f = exp_push_single_func_down(v, rel, ol, or, e->f, depth + 1)) == NULL)
4226 : return NULL;
4227 : }
4228 : } break;
4229 2001 : case e_convert:
4230 2001 : if ((e->l = exp_push_single_func_down(v, rel, ol, or, e->l, depth + 1)) == NULL)
4231 : return NULL;
4232 : break;
4233 3974 : case e_aggr:
4234 : case e_func: {
4235 3974 : sql_rel *l = rel->l, *r = rel->r;
4236 3974 : int must = 0, mustl = 0, mustr = 0;
4237 :
4238 3974 : if (exp_unsafe(e, false, false))
4239 23 : return e;
4240 3974 : if (!e->l || exps_are_atoms(e->l))
4241 23 : return e;
4242 3951 : if ((is_joinop(rel->op) && ((can_push_func(e, l, &mustl, depth + 1) && mustl) || (can_push_func(e, r, &mustr, depth + 1) && mustr))) ||
4243 2977 : (is_select(rel->op) && can_push_func(e, l, &must, depth + 1) && must)) {
4244 3938 : exp_label(v->sql->sa, e, ++v->sql->label);
4245 : /* we need a full projection, group by's and unions cannot be extended with more expressions */
4246 3938 : if (mustr) {
4247 347 : if (r == or) /* don't project twice */
4248 324 : rel->r = r = rel_project(v->sql->sa, r, rel_projections(v->sql, r, NULL, 1, 1));
4249 347 : list_append(r->exps, e);
4250 : } else {
4251 3591 : if (l == ol) /* don't project twice */
4252 1835 : rel->l = l = rel_project(v->sql->sa, l, rel_projections(v->sql, l, NULL, 1, 1));
4253 3591 : list_append(l->exps, e);
4254 : }
4255 3938 : e = exp_ref(v->sql, e);
4256 3938 : v->changes++;
4257 : }
4258 3951 : } break;
4259 1154 : case e_atom: {
4260 1154 : if (e->f && (e->f = exps_push_single_func_down(v, rel, ol, or, e->f, depth + 1)) == NULL)
4261 : return NULL;
4262 : } break;
4263 : case e_column:
4264 : case e_psm:
4265 : break;
4266 : }
4267 : return e;
4268 : }
4269 :
4270 : static inline sql_rel *
4271 3544091 : rel_push_func_down(visitor *v, sql_rel *rel)
4272 : {
4273 3544091 : if ((is_select(rel->op) || is_joinop(rel->op)) && rel->l && rel->exps && !(rel_is_ref(rel))) {
4274 1076605 : int changes = v->changes;
4275 1076605 : sql_rel *l = rel->l, *r = rel->r;
4276 :
4277 : /* only push down when is useful */
4278 1076605 : if ((is_select(rel->op) && list_length(rel->exps) <= 1) || rel_is_ref(l) || (is_joinop(rel->op) && rel_is_ref(r)))
4279 529797 : return rel;
4280 546808 : 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))
4281 : return NULL;
4282 546808 : if (v->changes > changes) /* once we get a better join order, we can try to remove this projection */
4283 1895 : return rel_project(v->sql->sa, rel, rel_projections(v->sql, rel, NULL, 1, 1));
4284 : }
4285 3012399 : if (is_simple_project(rel->op) && rel->l && rel->exps) {
4286 1119543 : sql_rel *pl = rel->l;
4287 :
4288 1119543 : if (is_joinop(pl->op) && exps_can_push_func(rel->exps, rel)) {
4289 0 : sql_rel *l = pl->l, *r = pl->r, *ol = l, *or = r;
4290 :
4291 0 : for (node *n = rel->exps->h; n; ) {
4292 0 : node *next = n->next;
4293 0 : sql_exp *e = n->data;
4294 0 : int mustl = 0, mustr = 0;
4295 :
4296 0 : if ((can_push_func(e, l, &mustl, 0) && mustl) || (can_push_func(e, r, &mustr, 0) && mustr)) {
4297 0 : if (mustl) {
4298 0 : if (l == ol) /* don't project twice */
4299 0 : pl->l = l = rel_project(v->sql->sa, l, rel_projections(v->sql, l, NULL, 1, 1));
4300 0 : list_append(l->exps, e);
4301 0 : list_remove_node(rel->exps, NULL, n);
4302 0 : v->changes++;
4303 : } else {
4304 0 : if (r == or) /* don't project twice */
4305 0 : pl->r = r = rel_project(v->sql->sa, r, rel_projections(v->sql, r, NULL, 1, 1));
4306 0 : list_append(r->exps, e);
4307 0 : list_remove_node(rel->exps, NULL, n);
4308 0 : v->changes++;
4309 : }
4310 : }
4311 0 : n = next;
4312 : }
4313 : }
4314 : }
4315 : return rel;
4316 : }
4317 :
4318 : static sql_rel *
4319 3544091 : rel_push_func_and_select_down_(visitor *v, sql_rel *rel)
4320 : {
4321 3544091 : if (rel)
4322 3544091 : rel = rel_push_func_down(v, rel);
4323 3544091 : if (rel)
4324 3544091 : rel = rel_push_select_down(v, rel);
4325 3544091 : return rel;
4326 : }
4327 :
4328 : static sql_rel *
4329 124790 : rel_push_func_and_select_down(visitor *v, global_props *gp, sql_rel *rel)
4330 : {
4331 124790 : (void) gp;
4332 124790 : return rel_visitor_topdown(v, rel, &rel_push_func_and_select_down_);
4333 : }
4334 :
4335 : run_optimizer
4336 621535 : bind_push_func_and_select_down(visitor *v, global_props *gp)
4337 : {
4338 621535 : int flag = v->sql->sql_optimizer;
4339 621327 : return gp->opt_level == 1 && (gp->cnt[op_join] || gp->cnt[op_left] || gp->cnt[op_right]
4340 538560 : || gp->cnt[op_full] || gp->cnt[op_semi] || gp->cnt[op_anti] || gp->cnt[op_select])
4341 745861 : && (flag & push_func_and_select_down) ? rel_push_func_and_select_down : NULL;
4342 : }
|