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_select.h"
15 : #include "sql_tokens.h"
16 : #include "sql_privileges.h"
17 : #include "sql_env.h"
18 : #include "sql_decimal.h"
19 : #include "sql_qc.h"
20 : #include "rel_rel.h"
21 : #include "rel_basetable.h"
22 : #include "rel_exp.h"
23 : #include "rel_xml.h"
24 : #include "rel_dump.h"
25 : #include "rel_prop.h"
26 : #include "rel_psm.h"
27 : #include "rel_schema.h"
28 : #include "rel_unnest.h"
29 : #include "rel_sequence.h"
30 : #include "rel_file_loader.h"
31 :
32 : #define VALUE_FUNC(f) (f->func->type == F_FUNC || f->func->type == F_FILT)
33 : #define check_card(card,f) ((card == card_none && !f->res) || (CARD_VALUE(card) && f->res && VALUE_FUNC(f)) || card == card_loader || (card == card_relation && f->func->type == F_UNION))
34 :
35 : /* return all expressions, with table name == tname */
36 : static list *
37 57169 : rel_table_projections( mvc *sql, sql_rel *rel, char *tname, int level )
38 : {
39 57682 : list *exps;
40 :
41 57682 : if (mvc_highwater(sql))
42 0 : return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
43 :
44 57682 : if (!rel)
45 : return NULL;
46 :
47 57682 : if (!tname)
48 41942 : return _rel_projections(sql, rel, NULL, 1, 0, 1);
49 :
50 15740 : switch(rel->op) {
51 521 : case op_join:
52 : case op_left:
53 : case op_right:
54 : case op_full:
55 521 : exps = rel_table_projections( sql, rel->l, tname, level+1);
56 521 : if (exps)
57 : return exps;
58 13 : return rel_table_projections( sql, rel->r, tname, level+1);
59 500 : case op_semi:
60 : case op_anti:
61 : case op_select:
62 500 : return rel_table_projections( sql, rel->l, tname, level+1);
63 :
64 54 : case op_topn:
65 : case op_sample:
66 : case op_groupby:
67 : case op_union:
68 : case op_except:
69 : case op_inter:
70 : case op_project:
71 54 : if (!is_processed(rel) && level == 0)
72 0 : return rel_table_projections( sql, rel->l, tname, level+1);
73 : /* fall through */
74 : case op_munion:
75 60 : if (!is_processed(rel) && level == 0) {
76 0 : node *n = ((list*)rel->l)->h;
77 0 : if (n)
78 0 : return rel_table_projections(sql, n->data, tname, level+1);
79 : }
80 : /* fall through */
81 : case op_table:
82 : case op_basetable:
83 14719 : if (is_basetable(rel->op) && !rel->exps)
84 14159 : return rel_base_project_all(sql, rel, tname);
85 560 : if (rel->exps) {
86 560 : int rename = 0;
87 560 : node *en;
88 :
89 : /* first check alias */
90 560 : if (!is_base(rel->op) && !level) {
91 54 : list *exps = sa_list(sql->sa);
92 :
93 409 : for (en = rel->exps->h; en && !rename; en = en->next) {
94 355 : sql_exp *e = en->data;;
95 :
96 355 : if ((is_basecol(e) && exp_relname(e) && strcmp(exp_relname(e), tname) == 0) ||
97 138 : (is_basecol(e) && !exp_relname(e) && e->l && strcmp(e->l, tname) == 0)) {
98 217 : if (exp_name(e) && exps_bind_column2(exps, tname, exp_name(e), NULL))
99 : rename = 1;
100 : else
101 217 : append(exps, e);
102 : }
103 : }
104 : }
105 :
106 560 : exps = new_exp_list(sql->sa);
107 4930 : for (en = rel->exps->h; en; en = en->next) {
108 4370 : sql_exp *e = en->data;
109 4370 : if (is_basecol(e) && exp_relname(e) && strcmp(exp_relname(e), tname) == 0) {
110 4230 : if (rename)
111 0 : append(exps, exp_alias_ref(sql, e));
112 : else {
113 4230 : sql_exp *ne = exp_ref(sql, e);
114 4230 : exp_setname(sql, ne, tname, exp_name(e));
115 4230 : append(exps, ne);
116 : }
117 : }
118 4370 : if (is_basecol(e) && !exp_relname(e) && e->l && strcmp(e->l, tname) == 0) {
119 0 : if (rename)
120 0 : append(exps, exp_alias_ref(sql, e));
121 : else {
122 0 : sql_exp *ne = exp_ref(sql, e);
123 0 : exp_setname(sql, ne, tname, exp_name(e));
124 0 : append(exps, ne);
125 : }
126 : }
127 :
128 : }
129 560 : if (exps && list_length(exps))
130 : return exps;
131 : }
132 : /* fall through */
133 : default:
134 : return NULL;
135 : }
136 : }
137 :
138 : static sql_exp *
139 0 : rel_lastexp(mvc *sql, sql_rel *rel )
140 : {
141 0 : sql_exp *e;
142 :
143 0 : if (!is_processed(rel) || is_topn(rel->op) || is_sample(rel->op))
144 0 : rel = rel_parent(rel);
145 0 : assert(list_length(rel->exps));
146 0 : if (rel->op == op_project) {
147 0 : list_hash_clear(rel->exps);
148 0 : return exp_ref(sql, rel->exps->t->data);
149 : }
150 0 : assert(is_project(rel->op));
151 0 : e = rel->exps->t->data;
152 0 : return exp_ref(sql, e);
153 : }
154 :
155 : static sql_rel *
156 36735 : rel_orderby(mvc *sql, sql_rel *l)
157 : {
158 36735 : sql_rel *rel = rel_create(sql->sa);
159 36735 : if (!rel)
160 : return NULL;
161 :
162 36735 : assert(l->op == op_project && !l->r);
163 36735 : rel->l = l;
164 36735 : rel->r = NULL;
165 36735 : rel->op = op_project;
166 36735 : rel->exps = rel_projections(sql, l, NULL, 1, 0);
167 36735 : rel->card = l->card;
168 36735 : rel->nrcols = l->nrcols;
169 36735 : return rel;
170 : }
171 :
172 : /* forward refs */
173 : static sql_rel * rel_setquery(sql_query *query, symbol *sq);
174 : static sql_rel * rel_joinquery(sql_query *query, symbol *sq, list *refs);
175 :
176 : static sql_rel *
177 205594 : rel_table_optname(mvc *sql, sql_rel *sq, symbol *optname, list *refs)
178 : {
179 205594 : sql_rel *osq = sq;
180 205594 : node *ne;
181 :
182 205594 : if (optname && optname->token == SQL_NAME) {
183 17991 : dlist *columnrefs = NULL;
184 17991 : char *tname = optname->data.lval->h->data.sval;
185 17991 : list *l = sa_list(sql->sa);
186 :
187 17991 : columnrefs = optname->data.lval->h->next->data.lval;
188 17991 : if (is_topn(sq->op) || is_sample(sq->op) || ((is_simple_project(sq->op) || is_groupby(sq->op)) && sq->r) || is_base(sq->op)) {
189 110 : sq = rel_project(sql->sa, sq, rel_projections(sql, sq, NULL, 1, 0));
190 110 : osq = sq;
191 : }
192 17991 : if (columnrefs && dlist_length(columnrefs) != list_length(sq->exps))
193 6 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: The number of aliases don't match the number of columns (%d != %d)", dlist_length(columnrefs), sq->nrcols);
194 5030 : if (columnrefs && sq->exps) {
195 5030 : dnode *d = columnrefs->h;
196 :
197 5030 : ne = sq->exps->h;
198 5030 : list_hash_clear(sq->exps);
199 20760 : for (; d && ne; d = d->next, ne = ne->next) {
200 10701 : sql_exp *e = ne->data;
201 :
202 10701 : if (exps_bind_column2(l, tname, d->data.sval, NULL))
203 1 : return sql_error(sql, ERR_AMBIGUOUS, SQLSTATE(42000) "SELECT: Duplicate column name '%s.%s'", tname, d->data.sval);
204 10700 : exp_setname(sql, e, tname, d->data.sval );
205 10700 : if (!is_intern(e))
206 10700 : set_basecol(e);
207 10700 : append(l, e);
208 : }
209 : }
210 17984 : if (!columnrefs && sq->exps) {
211 12955 : ne = sq->exps->h;
212 12955 : list_hash_clear(sq->exps);
213 126652 : for (; ne; ne = ne->next) {
214 100742 : sql_exp *e = ne->data;
215 100742 : char *name = NULL;
216 :
217 100742 : if (!is_intern(e)) {
218 100742 : if (!exp_name(e))
219 108 : name = make_label(sql->sa, ++sql->label);
220 100742 : noninternexp_setname(sql, e, tname, name);
221 100742 : set_basecol(e);
222 : }
223 : }
224 : }
225 17984 : if (refs) { /* if this relation is under a FROM clause, check for duplicate names */
226 17934 : if (list_find(refs, tname, (fcmp) &strcmp))
227 6 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: relation name \"%s\" specified more than once", tname);
228 17928 : assert(tname);
229 17928 : list_append(refs, tname);
230 : }
231 : } else {
232 187603 : if (!is_project(sq->op) || is_topn(sq->op) || is_sample(sq->op) || ((is_simple_project(sq->op) || is_groupby(sq->op)) && sq->r)) {
233 59589 : sq = rel_project(sql->sa, sq, rel_projections(sql, sq, NULL, 1, 1));
234 59589 : osq = sq;
235 : }
236 2358631 : for (ne = osq->exps->h; ne; ne = ne->next) {
237 2171028 : sql_exp *e = ne->data;
238 :
239 2171028 : if (!is_intern(e))
240 2042372 : set_basecol(e);
241 : }
242 : }
243 : return osq;
244 : }
245 :
246 : static sql_rel *
247 98673 : rel_subquery_optname(sql_query *query, symbol *ast, list *refs)
248 : {
249 98673 : mvc *sql = query->sql;
250 98673 : SelectNode *sn = (SelectNode *) ast;
251 98673 : exp_kind ek = {type_value, card_relation, TRUE};
252 98673 : sql_rel *sq = rel_subquery(query, ast, ek);
253 :
254 98673 : assert(ast->token == SQL_SELECT);
255 98673 : if (!sq)
256 : return NULL;
257 :
258 98656 : return rel_table_optname(sql, sq, sn->name, refs);
259 : }
260 :
261 : sql_rel *
262 6933 : rel_with_query(sql_query *query, symbol *q )
263 : {
264 6933 : mvc *sql = query->sql;
265 6933 : dnode *d = q->data.lval->h;
266 6933 : symbol *next = d->next->data.sym;
267 6933 : sql_rel *rel;
268 :
269 6933 : if (!stack_push_frame(sql, NULL))
270 0 : return sql_error(sql, 02, SQLSTATE(HY013) MAL_MALLOC_FAIL);
271 : /* first handle all with's (ie inlined views) */
272 19667 : for (d = d->data.lval->h; d; d = d->next) {
273 12740 : symbol *sym = d->data.sym;
274 12740 : dnode *dn = sym->data.lval->h->next;
275 12740 : char *rname = qname_schema_object(dn->data.lval);
276 12740 : sql_rel *nrel;
277 :
278 12740 : if (frame_find_rel_view(sql, rname)) {
279 1 : stack_pop_frame(sql);
280 1 : return sql_error(sql, 01, SQLSTATE(42000) "View '%s' already declared", rname);
281 : }
282 12739 : nrel = rel_semantic(query, sym);
283 12739 : if (!nrel) {
284 5 : stack_pop_frame(sql);
285 5 : return NULL;
286 : }
287 12734 : if (!stack_push_rel_view(sql, rname, nrel)) {
288 0 : stack_pop_frame(sql);
289 0 : return sql_error(sql, 02, SQLSTATE(HY013) MAL_MALLOC_FAIL);
290 : }
291 12734 : if (!is_project(nrel->op)) {
292 0 : if (is_topn(nrel->op) || is_sample(nrel->op)) {
293 0 : nrel = rel_project(sql->sa, nrel, rel_projections(sql, nrel, NULL, 1, 1));
294 : } else {
295 0 : stack_pop_frame(sql);
296 0 : return NULL;
297 : }
298 : }
299 12734 : assert(is_project(nrel->op));
300 12734 : if (is_project(nrel->op) && nrel->exps) {
301 12734 : node *ne = nrel->exps->h;
302 :
303 56477 : for (; ne; ne = ne->next) {
304 43743 : sql_exp *e = ne->data;
305 43743 : char *name = NULL;
306 :
307 43743 : if (!is_intern(e)) {
308 43743 : if (!exp_name(e))
309 13 : name = make_label(sql->sa, ++sql->label);
310 43743 : noninternexp_setname(sql, e, rname, name);
311 43743 : set_basecol(e);
312 : }
313 : }
314 12734 : list_hash_clear(nrel->exps);
315 : }
316 : }
317 6927 : rel = rel_semantic(query, next);
318 6927 : stack_pop_frame(sql);
319 6927 : return rel;
320 : }
321 :
322 : static sql_rel *
323 60648 : query_exp_optname(sql_query *query, symbol *q, list *refs)
324 : {
325 60648 : mvc *sql = query->sql;
326 60648 : switch (q->token) {
327 943 : case SQL_WITH:
328 : {
329 943 : sql_rel *tq = rel_with_query(query, q);
330 :
331 943 : if (!tq)
332 : return NULL;
333 943 : if (q->data.lval->t->type == type_symbol)
334 943 : return rel_table_optname(sql, tq, q->data.lval->t->data.sym, refs);
335 : return tq;
336 : }
337 59705 : case SQL_JOIN:
338 : {
339 59705 : sql_rel *tq = rel_joinquery(query, q, refs);
340 :
341 59705 : if (!tq)
342 : return NULL;
343 59664 : return rel_table_optname(sql, tq, q->data.lval->t->data.sym, NULL);
344 : }
345 0 : default:
346 0 : (void) sql_error(sql, 02, SQLSTATE(42000) "case %d %s", (int) q->token, token2string(q->token));
347 : }
348 0 : return NULL;
349 : }
350 :
351 : static sql_subfunc *
352 113704 : bind_func_(mvc *sql, char *sname, char *fname, list *ops, sql_ftype type, bool private, bool *found, bool exact)
353 : {
354 113704 : sql_subfunc *sf = NULL;
355 :
356 113929 : if (sql->forward && strcmp(fname, sql->forward->base.name) == 0 &&
357 225 : list_cmp(sql->forward->ops, ops, (fcmp)&arg_subtype_cmp) == 0 &&
358 0 : execute_priv(sql, sql->forward) && type == sql->forward->type)
359 0 : return sql_dup_subfunc(sql->sa, sql->forward, NULL, NULL);
360 113704 : sf = sql_bind_func_(sql, sname, fname, ops, type, private, exact);
361 113704 : if (found)
362 113174 : *found |= sf != NULL;
363 113704 : if (sf && execute_priv(sql, sf->func))
364 : return sf;
365 : return NULL;
366 : }
367 :
368 : static sql_subfunc *
369 618107 : bind_func(mvc *sql, char *sname, char *fname, sql_subtype *t1, sql_subtype *t2, int nr, sql_ftype type, bool private, bool *found, bool exact)
370 : {
371 618107 : list *tl = sa_list(sql->sa);
372 618107 : assert(nr >= 1 && nr <= 2);
373 618107 : append(tl, t1);
374 618107 : if (nr == 2)
375 523288 : append(tl, t2);
376 618107 : sql_subfunc *sf = NULL;
377 :
378 618107 : if (sql->forward) {
379 131598 : if (execute_priv(sql, sql->forward) &&
380 131598 : strcmp(fname, sql->forward->base.name) == 0 &&
381 230 : ((!t1 && list_length(sql->forward->ops) == 0) ||
382 232 : (!t2 && list_length(sql->forward->ops) == 1 && arg_subtype_cmp(sql->forward->ops->h->data, t1) == 0) ||
383 228 : (list_length(sql->forward->ops) == 2 &&
384 0 : arg_subtype_cmp(sql->forward->ops->h->data, t1) == 0 &&
385 2 : arg_subtype_cmp(sql->forward->ops->h->next->data, t2) == 0)) && type == sql->forward->type) {
386 2 : return sql_dup_subfunc(sql->sa, sql->forward, NULL, NULL);
387 : }
388 : }
389 618105 : sf = sql_bind_func_(sql, sname, fname, tl, type, private, exact);
390 618105 : if (found)
391 618105 : *found |= sf != NULL;
392 618105 : if (sf && execute_priv(sql, sf->func))
393 : return sf;
394 : return NULL;
395 : }
396 :
397 : static sql_subfunc *
398 637775 : find_func(mvc *sql, char *sname, char *fname, int len, sql_ftype type, bool private, sql_subfunc *prev, bool *found)
399 : {
400 637775 : sql_subfunc *sf = NULL;
401 :
402 637775 : if (sql->forward && strcmp(fname, sql->forward->base.name) == 0 && list_length(sql->forward->ops) == len && execute_priv(sql, sql->forward) && type == sql->forward->type)
403 0 : return sql_dup_subfunc(sql->sa, sql->forward, NULL, NULL);
404 637775 : sf = sql_find_func(sql, sname, fname, len, type, private, prev);
405 637775 : if (found)
406 0 : *found |= sf != NULL;
407 637775 : if (sf && execute_priv(sql, sf->func))
408 : return sf;
409 : return NULL;
410 : }
411 :
412 : static sql_exp *
413 696559 : exp_fix_scale(mvc *sql, sql_subtype *ct, sql_exp *e)
414 : {
415 696559 : sql_subtype *et = exp_subtype(e);
416 :
417 696559 : if (ct->type->scale == SCALE_FIX && et->type->scale == SCALE_FIX) {
418 82846 : int scale_diff = ((int) ct->scale - (int) et->scale);
419 :
420 82846 : if (scale_diff) {
421 132 : if (scale_diff < 0)
422 : return e;
423 102 : sql_subtype st;
424 102 : int scale = ct->scale;
425 102 : int digits = ((et->type->eclass == EC_NUM)?bits2digits(et->digits):et->digits)-et->scale+scale;
426 102 : (void)sql_find_subtype(&st, ct->type->base.name, digits, scale);
427 102 : return exp_convert(sql, e, et, &st);
428 : }
429 : }
430 : return e;
431 : }
432 :
433 : static lng
434 9658 : rel_get_count(sql_rel *rel)
435 : {
436 31111 : if (!rel)
437 : return 0;
438 31107 : prop *p = NULL;
439 31107 : if (rel->p && (p = find_prop(rel->p, PROP_COUNT)) != NULL)
440 3050 : return p->value.lval;
441 28057 : else if(is_munion(rel->op)) {
442 168 : lng cnt = 0;
443 168 : list *l = rel->l;
444 504 : for (node *n = l->h; n; n = n->next) {
445 336 : lng lcnt = rel_get_count(n->data);
446 336 : if (lcnt == BUN_MAX)
447 : return BUN_MAX;
448 336 : cnt += lcnt;
449 : }
450 168 : return cnt;
451 27889 : } else if(rel->l) {
452 25218 : if (is_select(rel->op) || is_project(rel->op))
453 : return rel_get_count(rel->l);
454 : }
455 : return 0;
456 : }
457 :
458 : #define is_sum_aggr(f) (f->type == F_AGGR && strcmp(f->base.name, "sum") == 0)
459 :
460 : list *
461 739245 : check_arguments_and_find_largest_any_type(mvc *sql, sql_rel *rel, list *exps, sql_subfunc *sf, int maybe_zero_or_one, bool internal)
462 : {
463 739245 : list *nexps = new_exp_list(sql->sa);
464 739245 : sql_subtype *atp = NULL, super, *res = !list_empty(sf->res) ? sf->res->h->data: NULL;
465 739245 : unsigned int digits = 0, scale = 0;
466 :
467 : /* find largest any type argument */
468 2182787 : for (node *n = exps->h, *m = sf->func->ops->h; n && m; n = n->next, m = m->next) {
469 1443542 : sql_arg *a = m->data;
470 1443542 : sql_exp *e = n->data;
471 1443542 : sql_subtype *t = exp_subtype(e);
472 :
473 1443542 : if (a->type.type->eclass == EC_ANY) {
474 266673 : if (t && atp) {
475 115074 : supertype(&super, t, atp);
476 115074 : atp = &super;
477 151599 : } else if (t) {
478 : atp = t;
479 : }
480 : }
481 1443539 : if (t && sf->func->fix_scale == SCALE_FIX && t->type->eclass == EC_DEC) {
482 1264 : if (digits < t->digits)
483 : digits = t->digits;
484 1264 : if (scale < t->scale)
485 : scale = t->scale;
486 : }
487 : }
488 739245 : if (!atp && !list_empty(exps))
489 587647 : atp = exp_subtype(exps->h->data);
490 :
491 739245 : if ((atp && atp->type->localtype == TYPE_void) || !atp) /* NULL */
492 9419 : atp = sql_bind_localtype("str");
493 :
494 739245 : node *n, *m;
495 2182787 : for (n = exps->h, m = sf->func->ops->h; n && m; n = n->next, m = m->next) {
496 1443542 : sql_arg *a = m->data;
497 1443542 : sql_exp *e = n->data;
498 1443542 : sql_subtype *ntp = &a->type, *t = exp_subtype(e);
499 :
500 1443542 : if (!t) {
501 38 : if (a->type.type->eclass == EC_ANY && atp)
502 3 : ntp = sql_create_subtype(sql->sa, atp->type, atp->digits, atp->scale);
503 61 : rel_set_type_param(sql, ntp, rel, e, sf->func->fix_scale != INOUT && !UDF_LANG(sf->func->lang));
504 1443504 : } else if (a->type.type->eclass == EC_ANY && atp) {
505 266670 : ntp = sql_create_subtype(sql->sa, atp->type, atp->digits, atp->scale);
506 1176834 : } else if (t && ntp->digits == 0 && EC_VARCHAR(a->type.type->eclass)) {
507 511471 : ntp = sql_create_subtype(sql->sa, a->type.type, type_digits_to_char_digits(t), 0);
508 665363 : } else if (t && ntp->digits > 0 && a->type.type->eclass == EC_NUM && t->type->eclass == EC_NUM) {
509 359610 : ntp = sql_create_subtype(sql->sa, a->type.type, t->digits, 0);
510 305753 : } else if (t && ntp->scale == 0 && ntp->type->eclass == EC_DEC && EC_VARCHAR(t->type->eclass)) {
511 0 : sql_subtype *res = SA_NEW(sql->sa, sql_subtype);
512 0 : int digits = t->digits?t->digits+3:ntp->digits;
513 0 : (void)sql_find_subtype(res, a->type.type->base.name, digits, 3);
514 0 : ntp = res;
515 305753 : } else if (t && ntp->scale == 0 && ntp->type->eclass == EC_DEC) {
516 4869 : ntp = sql_create_subtype(sql->sa, a->type.type, t->type->eclass == EC_NUM?bits2digits(t->digits):t->digits, t->scale);
517 300884 : } else if (t->type == ntp->type) {
518 298782 : ntp = t;
519 : }
520 1443542 : if (!(e = exp_check_type(sql, ntp, rel, e, type_equal)))
521 : return NULL;
522 1443542 : if (sf->func->fix_scale == SCALE_FIX) {
523 525320 : ntp = sql_create_subtype(sql->sa, a->type.type->localtype?a->type.type:t?t->type:atp->type, digits, scale);
524 525320 : e = exp_fix_scale(sql, ntp, e);
525 918222 : } else if (sf->func->fix_scale == SCALE_EQ) {
526 171239 : e = exp_fix_scale(sql, &a->type, e);
527 : }
528 1443542 : if (maybe_zero_or_one && e->card > CARD_ATOM) {
529 22 : sql_subfunc *zero_or_one = sql_bind_func(sql, "sys", "zero_or_one", exp_subtype(e), NULL, F_AGGR, true, false);
530 22 : e = exp_aggr1(sql->sa, e, zero_or_one, 0, 0, CARD_ATOM, has_nil(e));
531 : }
532 1443542 : append(nexps, e);
533 : }
534 : /* handle any extra arguments for rel_dump/analytic funcs */
535 739464 : for ( ; n; n = n->next)
536 219 : append(nexps, n->data);
537 739245 : if (sf->func->fix_scale == SCALE_FIX || IS_ANALYTIC(sf->func)) {
538 271282 : exps_scale_fix(sf, nexps, atp);
539 467963 : } else if (sf->func->fix_scale == MAX_BITS) {
540 111822 : exps_max_bits(sf, nexps);
541 356141 : } else if (sf->func->fix_scale == SCALE_MUL) {
542 25189 : exps_sum_scales(sf, nexps);
543 330952 : } else if (!internal && sf->func->fix_scale == SCALE_DIV) {
544 2604 : if (!exps_scale_algebra(sql, sf, rel, nexps))
545 : return NULL;
546 328348 : } else if (sf->func->fix_scale == DIGITS_ADD) {
547 181505 : exps_digits_add(sf, nexps);
548 146843 : } else if (sf->func->fix_scale == INOUT) {
549 19223 : exps_inout(sf, nexps);
550 127620 : } else if (is_sum_aggr(sf->func))
551 9322 : exps_largest_int(sf, nexps, rel_get_count(rel));
552 :
553 : /* dirty hack */
554 739243 : if (sf->func->type != F_PROC && sf->func->type != F_UNION && sf->func->type != F_LOADER && res) {
555 734574 : if (res->type->eclass == EC_ANY && atp)
556 73 : sf->res->h->data = sql_create_subtype(sql->sa, atp->type, atp->digits, atp->scale);
557 : }
558 : return nexps;
559 : }
560 :
561 : static char *
562 32 : nary_function_arg_types_2str(mvc *sql, list* types, int N)
563 : {
564 32 : char *arg_list = NULL;
565 32 : int i = 0;
566 :
567 116 : for (node *n = types->h; n && i < N; n = n->next) {
568 84 : sql_subtype *t = (sql_subtype *) n->data;
569 84 : char *tpe = t ? sql_subtype_string(sql->ta, t) : "?";
570 :
571 84 : if (arg_list) {
572 52 : arg_list = sa_message(sql->ta, "%s, %s", arg_list, tpe);
573 : } else {
574 : arg_list = tpe;
575 : }
576 84 : i++;
577 : }
578 32 : return arg_list;
579 : }
580 :
581 : static char *
582 33 : file_loader_add_table_column_types(mvc *sql, sql_subfunc *f, list *exps, list *res_exps, char *tname)
583 : {
584 33 : sql_exp *file = exps->h->data;
585 33 : if (!exp_is_atom(file))
586 : return "Filename missing";
587 :
588 33 : atom *a = file->l;
589 33 : if (a->data.vtype != TYPE_str || !a->data.val.sval)
590 : return "Filename missing";
591 :
592 33 : char *filename = a->data.val.sval;
593 33 : if (strcmp(filename, "") == 0)
594 : return "Filename missing";
595 :
596 31 : char *ext = strrchr(filename, '.'), *ep = ext;
597 :
598 31 : if (ext) {
599 28 : ext = ext + 1;
600 28 : ext = mkLower(sa_strdup(sql->sa, ext));
601 : }
602 28 : if (!ext)
603 3 : return "Filename extension missing";
604 :
605 28 : file_loader_t *fl = fl_find(ext);
606 28 : if (!fl) {
607 : /* maybe compressed */
608 10 : char *p = ep - 1;
609 66 : while (p > filename && *p != '.')
610 56 : p--;
611 10 : if (p != filename) {
612 8 : ext = p + 1;
613 8 : ext = sa_strdup(sql->sa, ext);
614 8 : char *d = strchr(ext, '.');
615 8 : assert(d);
616 8 : *d = 0;
617 8 : fl = fl_find(ext);
618 : }
619 10 : if (!fl) /* fallback */
620 2 : fl = fl_find("csv");
621 2 : if (!fl) /* not expected */
622 0 : return sa_message(sql->ta, "Filename extension '%s' missing", ext?ext:"");
623 : }
624 28 : str err = fl->add_types(sql, f, filename, res_exps, tname);
625 28 : if (err)
626 : return err;
627 14 : sql_subtype *st = sql_bind_localtype("str");
628 14 : sql_exp *ext_exp = exp_atom(sql->sa, atom_string(sql->sa, st, ext));
629 14 : if (!ext_exp)
630 : return MAL_MALLOC_FAIL;
631 14 : append(exps, ext_exp);
632 14 : return NULL;
633 : }
634 :
635 : static sql_rel *
636 33 : rel_file_loader(mvc *sql, list *exps, list *tl, char *tname)
637 : {
638 33 : sql_subfunc *f = NULL;
639 33 : bool found = false;
640 :
641 33 : if ((f = bind_func_(sql, NULL, "file_loader", tl, F_UNION, true, &found, false))) {
642 33 : list *nexps = exps;
643 33 : if (list_empty(tl) || f->func->vararg || (nexps = check_arguments_and_find_largest_any_type(sql, NULL, exps, f, 1, false))) {
644 33 : list *res_exps = sa_list(sql->sa);
645 33 : if (list_length(exps) == 1 && f && f->func->varres && strlen(f->func->mod) == 0 && strlen(f->func->imp) == 0) {
646 33 : char *err = file_loader_add_table_column_types(sql, f, nexps, res_exps, tname);
647 33 : if (err)
648 19 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: file_loader function failed '%s'", err);
649 : }
650 14 : sql_exp *e = exp_op(sql->sa, nexps, f);
651 14 : sql_rel *rel = rel_table_func(sql->sa, NULL, e, res_exps, TABLE_PROD_FUNC);
652 14 : if (rel)
653 14 : rel = rel_project(sql->sa, rel, exps_alias(sql, res_exps));
654 14 : return rel;
655 : }
656 : }
657 : return NULL;
658 : }
659 :
660 : sql_exp *
661 10741 : find_table_function(mvc *sql, char *sname, char *fname, list *exps, list *tl, sql_ftype type)
662 : {
663 10741 : bool found = false;
664 10741 : sql_subfunc *f = NULL;
665 :
666 10741 : assert(type == F_UNION || type == F_LOADER);
667 10741 : if ((f = bind_func_(sql, sname, fname, tl, type, false, &found, false))) {
668 10721 : list *nexps = exps;
669 10721 : if (list_empty(tl) || f->func->vararg || (nexps = check_arguments_and_find_largest_any_type(sql, NULL, exps, f, 1, false)))
670 10721 : return exp_op(sql->sa, nexps, f);
671 0 : found = false;
672 : }
673 20 : char *arg_list = list_length(tl) ? nary_function_arg_types_2str(sql, tl, list_length(tl)) : NULL;
674 55 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: %s %s function %s%s%s'%s'(%s)",
675 20 : found ? "insufficient privileges for" : "no such", type == F_UNION ? "table returning" : "loader", sname ? "'":"", sname ? sname : "",
676 : sname ? "'.":"", fname, arg_list ? arg_list : "");
677 : }
678 :
679 : static sql_rel *
680 10755 : rel_named_table_function(sql_query *query, sql_rel *rel, symbol *ast, int lateral, list *refs)
681 : {
682 10755 : mvc *sql = query->sql;
683 10755 : list *exps = NULL, *tl;
684 10755 : node *m;
685 10755 : exp_kind ek = {type_value, card_relation, TRUE};
686 10755 : sql_rel *sq = NULL, *outer = NULL;
687 10755 : sql_exp *e = NULL;
688 10755 : sql_subfunc *sf = NULL;
689 10755 : symbol *sym = ast->data.lval->h->data.sym, *subquery = NULL;
690 10755 : dnode *l = sym->data.lval->h, *n;
691 10755 : char *tname = NULL;
692 10755 : char *fname = qname_schema_object(l->data.lval);
693 10755 : char *sname = qname_schema(l->data.lval);
694 :
695 10755 : tl = sa_list(sql->sa);
696 10755 : exps = sa_list(sql->sa);
697 10755 : if (l->next)
698 10755 : l = l->next; /* skip distinct */
699 10755 : if (l->next) { /* table call with subquery */
700 1029 : int is_value = 1;
701 1029 : if (l->next->type == type_symbol || l->next->type == type_list) {
702 1029 : exp_kind iek = {type_value, card_set, TRUE};
703 1029 : int count = 0;
704 :
705 1029 : if (l->next->type == type_symbol)
706 : n = l->next;
707 : else
708 673 : n = l->next->data.lval->h;
709 :
710 3654 : for (dnode *m = n; m; m = m->next) {
711 2625 : if (m->type == type_symbol && m->data.sym->token == SQL_SELECT)
712 2625 : subquery = m->data.sym;
713 2625 : count++;
714 : }
715 1029 : if (subquery && count > 1)
716 17 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: The input for the table returning function %s%s%s'%s' must be either a single sub query, or a list of values",
717 : sname ? "'":"", sname ? sname : "", sname ? "'.":"", fname);
718 :
719 1024 : if (subquery) {
720 40 : if (!(sq = rel_subquery(query, subquery, ek)))
721 : return NULL;
722 : is_value = 0;
723 : } else {
724 3548 : for ( ; n; n = n->next) {
725 2570 : sql_exp *e = rel_value_exp(query, &outer, n->data.sym, sql_sel | sql_from, iek);
726 :
727 2570 : if (!e)
728 : return NULL;
729 2564 : append(exps, e);
730 2564 : is_value &= exp_is_atom(e);
731 : }
732 978 : if (!is_value || (lateral && outer))
733 14 : sq = rel_project(sql->sa, NULL, exps);
734 14 : if (lateral && outer) {
735 0 : sq = rel_crossproduct(sql->sa, sq, outer, op_join);
736 0 : set_dependent(sq);
737 0 : set_processed(sq);
738 : }
739 : }
740 : }
741 1017 : if (!is_value && (!sq || (!lateral && outer)))
742 0 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: no such table returning function %s%s%s'%s'", sname ? "'":"", sname ? sname : "", sname ? "'.":"", fname);
743 1017 : if (!is_value) {
744 53 : if (list_length(exps))
745 14 : exps = sa_list(sql->sa);
746 171 : for (node *en = sq->exps->h; en; en = en->next) {
747 118 : sql_exp *e = en->data;
748 :
749 118 : if (!e->alias.label)
750 28 : exp_label(sql->sa, e, ++sql->label);
751 118 : sql_exp *ne = exp_ref(sql, e);
752 : /* allow for table functions with table input */
753 118 : ne->card = CARD_ATOM;
754 118 : exp_setname(sql, ne, tname, exp_name(e));
755 118 : append(exps, ne);
756 118 : append(tl, exp_subtype(e));
757 : }
758 : } else {
759 3503 : for (node *en = exps->h; en; en = en->next)
760 2539 : append(tl, exp_subtype(en->data));
761 : }
762 : }
763 :
764 10743 : rel = NULL;
765 10743 : if (ast->data.lval->t->type == type_symbol && ast->data.lval->t->data.sym)
766 1191 : tname = ast->data.lval->t->data.sym->data.lval->h->data.sval;
767 : else
768 9552 : tname = make_label(sql->sa, ++sql->label);
769 :
770 10743 : if (!sname && strcmp(fname, "file_loader") == 0) {
771 33 : rel = rel_file_loader(sql, exps, tl, tname);
772 33 : if (!rel)
773 : return NULL;
774 20436 : } else if (!(e = find_table_function(sql, sname, fname, list_empty(exps) ? NULL : exps, tl, F_UNION)))
775 : return NULL;
776 :
777 10691 : if (!rel) {
778 10691 : rel = sq;
779 :
780 : /* column or table function */
781 10691 : sf = e->f;
782 10691 : if (e->type != e_func || sf->func->type != F_UNION)
783 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: '%s' does not return a table", exp_func_name(e));
784 :
785 10691 : if (sq) {
786 171 : for (node *n = sq->exps->h, *m = sf->func->ops->h ; n && m ; n = n->next, m = m->next) {
787 118 : sql_exp *e = (sql_exp*) n->data;
788 118 : sql_arg *a = (sql_arg*) m->data;
789 118 : if (!exp_subtype(e) && rel_set_type_param(sql, &(a->type), sq, e, 0) < 0)
790 : return NULL;
791 : }
792 : }
793 :
794 : /* for each column add table.column name */
795 10691 : exps = new_exp_list(sql->sa);
796 105727 : for (m = sf->func->res->h; m; m = m->next) {
797 95036 : sql_arg *a = m->data;
798 95036 : sql_exp *e = exp_column(sql->sa, tname, a->name, &a->type, CARD_MULTI, 1, 0, 0);
799 95036 : e->alias.label = -(sql->nid++);
800 :
801 95036 : set_basecol(e);
802 95036 : append(exps, e);
803 : }
804 21329 : rel = rel_table_func(sql->sa, rel, e, exps, (sq)?TABLE_FROM_RELATION:TABLE_PROD_FUNC);
805 : }
806 10705 : if (ast->data.lval->t->type == type_symbol && ast->data.lval->t->data.sym && ast->data.lval->t->data.sym->data.lval->h->next->data.lval) {
807 25 : rel = rel_table_optname(sql, rel, ast->data.lval->t->data.sym, refs);
808 10680 : } else if (refs) { /* if this relation is under a FROM clause, check for duplicate names */
809 10680 : if (list_find(refs, tname, (fcmp) &strcmp))
810 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: relation name \"%s\" specified more than once", tname);
811 10680 : list_append(refs, tname);
812 : }
813 : return rel;
814 : }
815 :
816 : static sql_exp *
817 1828 : rel_op_(mvc *sql, char *sname, char *fname, exp_kind ek)
818 : {
819 1828 : bool found = false;
820 1828 : sql_subfunc *f = NULL;
821 1828 : sql_ftype type = (ek.card == card_loader)?F_LOADER:((ek.card == card_none)?F_PROC:
822 : ((ek.card == card_relation)?F_UNION:F_FUNC));
823 :
824 1828 : if ((f = bind_func_(sql, sname, fname, NULL, type, false, &found, true))) {
825 1811 : if (check_card(ek.card, f))
826 1811 : return exp_op(sql->sa, NULL, f);
827 0 : found = false;
828 : }
829 34 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: %s operator %s%s%s'%s'()",
830 17 : found ? "insufficient privileges for" : "no such", sname ? "'":"", sname ? sname : "", sname ? "'.":"", fname);
831 : }
832 :
833 : static sql_exp*
834 4106 : exp_tuples_set_supertype(mvc *sql, list *tuple_values, sql_exp *tuples)
835 : {
836 4106 : assert(is_values(tuples));
837 4106 : list *vals = exp_get_values(tuples);
838 4106 : if (!vals || !vals->h)
839 : return NULL;
840 :
841 4106 : int tuple_width = list_length(tuple_values), i;
842 4106 : sql_subtype *types = SA_NEW_ARRAY(sql->sa, sql_subtype, tuple_width);
843 4106 : bool *has_type = SA_NEW_ARRAY(sql->sa, bool, tuple_width);
844 4106 : node *n;
845 :
846 4106 : memset(has_type, 0, sizeof(bool)*tuple_width);
847 13366 : for(n = tuple_values->h, i = 0; n; n = n->next, i++) {
848 9260 : sql_exp *e = n->data;
849 9260 : if (exp_subtype(e)) {
850 9258 : types[i] = *exp_subtype(e);
851 9258 : has_type[i] = 1;
852 : }
853 : }
854 :
855 8214 : for (node *m = vals->h; m; m = m->next) {
856 4108 : sql_exp *tuple = m->data;
857 4108 : if (is_values(tuple)) {
858 3 : list *exps = tuple->f;
859 9 : for(n = exps->h, i = 0; n; n = n->next, i++) {
860 6 : sql_subtype *tpe;
861 6 : sql_exp *e = n->data;
862 :
863 6 : if (has_type[i] && e->type == e_atom && !e->l && !e->r && !e->f && !e->tpe.type) {
864 0 : if (set_type_param(sql, types+i, e->flag) == 0)
865 0 : e->tpe = types[i];
866 : else
867 : return NULL;
868 : }
869 6 : tpe = exp_subtype(e);
870 6 : if (!tpe)
871 : return NULL;
872 6 : if (has_type[i] && tpe) {
873 6 : supertype(types+i, types+i, tpe);
874 : } else {
875 0 : has_type[i] = 1;
876 0 : types[i] = *tpe;
877 : }
878 : }
879 : } else {
880 4105 : sql_rel *tuple_relation = exp_rel_get_rel(sql->sa, tuple);
881 :
882 13363 : for(n = tuple_relation->exps->h, i = 0; n; n = n->next, i++) {
883 9258 : sql_subtype *tpe;
884 9258 : sql_exp *e = n->data;
885 :
886 9258 : if (has_type[i] && e->type == e_atom && !e->l && !e->r && !e->f && !e->tpe.type) {
887 5 : if (set_type_param(sql, types+i, e->flag) == 0)
888 5 : e->tpe = types[i];
889 : else
890 : return NULL;
891 : }
892 9258 : tpe = exp_subtype(e);
893 9258 : if (!tpe)
894 : return NULL;
895 9258 : if (has_type[i] && tpe) {
896 9256 : cmp_supertype(types+i, types+i, tpe);
897 : } else {
898 2 : has_type[i] = 1;
899 2 : types[i] = *tpe;
900 : }
901 : }
902 : }
903 : }
904 :
905 8214 : for (node *m = vals->h; m; m = m->next) {
906 4108 : sql_exp *tuple = m->data;
907 4108 : if (is_values(tuple)) {
908 3 : list *exps = tuple->f;
909 3 : list *nexps = sa_list(sql->sa);
910 9 : for(n = exps->h, i = 0; n; n = n->next, i++) {
911 6 : sql_exp *e = n->data;
912 :
913 6 : e = exp_check_type(sql, types+i, NULL, e, type_equal);
914 6 : if (!e)
915 : return NULL;
916 6 : exp_label(sql->sa, e, ++sql->label);
917 6 : append(nexps, e);
918 : }
919 3 : tuple->f = nexps;
920 : } else {
921 4105 : sql_rel *tuple_relation = exp_rel_get_rel(sql->sa, tuple);
922 :
923 4105 : list *nexps = sa_list(sql->sa);
924 13363 : for(n = tuple_relation->exps->h, i = 0; n; n = n->next, i++) {
925 9258 : sql_exp *e = n->data;
926 :
927 9258 : e = exp_check_type(sql, types+i, NULL, e, type_equal);
928 9258 : if (!e)
929 : return NULL;
930 9258 : append(nexps, e);
931 : }
932 4105 : tuple_relation->exps = nexps;
933 : }
934 : }
935 : return tuples;
936 : }
937 :
938 : static int
939 9260 : rel_binop_check_types(mvc *sql, sql_rel *rel, sql_exp *ls, sql_exp *rs, int upcast)
940 : {
941 9260 : sql_subtype *t1 = exp_subtype(ls), *t2 = exp_subtype(rs);
942 :
943 9260 : if (!t1 || !t2) {
944 2 : if (t2 && !t1 && rel_set_type_param(sql, t2, rel, ls, upcast) < 0)
945 : return -1;
946 2 : if (t1 && !t2 && rel_set_type_param(sql, t1, rel, rs, upcast) < 0)
947 : return -1;
948 : }
949 9260 : if (!exp_subtype(ls) && !exp_subtype(rs)) {
950 0 : (void) sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) on both sides of an expression");
951 0 : return -1;
952 : }
953 : return 0;
954 : }
955 :
956 : static list *
957 4106 : tuples_check_types(mvc *sql, list *tuple_values, sql_exp *tuples)
958 : {
959 4106 : list *tuples_list = exp_get_values(tuples);
960 4106 : sql_exp *first_tuple = tuples_list->h->data;
961 4106 : list *nvalues = sa_list(sql->sa);
962 4106 : if (is_values(first_tuple)) {
963 1 : list *vals = first_tuple->f;
964 :
965 3 : for (node *n = tuple_values->h, *m = vals->h; n && m; n = n->next, m = m->next) {
966 2 : sql_exp *le = n->data, *re = m->data;
967 :
968 2 : if (rel_binop_check_types(sql, NULL, le, re, 0) < 0)
969 : return NULL;
970 2 : if ((le = exp_check_type(sql, exp_subtype(re), NULL, le, type_equal)) == NULL)
971 : return NULL;
972 2 : append(nvalues, le);
973 : }
974 : return nvalues;
975 : } else {
976 4105 : sql_rel *tuple_relation = exp_rel_get_rel(sql->sa, first_tuple);
977 :
978 4105 : assert(list_length(tuple_values) == list_length(tuple_relation->exps));
979 13363 : for (node *n = tuple_values->h, *m = tuple_relation->exps->h; n && m; n = n->next, m = m->next) {
980 9258 : sql_exp *le = n->data, *re = m->data;
981 :
982 9258 : if (rel_binop_check_types(sql, NULL, le, re, 0) < 0)
983 : return NULL;
984 9258 : if ((le = exp_check_type(sql, exp_subtype(re), NULL, le, type_equal)) == NULL)
985 : return NULL;
986 9258 : append(nvalues, le);
987 : }
988 : return nvalues;
989 : }
990 : return tuple_values;
991 : }
992 :
993 : static sql_rel *
994 3755 : rel_values(sql_query *query, symbol *tableref, list *refs)
995 : {
996 3755 : mvc *sql = query->sql;
997 3755 : sql_rel *r = NULL;
998 3755 : dlist *rowlist = tableref->data.lval->h->data.lval;
999 3755 : symbol *optname = tableref->data.lval->t->type == type_symbol ? tableref->data.lval->t->data.sym : NULL;
1000 3755 : node *m;
1001 3755 : list *exps = sa_list(sql->sa);
1002 3755 : exp_kind ek = {type_value, card_value, TRUE};
1003 :
1004 15032 : for (dnode *o = rowlist->h; o; o = o->next) {
1005 11287 : dlist *values = o->data.lval;
1006 :
1007 11287 : if (!list_empty(exps) && list_length(exps) != dlist_length(values)) {
1008 3 : return sql_error(sql, 02, SQLSTATE(42000) "VALUES: number of columns doesn't match between rows");
1009 : } else {
1010 11284 : dnode *n;
1011 :
1012 11284 : if (list_empty(exps)) {
1013 10716 : for (n = values->h; n; n = n->next) {
1014 6961 : sql_exp *vals = exp_values(sql->sa, sa_list(sql->sa));
1015 :
1016 6961 : exp_label(sql->sa, vals, ++sql->label);
1017 6961 : list_append(exps, vals);
1018 : }
1019 : }
1020 34524 : for (n = values->h, m = exps->h; n && m; n = n->next, m = m->next) {
1021 23247 : sql_exp *vals = m->data;
1022 23247 : list *vals_list = vals->f;
1023 23247 : sql_exp *e = rel_value_exp(query, NULL, n->data.sym, sql_sel | sql_values, ek);
1024 23247 : if (!e)
1025 : return NULL;
1026 23240 : list_append(vals_list, e);
1027 : }
1028 : }
1029 : }
1030 :
1031 : /* loop to check types and cardinality */
1032 3745 : unsigned int card = exps->h && list_length(((sql_exp*)exps->h->data)->f) > 1 ? CARD_MULTI : CARD_ATOM;
1033 10689 : for (m = exps->h; m; m = m->next) {
1034 6947 : sql_exp *e = m->data;
1035 :
1036 6947 : if (!(e = exp_values_set_supertype(sql, e, NULL)))
1037 : return NULL;
1038 6944 : e->card = card;
1039 6944 : m->data = e;
1040 : }
1041 :
1042 3742 : r = rel_project(sql->sa, NULL, exps);
1043 3742 : r->nrcols = list_length(exps);
1044 3742 : r->card = card;
1045 3742 : return rel_table_optname(sql, r, optname, refs);
1046 : }
1047 :
1048 : static int
1049 499565 : check_is_lateral(symbol *tableref)
1050 : {
1051 499565 : if (tableref->token == SQL_NAME || tableref->token == SQL_TABLE ||
1052 : tableref->token == SQL_VALUES) {
1053 447301 : if (dlist_length(tableref->data.lval) == 3)
1054 446468 : return tableref->data.lval->h->next->data.i_val;
1055 : return 0;
1056 : } else if (tableref->token == SQL_WITH) {
1057 941 : if (dlist_length(tableref->data.lval) == 4)
1058 5 : return tableref->data.lval->h->next->next->data.i_val;
1059 : return 0;
1060 : } else if (tableref->token == SQL_SELECT) {
1061 3612 : SelectNode *sn = (SelectNode *) tableref;
1062 3612 : return sn->lateral;
1063 : } else if (tableref->token == SQL_EXCEPT || tableref->token == SQL_INTERSECT ||
1064 : tableref->token == SQL_UNION) {
1065 10742 : if (dlist_length(tableref->data.lval) == 6)
1066 9016 : return tableref->data.lval->h->next->next->next->next->data.i_val;
1067 : return 0;
1068 : } else {
1069 : return 0;
1070 : }
1071 : }
1072 :
1073 : static sql_rel *
1074 25 : rel_reduce_on_column_privileges(mvc *sql, sql_rel *rel, sql_table *t)
1075 : {
1076 25 : list *exps = sa_list(sql->sa);
1077 :
1078 99 : for (node *n = rel->exps->h, *m = ol_first_node(t->columns); n && m; n = n->next, m = m->next) {
1079 74 : sql_exp *e = n->data;
1080 74 : sql_column *c = m->data;
1081 :
1082 74 : if (column_privs(sql, c, PRIV_SELECT))
1083 12 : append(exps, e);
1084 : }
1085 25 : if (!list_empty(exps)) {
1086 9 : rel->exps = exps;
1087 9 : return rel;
1088 : }
1089 : return NULL;
1090 : }
1091 :
1092 : sql_rel *
1093 683513 : table_ref(sql_query *query, symbol *tableref, int lateral, list *refs)
1094 : {
1095 683513 : mvc *sql = query->sql;
1096 683513 : char *tname = NULL;
1097 683513 : sql_table *t = NULL;
1098 683513 : sql_rel *res = NULL;
1099 :
1100 683513 : if (tableref->token == SQL_NAME) {
1101 469518 : dlist *name = tableref->data.lval->h->data.lval;
1102 469518 : sql_rel *temp_table = NULL;
1103 469518 : char *sname = qname_schema(name);
1104 469518 : int allowed = 1;
1105 :
1106 469518 : tname = qname_schema_object(name);
1107 :
1108 469518 : if (dlist_length(name) > 2)
1109 4 : return sql_error(sql, 02, SQLSTATE(3F000) "SELECT: only a schema and table name expected");
1110 :
1111 469514 : if (!sname)
1112 113503 : temp_table = stack_find_rel_view(sql, tname);
1113 113503 : if (!temp_table)
1114 452682 : t = find_table_or_view_on_scope(sql, NULL, sname, tname, "SELECT", false);
1115 469514 : if (!t && !temp_table)
1116 : return NULL;
1117 469415 : if (!temp_table && !table_privs(sql, t, PRIV_SELECT))
1118 469415 : allowed = 0;
1119 :
1120 469415 : if (tableref->data.lval->t->type == type_symbol && tableref->data.lval->t->data.sym) /* AS */
1121 275107 : tname = tableref->data.lval->t->data.sym->data.lval->h->data.sval;
1122 469415 : if (temp_table && !t) {
1123 16832 : node *n;
1124 16832 : int needed = !is_simple_project(temp_table->op);
1125 :
1126 16832 : if (is_basetable(temp_table->op) && !temp_table->exps) {
1127 0 : if (strcmp(rel_base_name(temp_table), tname) != 0)
1128 0 : rel_base_rename(temp_table, tname);
1129 : } else {
1130 60214 : for (n = temp_table->exps->h; n && !needed; n = n->next) {
1131 43382 : sql_exp *e = n->data;
1132 :
1133 43382 : if (!exp_relname(e) || strcmp(exp_relname(e), tname) != 0)
1134 : needed = 1;
1135 : }
1136 :
1137 16832 : if (needed) {
1138 6817 : list *exps = rel_projections(sql, temp_table, NULL, 1, 1);
1139 :
1140 6817 : temp_table = rel_project(sql->sa, temp_table, exps);
1141 24458 : for (n = exps->h; n; n = n->next) {
1142 17641 : sql_exp *e = n->data;
1143 :
1144 17641 : noninternexp_setname(sql, e, tname, NULL);
1145 17641 : set_basecol(e);
1146 : }
1147 6817 : list_hash_clear(exps);
1148 : }
1149 : }
1150 16832 : if (temp_table && tableref->data.lval->t->type == type_symbol && tableref->data.lval->t->data.sym && tableref->data.lval->t->data.sym->data.lval->h->next->data.lval) /* AS with column aliases */
1151 1 : temp_table = rel_table_optname(sql, temp_table, tableref->data.lval->t->data.sym, refs);
1152 16832 : if (allowed)
1153 : return temp_table;
1154 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: access denied for %s to table '%s'", get_string_global_var(sql, "current_user"), tname);
1155 452583 : } else if (isView(t)) {
1156 : /* instantiate base view */
1157 69626 : node *n,*m;
1158 69626 : sql_rel *rel;
1159 :
1160 69626 : if (sql->emode == m_deps) {
1161 24430 : rel = rel_basetable(sql, t, tname);
1162 24430 : if (!allowed)
1163 0 : rel_base_disallow(rel);
1164 : } else {
1165 : /* when recreating a view, the view itself can't be found */
1166 45196 : if (sql->objid && sql->objid == t->base.id)
1167 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: attempting to recursively bind view '%s'.'%s'", t->s->base.name, tname);
1168 45195 : rel = rel_parse(sql, t->s, t->query, m_instantiate);
1169 45195 : if (rel && sql->emode == m_deps)
1170 0 : rel = rel_unnest(sql, rel);
1171 : }
1172 :
1173 69623 : if (!rel)
1174 2 : return NULL;
1175 : /* Rename columns of the rel_parse relation */
1176 69623 : if (sql->emode != m_deps) {
1177 45193 : assert(is_project(rel->op));
1178 45193 : set_processed(rel);
1179 45193 : if (is_mset(rel->op) || is_simple_project(rel->op) || (is_groupby(rel->op) && !list_empty(rel->r))) {
1180 : /* it's unsafe to set the projection names because of possible dependent sorting/grouping columns */
1181 45193 : rel = rel_project(sql->sa, rel, rel_projections(sql, rel, NULL, 0, 0));
1182 45193 : set_processed(rel);
1183 : }
1184 408410 : for (n = ol_first_node(t->columns), m = rel->exps->h; n && m; n = n->next, m = m->next) {
1185 363217 : sql_column *c = n->data;
1186 363217 : sql_exp *e = m->data;
1187 :
1188 363217 : exp_setname(sql, e, tname, c->base.name);
1189 363217 : set_basecol(e);
1190 : }
1191 45193 : list_hash_clear(rel->exps);
1192 : }
1193 69623 : if (rel && !allowed && t->query && (rel = rel_reduce_on_column_privileges(sql, rel, t)) == NULL)
1194 16 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: access denied for %s to view '%s.%s'", get_string_global_var(sql, "current_user"), t->s->base.name, tname);
1195 69607 : return rel;
1196 : }
1197 382957 : if ((isMergeTable(t) || isReplicaTable(t)) && list_length(t->members)==0)
1198 14 : return sql_error(sql, 02, SQLSTATE(42000) "%s '%s'.'%s' should have at least one table associated",
1199 14 : TABLE_TYPE_DESCRIPTION(t->type, t->properties), t->s->base.name, tname);
1200 382943 : res = rel_basetable(sql, t, tname);
1201 382943 : if (!allowed) {
1202 53 : rel_base_disallow(res);
1203 53 : if (rel_base_has_column_privileges(sql, res) == 0)
1204 62 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: access denied for %s to %s '%s.%s'", get_string_global_var(sql, "current_user"), isView(t) ? "view" : "table", t->s->base.name, tname);
1205 : }
1206 382912 : if (tableref->data.lval->t->type == type_symbol && tableref->data.lval->t->data.sym && tableref->data.lval->t->data.sym->data.lval->h->next->data.lval) { /* AS with column aliases */
1207 8 : res = rel_table_optname(sql, res, tableref->data.lval->t->data.sym, refs);
1208 382904 : } else if (refs) { /* if this relation is under a FROM clause, check for duplicate names */
1209 382899 : if (list_find(refs, tname, (fcmp) &strcmp))
1210 7 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: relation name \"%s\" specified more than once", tname);
1211 382892 : assert(tname);
1212 382892 : list_append(refs, tname);
1213 : }
1214 382905 : return res;
1215 : } else if (tableref->token == SQL_VALUES) {
1216 1361 : return rel_values(query, tableref, refs);
1217 : } else if (tableref->token == SQL_TABLE) {
1218 10755 : return rel_named_table_function(query, NULL, tableref, lateral, refs);
1219 : } else if (tableref->token == SQL_SELECT) {
1220 98673 : return rel_subquery_optname(query, tableref, refs);
1221 : } else if (tableref->token == SQL_UNION || tableref->token == SQL_EXCEPT || tableref->token == SQL_INTERSECT) {
1222 : /* subqueries will be called, ie no need to test for duplicate references */
1223 42558 : sql_rel *tq = rel_setquery(query, tableref);
1224 :
1225 42558 : if (!tq)
1226 : return NULL;
1227 : /* look for lateral joins */
1228 42555 : symbol *optname = tableref->data.lval->t->type == type_symbol ? tableref->data.lval->t->data.sym : NULL;
1229 42555 : return rel_table_optname(sql, tq, optname, refs);
1230 : } else {
1231 60648 : return query_exp_optname(query, tableref, refs);
1232 : }
1233 : }
1234 :
1235 : static sql_exp *
1236 120873 : rel_exp_variable_on_scope(mvc *sql, const char *sname, const char *vname)
1237 : {
1238 120873 : sql_subtype *tpe = NULL;
1239 120873 : sql_var *var = NULL;
1240 120873 : sql_arg *a = NULL;
1241 120873 : int level = 1;
1242 :
1243 120873 : if (find_variable_on_scope(sql, sname, vname, &var, &a, &tpe, &level, "SELECT")) {
1244 119928 : if (var) /* if variable is known from the stack or a global var */
1245 37356 : return exp_param_or_declared(sql->sa, var->sname ? sa_strdup(sql->sa, var->sname) : NULL, sa_strdup(sql->sa, var->name), &(var->var.tpe), level);
1246 87550 : if (a) /* if variable is a parameter */
1247 87550 : return exp_param_or_declared(sql->sa, NULL, sa_strdup(sql->sa, vname), &(a->type), level);
1248 : }
1249 : return NULL;
1250 : }
1251 :
1252 : static sql_exp *
1253 9247 : exps_get_exp(list *exps, int nth)
1254 : {
1255 9247 : node *n = NULL;
1256 9247 : int i = 0;
1257 :
1258 9247 : if (exps)
1259 27170 : for (n=exps->h, i=1; n && i<nth; n=n->next, i++)
1260 : ;
1261 9247 : if (n && i == nth)
1262 9244 : return n->data;
1263 : return NULL;
1264 : }
1265 :
1266 : static sql_rel *
1267 27680 : rel_find_groupby(sql_rel *groupby)
1268 : {
1269 27680 : if (groupby && !is_processed(groupby) && !is_base(groupby->op)) {
1270 37276 : while(!is_processed(groupby) && !is_base(groupby->op)) {
1271 29478 : if (is_groupby(groupby->op) || !groupby->l)
1272 : break;
1273 : if (groupby->l)
1274 : groupby = groupby->l;
1275 : }
1276 27556 : if (groupby && is_groupby(groupby->op))
1277 19758 : return groupby;
1278 : }
1279 : return NULL;
1280 : }
1281 :
1282 : static int
1283 306 : is_groupby_col(sql_rel *gb, sql_exp *e)
1284 : {
1285 306 : gb = rel_find_groupby(gb);
1286 :
1287 306 : if (gb) {
1288 174 : if (exp_relname(e)) {
1289 163 : if (exp_name(e) && exps_bind_column2(gb->r, exp_relname(e), exp_name(e), NULL))
1290 : return 1;
1291 : } else {
1292 11 : if (exp_name(e) && exps_bind_column(gb->r, exp_name(e), NULL, NULL, 1))
1293 : return 1;
1294 : }
1295 : }
1296 : return 0;
1297 : }
1298 :
1299 : static void
1300 4725 : set_dependent_( sql_rel *r)
1301 : {
1302 4725 : if (is_select(r->op))
1303 3585 : r = r->l;
1304 4725 : if (r && is_join(r->op))
1305 1194 : set_dependent(r);
1306 4725 : }
1307 :
1308 : static
1309 15 : sql_rel* find_union(visitor *v, sql_rel *rel) {
1310 15 : if (rel->op == op_union || rel->op == op_munion)
1311 1 : v->data = rel;
1312 15 : return rel;
1313 : }
1314 :
1315 : static inline
1316 54 : bool group_by_pk_project_uk_cond(mvc* sql, sql_rel* inner, sql_exp* exp,const char* sname, const char* tname) {
1317 54 : sql_table* t = find_table_or_view_on_scope(sql, NULL, sname, tname, "SELECT", false);
1318 54 : bool allow = false;
1319 54 : if (t) {
1320 17 : sql_idx* pki = NULL;
1321 17 : list *ukil = sa_list(sql->sa);
1322 :
1323 23 : for (node * n = ol_first_node(t->idxs); n; n = n->next) {
1324 6 : sql_idx *i = n->data;
1325 6 : if (!i->key)
1326 1 : continue;
1327 5 : switch (i->key->type) {
1328 3 : case pkey:
1329 3 : pki = i;
1330 3 : continue;
1331 2 : case ukey:
1332 : case unndkey:
1333 2 : list_append(ukil, i);
1334 2 : continue;
1335 0 : default:
1336 0 : continue;
1337 : }
1338 : }
1339 17 : if (pki && pki->columns->cnt == 1 && inner->r && ((list*) inner->r)->cnt == 1) {
1340 : /* for now only check simple case where primary key and group by expression is a single column*/
1341 3 : sql_exp* gbe = ((list*) inner->r)->h->data;
1342 3 : sql_column* pkc = ((sql_kc *)pki->columns->h->data)->c;
1343 3 : if (gbe->type == e_column && strcmp(gbe->alias.name, pkc->base.name) == 0) {
1344 2 : node *n;
1345 2 : for (n = ukil->h; n; n = n->next){
1346 2 : sql_idx* uki = n->data;
1347 2 : if (uki->columns->cnt == 1) {
1348 : /* for now only check simple case where unique key is a single column*/
1349 2 : sql_column* ukc = ((sql_kc *)uki->columns->h->data)->c;
1350 2 : if (strcmp(exp->alias.name, ukc->base.name) == 0) {
1351 : allow = true;
1352 : break;
1353 : }
1354 : }
1355 : }
1356 : }
1357 : }
1358 :
1359 2 : if (allow) {
1360 : /* sufficiency condition: abort if relation contains union subrelation
1361 : * because it may break functional dependency between pk and uk */
1362 2 : visitor v = {.sql=sql};
1363 2 : rel_visitor_topdown(&v, inner, &find_union);
1364 2 : if (v.data)
1365 1 : allow = false;
1366 : }
1367 : }
1368 :
1369 54 : return allow;
1370 :
1371 : }
1372 :
1373 : static sql_exp *
1374 2347478 : rel_column_ref(sql_query *query, sql_rel **rel, symbol *column_r, int f)
1375 : {
1376 2347478 : mvc *sql = query->sql;
1377 2347478 : sql_exp *exp = NULL;
1378 2347478 : dlist *l = NULL;
1379 2347478 : sql_rel *inner = rel?*rel:NULL, *outer = NULL;
1380 2347478 : int used_lower_after_processed = 0;
1381 :
1382 2347478 : assert((column_r->token == SQL_COLUMN || column_r->token == SQL_IDENT) && column_r->type == type_list);
1383 2347478 : l = column_r->data.lval;
1384 :
1385 2347478 : if (dlist_length(l) == 1) {
1386 1106189 : const char *name = l->h->data.sval;
1387 :
1388 1106189 : if (!exp && inner)
1389 1011840 : if (!(exp = rel_bind_column(sql, inner, name, f, 0)) && sql->session->status == -ERR_AMBIGUOUS)
1390 : return NULL;
1391 1106175 : if (!exp && inner && ((is_sql_aggr(f) && (is_groupby(inner->op) || is_select(inner->op))) ||
1392 23907 : (is_groupby(inner->op) && inner->flag))) {
1393 : /* if inner is selection, ie having clause, get the left relation to reach group by */
1394 : sql_rel *gp = inner;
1395 258 : while (gp && is_select(gp->op))
1396 27 : gp = gp->l;
1397 231 : if (gp && !is_basetable(gp->op) && gp->l && !(exp = rel_bind_column(sql, gp->l, name, f, 0)) && sql->session->status == -ERR_AMBIGUOUS)
1398 : return NULL;
1399 : }
1400 1106175 : if (!exp && query && query_has_outer(query)) {
1401 448 : int i;
1402 :
1403 501 : for (i=query_has_outer(query)-1; i>= 0 && !exp && (outer = query_fetch_outer(query,i)); i--) {
1404 472 : if (!(exp = rel_bind_column(sql, outer, name, f, 0)) && sql->session->status == -ERR_AMBIGUOUS)
1405 : return NULL;
1406 84 : if (!exp && is_groupby(outer->op)) {
1407 31 : if (!(exp = rel_bind_column(sql, outer->l, name, f, 0)) && sql->session->status == -ERR_AMBIGUOUS)
1408 : return NULL;
1409 : else
1410 31 : used_lower_after_processed = is_processed(outer);
1411 : }
1412 472 : if (exp && is_simple_project(outer->op) && !rel_find_exp(outer, exp))
1413 0 : exp = rel_project_add_exp(sql, outer, exp);
1414 419 : if (exp)
1415 : break;
1416 : }
1417 448 : if (exp && exp->card != CARD_AGGR && is_groupby(outer->op) && !is_sql_aggr(f) && rel_find_exp(outer->l, exp))
1418 5 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", name);
1419 443 : if (exp && outer && outer->card <= CARD_AGGR && exp->card > CARD_AGGR && !is_sql_aggr(f))
1420 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", name);
1421 443 : if (exp && outer && !is_sql_aggr(f) && !is_sql_aggr(query_fetch_outer_state(query, i))) {
1422 275 : if (used_lower_after_processed || query_outer_used_exp( query, i, exp, f)) {
1423 0 : sql_exp *lu = used_lower_after_processed?exp:query_outer_last_used(query, i);
1424 0 : if (exp_name(lu) && exp_relname(lu) && !has_label(lu))
1425 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column \"%s.%s\" from outer query", exp_relname(lu), exp_name(lu));
1426 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column from outer query");
1427 : }
1428 : }
1429 443 : if (exp) {
1430 414 : int of = query_fetch_outer_state(query, i);
1431 414 : if (is_groupby(outer->op) && !is_sql_aggr(f)) {
1432 37 : exp = rel_groupby_add_aggr(sql, outer, exp);
1433 37 : exp->card = CARD_ATOM;
1434 377 : } else if (is_groupby(outer->op) && is_sql_aggr(f) && exps_any_match(outer->exps, exp))
1435 57 : exp = exp_ref(sql, exp);
1436 : else
1437 320 : exp->card = CARD_ATOM;
1438 414 : set_freevar(exp, i);
1439 : /*
1440 : if (exp->alias.label == exp->nid)
1441 : exp->alias.label = -(sql->nid++);
1442 : */
1443 414 : if (!is_sql_where(of) && !is_sql_aggr(of) && !is_sql_aggr(f) && !outer->grouped)
1444 125 : set_outer(outer);
1445 : }
1446 443 : if (exp && outer && (is_select(outer->op) || is_join(outer->op)))
1447 31 : set_dependent_(outer);
1448 : }
1449 :
1450 : /* some views are just in the stack, like before and after updates views */
1451 1106170 : if (rel && sql->use_views) {
1452 13 : sql_rel *v = NULL;
1453 13 : int dup = stack_find_rel_view_projection_columns(sql, name, &v); /* trigger views are basetables relations, so those may conflict */
1454 :
1455 13 : if (dup < 0 || (v && exp && *rel && is_base(v->op) && v != *rel)) /* comparing pointers, ugh */
1456 2 : return sql_error(sql, ERR_AMBIGUOUS, SQLSTATE(42000) "SELECT: identifier '%s' ambiguous", name);
1457 11 : if (v && !exp) {
1458 4 : if (*rel)
1459 1 : *rel = rel_crossproduct(sql->sa, *rel, rel_dup(v), op_join);
1460 : else
1461 3 : *rel = rel_dup(v);
1462 4 : exp = rel_bind_column(sql, *rel, name, f, 0);
1463 : }
1464 : }
1465 1106168 : if (!exp) /* If no column was found, try a variable or parameter */
1466 117866 : exp = rel_exp_variable_on_scope(sql, NULL, name);
1467 :
1468 117866 : if (!exp) {
1469 945 : if (inner && !is_sql_aggr(f) && is_groupby(inner->op) && inner->l && (exp = rel_bind_column(sql, inner->l, name, f, 0)))
1470 49 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", name);
1471 : }
1472 :
1473 1105223 : if (!exp)
1474 896 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: identifier '%s' unknown", name);
1475 1105223 : if (exp && inner && inner->card <= CARD_AGGR && exp->card > CARD_AGGR && (is_sql_sel(f) || is_sql_having(f)) && (!is_sql_aggr(f) && !(inner->flag)))
1476 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", name);
1477 1105223 : if (exp && inner && is_groupby(inner->op) && !is_sql_aggr(f) && !is_freevar(exp) && !inner->flag)
1478 25016 : exp = rel_groupby_add_aggr(sql, inner, exp);
1479 1241289 : } else if (dlist_length(l) == 2 || dlist_length(l) == 3) {
1480 1241289 : const char *sname = NULL;
1481 1241289 : const char *tname = l->h->data.sval;
1482 1241289 : const char *cname = l->h->next->data.sval;
1483 1241289 : if (dlist_length(l) == 3) {
1484 1 : sname = l->h->data.sval;
1485 1 : tname = l->h->next->data.sval;
1486 1 : cname = l->h->next->next->data.sval;
1487 : }
1488 :
1489 1241289 : if (!exp && rel && inner)
1490 1241162 : if (!(exp = rel_bind_column3(sql, inner, sname, tname, cname, f)) && sql->session->status == -ERR_AMBIGUOUS)
1491 : return NULL;
1492 1241288 : if (!exp && inner && is_sql_aggr(f) && (is_groupby(inner->op) || is_select(inner->op))) {
1493 : /* if inner is selection, ie having clause, get the left relation to reach group by */
1494 : sql_rel *gp = inner;
1495 56 : while (gp && is_select(gp->op))
1496 4 : gp = gp->l;
1497 52 : if (gp && !is_basetable(gp->op) && gp->l && !(exp = rel_bind_column3(sql, gp->l, sname, tname, cname, f)) && sql->session->status == -ERR_AMBIGUOUS)
1498 : return NULL;
1499 : }
1500 1241288 : if (!exp && query && query_has_outer(query)) {
1501 11812 : int i;
1502 :
1503 12022 : for (i=query_has_outer(query)-1; i>= 0 && !exp && (outer = query_fetch_outer(query,i)); i--) {
1504 12021 : if (!(exp = rel_bind_column3(sql, outer, sname, tname, cname, f | sql_outer)) && sql->session->status == -ERR_AMBIGUOUS)
1505 : return NULL;
1506 293 : if (!exp && is_groupby(outer->op)) {
1507 102 : if (!(exp = rel_bind_column3(sql, outer->l, sname, tname, cname, f)) && sql->session->status == -ERR_AMBIGUOUS)
1508 : return NULL;
1509 : else
1510 102 : used_lower_after_processed = is_processed(outer);
1511 : }
1512 12021 : if (exp && is_simple_project(outer->op) && !rel_find_exp(outer, exp))
1513 0 : exp = rel_project_add_exp(sql, outer, exp);
1514 11811 : if (exp)
1515 : break;
1516 : }
1517 11812 : if (exp && exp->card != CARD_AGGR && is_groupby(outer->op) && !is_sql_aggr(f) && rel_find_exp(outer->l, exp))
1518 6 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", tname, cname);
1519 11806 : if (exp && outer && outer->card <= CARD_AGGR && exp->card > CARD_AGGR && !is_sql_aggr(f))
1520 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", tname, cname);
1521 11806 : if (exp && outer && !is_sql_aggr(f)) {
1522 11531 : if (used_lower_after_processed || query_outer_used_exp( query, i, exp, f)) {
1523 0 : sql_exp *lu = used_lower_after_processed?exp:query_outer_last_used(query, i);
1524 0 : if (exp_name(lu) && exp_relname(lu) && !has_label(lu))
1525 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column \"%s.%s\" from outer query", exp_relname(lu), exp_name(lu));
1526 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column from outer query");
1527 : }
1528 : }
1529 11806 : if (exp) {
1530 11805 : int of = query_fetch_outer_state(query, i);
1531 11805 : if (is_groupby(outer->op) && !is_sql_aggr(f)) {
1532 64 : exp = rel_groupby_add_aggr(sql, outer, exp);
1533 64 : exp->card = CARD_ATOM;
1534 11741 : } else if (is_groupby(outer->op) && is_sql_aggr(f) && exps_any_match(outer->exps, exp))
1535 52 : exp = exp_ref(sql, exp);
1536 : else
1537 11689 : exp->card = CARD_ATOM;
1538 11805 : set_freevar(exp, i);
1539 : /*
1540 : if (exp->alias.label == exp->nid)
1541 : exp->alias.label = -(sql->nid++);
1542 : */
1543 11805 : if (!is_sql_where(of) && !is_sql_aggr(of) && !is_sql_aggr(f) && !outer->grouped)
1544 10113 : set_outer(outer);
1545 : }
1546 11806 : if (exp && outer && (is_select(outer->op) || is_join(outer->op)))
1547 4694 : set_dependent_(outer);
1548 : }
1549 :
1550 : /* some views are just in the stack, like before and after updates views */
1551 1241282 : if (rel && sql->use_views) {
1552 40 : sql_rel *v = stack_find_rel_view(sql, tname);
1553 :
1554 40 : if (v && exp && *rel && is_base(v->op) && v != *rel) /* trigger views are basetables relations, so those may conflict */
1555 0 : return sql_error(sql, ERR_AMBIGUOUS, SQLSTATE(42000) "SELECT: identifier '%s.%s' ambiguous", tname, cname);
1556 40 : if (v && !exp) {
1557 20 : if (*rel)
1558 0 : *rel = rel_crossproduct(sql->sa, *rel, rel_dup(v), op_join);
1559 : else
1560 20 : *rel = rel_dup(v);
1561 20 : if (!(exp = rel_bind_column3(sql, *rel, sname, tname, cname, f)) && sql->session->status == -ERR_AMBIGUOUS)
1562 : return NULL;
1563 : }
1564 : }
1565 1241262 : if (!exp) { /* If no column was found, try a global variable */
1566 66270 : sql_var *var = NULL;
1567 66270 : sql_subtype *tpe = NULL;
1568 66270 : int level = 0;
1569 66270 : sql_arg *a = NULL;
1570 :
1571 66270 : if (find_variable_on_scope(sql, tname, cname, &var, &a, &tpe, &level, "SELECT")) { /* search schema with table name, ugh */
1572 10 : assert(level == 0);
1573 10 : exp = exp_param_or_declared(sql->sa, sa_strdup(sql->sa, var->sname), sa_strdup(sql->sa, var->name), &(var->var.tpe), 0);
1574 : }
1575 : }
1576 66270 : if (!exp) {
1577 66260 : if (inner && !is_sql_aggr(f) && is_groupby(inner->op) && inner->l && (exp = rel_bind_column3(sql, inner->l, sname, tname, cname, f))) {
1578 54 : if (group_by_pk_project_uk_cond(sql, inner, exp, sname, tname)) {
1579 : /* SQL23 feature: very special case where primary key is used in GROUP BY expression and
1580 : * unique key is in the project list or ORDER BY clause */
1581 1 : sql->session->status = 0;
1582 1 : sql->errstr[0] = 0;
1583 1 : exp->card = CARD_AGGR;
1584 1 : list_append(inner->exps, exp);
1585 : }
1586 : else
1587 53 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", tname, cname);
1588 : }
1589 : }
1590 :
1591 1 : if (!exp)
1592 66206 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42S22) "SELECT: no such column '%s.%s'", tname, cname);
1593 1175023 : if (exp && inner && inner->card <= CARD_AGGR && exp->card > CARD_AGGR && (is_sql_sel(f) || is_sql_having(f)) && !is_sql_aggr(f))
1594 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", tname, cname);
1595 1175023 : if (exp && inner && is_groupby(inner->op) && !is_sql_aggr(f) && !is_freevar(exp))
1596 5655 : exp = rel_groupby_add_aggr(sql, inner, exp);
1597 0 : } else if (dlist_length(l) > 3) {
1598 0 : return sql_error(sql, 02, SQLSTATE(42000) "cross-database references are not implemented");
1599 : }
1600 2280246 : if (exp && !exp_is_atom(exp) && rel && !outer) {
1601 2151102 : if (query->last_exp && query->last_rel == *rel && !is_sql_aggr(query->last_state) && is_sql_aggr(f)) {
1602 55 : if (!is_groupby(query->last_rel->op) || list_empty(query->last_rel->r) || !exps_find_exp(query->last_rel->r, query->last_exp)) {
1603 34 : if (exp_relname(query->last_exp) && exp_name(query->last_exp) && !has_label(query->last_exp))
1604 34 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", exp_relname(query->last_exp), exp_name(query->last_exp));
1605 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
1606 : }
1607 : }
1608 2151068 : query->prev = query->last_exp;
1609 2151068 : query->last_exp = exp;
1610 2151068 : query->last_state = f;
1611 2151068 : query->last_rel = *rel;
1612 : }
1613 : return exp;
1614 : }
1615 :
1616 : int
1617 985716 : rel_convert_types(mvc *sql, sql_rel *ll, sql_rel *rr, sql_exp **L, sql_exp **R, int scale_fixing, check_type tpe)
1618 : {
1619 985716 : sql_exp *ls = *L;
1620 985716 : sql_exp *rs = *R;
1621 985716 : sql_subtype *lt = exp_subtype(ls);
1622 985716 : sql_subtype *rt = exp_subtype(rs);
1623 :
1624 985716 : if (!rt && !lt) {
1625 2 : sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) on both sides of an expression");
1626 2 : return -1;
1627 : }
1628 985714 : if (rt && (!lt || !lt->type))
1629 7 : return rel_set_type_param(sql, rt, ll, ls, 0);
1630 985707 : if (lt && (!rt || !rt->type))
1631 648 : return rel_set_type_param(sql, lt, rr, rs, 0);
1632 :
1633 985059 : if (rt && lt) {
1634 985059 : sql_subtype *i = lt;
1635 985059 : sql_subtype *r = rt;
1636 :
1637 985059 : if (subtype_cmp(lt, rt) != 0 || (tpe == type_equal_no_any && (lt->type->localtype==0 || rt->type->localtype==0))) {
1638 270160 : sql_subtype super;
1639 :
1640 270160 : cmp_supertype(&super, r, i);
1641 270160 : if (scale_fixing) {
1642 : /* convert ls to super type */
1643 270160 : ls = exp_check_type(sql, &super, ll, ls, tpe);
1644 : /* convert rs to super type */
1645 270160 : rs = exp_check_type(sql, &super, rr, rs, tpe);
1646 : } else {
1647 : /* convert ls to super type */
1648 0 : super.scale = lt->scale;
1649 0 : ls = exp_check_type(sql, &super, ll, ls, tpe);
1650 : /* convert rs to super type */
1651 0 : super.scale = rt->scale;
1652 0 : rs = exp_check_type(sql, &super, rr, rs, tpe);
1653 : }
1654 : }
1655 985059 : *L = ls;
1656 985059 : *R = rs;
1657 985059 : if (!ls || !rs)
1658 : return -1;
1659 : return 0;
1660 : }
1661 : return -1;
1662 : }
1663 :
1664 : static sql_rel *
1665 108855 : push_select_exp(mvc *sql, sql_rel *rel, sql_exp *e, sql_exp *ls, int f)
1666 : {
1667 108855 : if (is_outerjoin(rel->op)) {
1668 1178 : if ((is_left(rel->op) || is_full(rel->op)) && rel_find_exp(rel->l, ls)) {
1669 38 : rel_join_add_exp(sql->sa, rel, e);
1670 38 : return rel;
1671 1140 : } else if ((is_right(rel->op) || is_full(rel->op)) && rel_find_exp(rel->r, ls)) {
1672 5 : rel_join_add_exp(sql->sa, rel, e);
1673 5 : return rel;
1674 : }
1675 1135 : if (is_left(rel->op) && rel_find_exp(rel->r, ls)) {
1676 1109 : rel->r = rel_push_select(sql, rel->r, ls, e, f);
1677 1109 : return rel;
1678 26 : } else if (is_right(rel->op) && rel_find_exp(rel->l, ls)) {
1679 11 : rel->l = rel_push_select(sql, rel->l, ls, e, f);
1680 11 : return rel;
1681 : }
1682 : }
1683 : /* push select into the given relation */
1684 107692 : return rel_push_select(sql, rel, ls, e, f);
1685 : }
1686 :
1687 : static sql_rel *
1688 206006 : push_join_exp(mvc *sql, sql_rel *rel, sql_exp *e, sql_exp *L, sql_exp *R, sql_exp *R2, int f)
1689 : {
1690 206006 : sql_rel *r;
1691 206006 : if (/*is_semi(rel->op) ||*/ (is_outerjoin(rel->op) && !is_processed((rel)))) {
1692 22219 : rel_join_add_exp(sql->sa, rel, e);
1693 22219 : return rel;
1694 : }
1695 : /* push join into the given relation */
1696 183787 : if ((r = rel_push_join(sql, rel, L, R, R2, e, f)) != NULL)
1697 : return r;
1698 0 : rel_join_add_exp(sql->sa, rel, e);
1699 0 : return rel;
1700 : }
1701 :
1702 : static sql_rel *
1703 3375 : rel_select_push_filter_exp_down(mvc *sql, sql_rel *rel, sql_exp *e, list *l, list *r, int ff)
1704 : {
1705 3375 : sql_exp *ll, *rr;
1706 3375 : if (exps_card(r) <= CARD_ATOM && (exps_are_atoms(r) || exps_have_freevar(sql, r) || exps_have_freevar(sql, l))) {
1707 3279 : if (exps_card(l) == exps_card(r) || rel->processed) /* bin compare op */
1708 98 : return rel_select(sql->sa, rel, e);
1709 3181 : if ((ll = exps_find_one_multi_exp(l)))
1710 3181 : return push_select_exp(sql, rel, e, ll, ff);
1711 96 : } else if ((ll = exps_find_one_multi_exp(l)) && (rr = exps_find_one_multi_exp(r))) { /* join */
1712 57 : return push_join_exp(sql, rel, e, ll, rr, NULL, ff);
1713 : }
1714 39 : if (is_outerjoin(rel->op))
1715 3 : return rel_select(sql->sa, rel, e);
1716 36 : return rel_select_add_exp(sql->sa, rel, e);
1717 : }
1718 :
1719 : static sql_rel *
1720 3374 : rel_filter(mvc *sql, sql_rel *rel, list *l, list *r, char *sname, char *filter_op, int anti, int ff)
1721 : {
1722 3374 : node *n;
1723 3374 : sql_exp *e = NULL;
1724 3374 : sql_subfunc *f = NULL;
1725 3374 : list *tl = sa_list(sql->sa);
1726 3374 : bool found = false;
1727 :
1728 6748 : for (n = l->h; n; n = n->next){
1729 3374 : sql_exp *e = n->data;
1730 :
1731 3374 : list_append(tl, exp_subtype(e));
1732 : }
1733 13419 : for (n = r->h; n; n = n->next){
1734 10045 : sql_exp *e = n->data;
1735 :
1736 10045 : list_append(tl, exp_subtype(e));
1737 : }
1738 : /* find filter function */
1739 3374 : f = bind_func_(sql, sname, filter_op, tl, F_FILT, false, &found, false);
1740 3374 : if (f) {
1741 3372 : node *n,*m = f->func->ops->h;
1742 3372 : list *nexps = sa_list(sql->sa);
1743 :
1744 6744 : for(n=l->h; m && n; m = m->next, n = n->next) {
1745 3372 : sql_arg *a = m->data;
1746 3372 : sql_exp *e = n->data;
1747 :
1748 3372 : e = exp_check_type(sql, &a->type, rel, e, type_equal);
1749 3372 : if (!e)
1750 : return NULL;
1751 3372 : list_append(nexps, e);
1752 : }
1753 3372 : l = nexps;
1754 3372 : nexps = sa_list(sql->sa);
1755 13409 : for(n=r->h; m && n; m = m->next, n = n->next) {
1756 10037 : sql_arg *a = m->data;
1757 10037 : sql_exp *e = n->data;
1758 :
1759 10037 : e = exp_check_type(sql, &a->type, rel, e, type_equal);
1760 10037 : if (!e)
1761 : return NULL;
1762 10037 : list_append(nexps, e);
1763 : }
1764 : r = nexps;
1765 : }
1766 3374 : if (!f)
1767 4 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: %s FILTER function %s%s%s'%s'",
1768 2 : found ? "insufficient privileges for" : "no such", sname ? "'":"", sname ? sname : "", sname ? "'.":"", filter_op);
1769 3372 : e = exp_filter(sql->sa, l, r, f, anti);
1770 :
1771 3372 : if (exps_one_is_rel(l) || exps_one_is_rel(r)) /* uncorrelated subquery case */
1772 9 : return rel_select(sql->sa, rel, e);
1773 : /* atom or row => select */
1774 6726 : for (node *n=l->h; n; n = n->next) {
1775 3363 : sql_exp *ls = n->data;
1776 :
1777 3363 : if (ls->card > rel->card) {
1778 0 : if (exp_name(ls) && !has_label(ls))
1779 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", exp_name(ls));
1780 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
1781 : }
1782 : }
1783 13373 : for (node *n=r->h; n; n = n->next) {
1784 10010 : sql_exp *rs = n->data;
1785 :
1786 10010 : if (rs->card > rel->card) {
1787 0 : if (exp_name(rs) && !has_label(rs))
1788 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", exp_name(rs));
1789 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
1790 : }
1791 : }
1792 3363 : return rel_select_push_filter_exp_down(sql, rel, e, l, r, ff);
1793 : }
1794 :
1795 : static sql_rel *
1796 3314 : rel_filter_exp_(mvc *sql, sql_rel *rel, sql_exp *ls, sql_exp *r1, sql_exp *r2, sql_exp *r3, char *filter_op, int anti, int f)
1797 : {
1798 3314 : list *l = sa_list(sql->sa);
1799 3314 : list *r = sa_list(sql->sa);
1800 :
1801 3314 : list_append(l, ls);
1802 3314 : list_append(r, r1);
1803 3314 : if (r2)
1804 3314 : list_append(r, r2);
1805 3314 : if (r3)
1806 3314 : list_append(r, r3);
1807 3314 : return rel_filter(sql, rel, l, r, "sys", filter_op, anti, f);
1808 : }
1809 :
1810 : static sql_rel *
1811 378997 : rel_select_push_compare_exp_down(mvc *sql, sql_rel *rel, sql_exp *e, sql_exp *ls, sql_exp *rs, sql_exp *rs2, int f)
1812 : {
1813 378997 : if (!is_join(rel->op) && !is_select(rel->op))
1814 85020 : return rel_select(sql->sa, rel, e);
1815 382541 : if ((rs->card <= CARD_ATOM || (rs2 && ls->card <= CARD_ATOM)) &&
1816 177128 : (exp_is_atom(rs) || (rs2 && exp_is_atom(ls)) || exp_has_freevar(sql, rs) || exp_has_freevar(sql, ls)) &&
1817 485 : (!rs2 || (rs2->card <= CARD_ATOM && (exp_is_atom(rs2) || exp_has_freevar(sql, rs2))))) {
1818 88028 : if (ls->card == rs->card || (rs2 && (ls->card == rs2->card || rs->card == rs2->card)) || rel->processed) /* bin compare op */
1819 994 : return rel_select(sql->sa, rel, e);
1820 :
1821 87034 : return push_select_exp(sql, rel, e, ls, f);
1822 : } else { /* join */
1823 205949 : return push_join_exp(sql, rel, e, ls, rs, rs2, f);
1824 : }
1825 : return rel;
1826 : }
1827 :
1828 : static sql_rel *
1829 352367 : rel_compare_exp_(sql_query *query, sql_rel *rel, sql_exp *ls, sql_exp *rs, sql_exp *rs2, int type, int anti, int quantifier, int f, int symmetric, int is_semantics)
1830 : {
1831 352367 : mvc *sql = query->sql;
1832 352367 : sql_exp *e = NULL;
1833 :
1834 352367 : if (quantifier || exp_is_rel(ls) || exp_is_rel(rs) || (rs2 && exp_is_rel(rs2))) {
1835 3312 : if (rs2) {
1836 7 : e = exp_compare2(sql->sa, ls, rs, rs2, type, symmetric);
1837 7 : if (anti)
1838 0 : set_anti(e);
1839 : } else {
1840 3305 : assert(!symmetric);
1841 3305 : if (rel_convert_types(sql, rel, rel, &ls, &rs, 1, type_equal_no_any) < 0)
1842 : return NULL;
1843 3305 : e = exp_compare_func(sql, ls, rs, compare_func((comp_type)type, anti), quantifier);
1844 : }
1845 3312 : return rel_select(sql->sa, rel, e);
1846 349055 : } else if (!rs2) {
1847 346108 : assert(!symmetric);
1848 346108 : if (ls->card < rs->card) {
1849 12636 : sql_exp *swap = ls;
1850 12636 : ls = rs;
1851 12636 : rs = swap;
1852 12636 : type = (int)swap_compare((comp_type)type);
1853 : }
1854 346108 : if (rel_convert_types(sql, rel, rel, &ls, &rs, 1, type_equal_no_any) < 0)
1855 : return NULL;
1856 346105 : e = exp_compare(sql->sa, ls, rs, type);
1857 346105 : if (is_semantics) set_semantics(e);
1858 : } else {
1859 2947 : assert(rs2);
1860 2947 : if (rel_convert_types(sql, rel, rel, &ls, &rs, 1, type_equal_no_any) < 0)
1861 : return NULL;
1862 2947 : if (!(rs2 = exp_check_type(sql, exp_subtype(ls), rel, rs2, type_equal)))
1863 : return NULL;
1864 2947 : e = exp_compare2(sql->sa, ls, rs, rs2, type, symmetric);
1865 : }
1866 349052 : if (anti)
1867 847 : set_anti(e);
1868 :
1869 349052 : if (!rel)
1870 0 : return rel_select(sql->sa, rel_project_exp(sql, exp_atom_bool(sql->sa, 1)), e);
1871 :
1872 : /* atom or row => select */
1873 349052 : if (ls->card > rel->card || rs->card > rel->card || (rs2 && rs2->card > rel->card)) {
1874 0 : sql_exp *e = ls->card > rel->card ? ls : rs->card > rel->card ? rs : rs2;
1875 0 : if (exp_name(e) && !has_label(e))
1876 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", exp_name(e));
1877 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
1878 : }
1879 349052 : return rel_select_push_compare_exp_down(sql, rel, e, ls, rs, rs2, f);
1880 : }
1881 :
1882 : static sql_rel *
1883 349413 : rel_compare_exp(sql_query *query, sql_rel *rel, sql_exp *ls, sql_exp *rs, char *compare_op, int reduce, int quantifier, int need_not, int f, int is_semantics)
1884 : {
1885 349413 : mvc *sql = query->sql;
1886 349413 : comp_type type = cmp_equal;
1887 :
1888 349413 : if (!ls || !rs)
1889 : return NULL;
1890 :
1891 349413 : if (!quantifier && ((!rel && !query_has_outer(query)) || !reduce)) {
1892 : /* TODO to handle filters here */
1893 0 : sql_exp *e;
1894 :
1895 0 : if (rel_convert_types(sql, rel, rel, &ls, &rs, 1, type_equal_no_any) < 0)
1896 : return NULL;
1897 0 : e = rel_binop_(sql, rel, ls, rs, "sys", compare_op, card_value, true);
1898 :
1899 0 : if (!e)
1900 : return NULL;
1901 0 : if (!reduce) {
1902 0 : if (rel->op == op_project) {
1903 0 : append(rel->exps, e);
1904 : } else {
1905 0 : list *exps = new_exp_list(sql->sa);
1906 :
1907 0 : append(exps, e);
1908 0 : return rel_project(sql->sa, rel, exps);
1909 : }
1910 : } else {
1911 0 : return rel_select(sql->sa, rel, e);
1912 : }
1913 : }
1914 349413 : type = compare_str2type(compare_op);
1915 349413 : assert(type != cmp_filter);
1916 349413 : return rel_compare_exp_(query, rel, ls, rs, NULL, type, need_not, quantifier, f, 0, is_semantics);
1917 : }
1918 :
1919 : static sql_rel *
1920 349393 : rel_compare(sql_query *query, sql_rel *rel, symbol *sc, symbol *lo, symbol *ro, char *compare_op, int f, exp_kind k, int quantifier, int is_semantics)
1921 : {
1922 349393 : mvc *sql = query->sql;
1923 349393 : sql_exp *rs = NULL, *ls;
1924 349393 : comp_type cmp_type = compare_str2type(compare_op);
1925 349393 : exp_kind ek = {type_value, card_column, FALSE};
1926 349393 : int need_not = 0;
1927 :
1928 349393 : if ((quantifier == 1 && cmp_type == cmp_equal) ||
1929 349358 : (quantifier == 2 && cmp_type == cmp_notequal)) {
1930 63 : dnode *n = sc->data.lval->h;
1931 63 : dlist *dl = dlist_create(sql->sa);
1932 : /* map into IN/NOT IN */
1933 63 : sc->token = cmp_type==cmp_equal?SQL_IN:SQL_NOT_IN;
1934 63 : n->next->type = type_list;
1935 63 : n->next->data.lval = dl;
1936 63 : n->next->next->next = NULL; /* remove quantifier */
1937 63 : dl->h = n->next->next;
1938 63 : n->next->next = NULL; /* (remove comparison) moved righthand side */
1939 63 : return rel_logical_exp(query, rel, sc, f);
1940 : }
1941 : /* <> ANY -> NOT (= ALL) */
1942 349330 : if (quantifier == 1 && cmp_type == cmp_notequal) {
1943 5 : need_not = 1;
1944 5 : quantifier = 2;
1945 5 : cmp_type = cmp_equal;
1946 5 : compare_op = "=";
1947 : }
1948 :
1949 349330 : if ((lo->token == SQL_SELECT || lo->token == SQL_UNION || lo->token == SQL_EXCEPT || lo->token == SQL_INTERSECT || lo->token == SQL_VALUES) &&
1950 43 : (ro->token != SQL_SELECT && ro->token != SQL_UNION && ro->token != SQL_EXCEPT && ro->token != SQL_INTERSECT && ro->token != SQL_VALUES)) {
1951 30 : symbol *tmp = lo; /* swap subquery to the right hand side */
1952 :
1953 30 : lo = ro;
1954 30 : ro = tmp;
1955 :
1956 30 : if (compare_op[0] == '>')
1957 16 : compare_op[0] = '<';
1958 14 : else if (compare_op[0] == '<' && compare_op[1] != '>')
1959 1 : compare_op[0] = '>';
1960 30 : cmp_type = swap_compare(cmp_type);
1961 : }
1962 :
1963 349330 : ls = rel_value_exp(query, &rel, lo, f|sql_farg, ek);
1964 349330 : if (!ls)
1965 : return NULL;
1966 349281 : if (ls && rel && exp_has_freevar(sql, ls) && is_sql_sel(f))
1967 0 : ls = rel_project_add_exp(sql, rel, ls);
1968 349281 : if (quantifier)
1969 58 : ek.card = card_set;
1970 :
1971 349281 : rs = rel_value_exp(query, &rel, ro, f|sql_farg, ek);
1972 349281 : if (!rs)
1973 : return NULL;
1974 349253 : if (ls->card > rs->card && rs->card == CARD_AGGR && is_sql_having(f)) {
1975 0 : if (exp_name(ls) && exp_relname(ls) && !has_label(ls))
1976 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", exp_relname(ls), exp_name(ls));
1977 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
1978 : }
1979 349253 : if (rs->card > ls->card && ls->card == CARD_AGGR && is_sql_having(f)) {
1980 0 : if (exp_name(rs) && exp_relname(rs) && !has_label(rs))
1981 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", exp_relname(rs), exp_name(rs));
1982 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
1983 : }
1984 349253 : return rel_compare_exp(query, rel, ls, rs, compare_op, k.reduce, quantifier, need_not, f, is_semantics);
1985 : }
1986 :
1987 : static sql_exp*
1988 79306 : _rel_nop(mvc *sql, char *sname, char *fname, list *tl, sql_rel *rel, list *exps, exp_kind ek)
1989 : {
1990 79306 : bool found = false;
1991 79306 : int table_func = (ek.card == card_relation);
1992 79306 : sql_ftype type = (ek.card == card_loader)?F_LOADER:((ek.card == card_none)?F_PROC:
1993 : ((ek.card == card_relation)?F_UNION:F_FUNC));
1994 :
1995 79306 : sql_subfunc *f = bind_func_(sql, sname, fname, tl, type, false, &found, false);
1996 79306 : if (f && !(exps = check_arguments_and_find_largest_any_type(sql, rel, exps, f, table_func, false)))
1997 : f = NULL;
1998 :
1999 79290 : if (f)
2000 79290 : return exp_op(sql->sa, exps, f);
2001 16 : char *arg_list = nary_function_arg_types_2str(sql, tl, list_length(tl));
2002 32 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: %s operator %s%s%s'%s'(%s)",
2003 16 : found ? "insufficient privileges for" : "no such", sname ? "'":"", sname ? sname : "", sname ? "'.":"", fname, arg_list ? arg_list : "");
2004 : }
2005 :
2006 : static sql_exp *
2007 2056 : exp_exist(sql_query *query, sql_rel *rel, sql_exp *le, int exists)
2008 : {
2009 2056 : mvc *sql = query->sql;
2010 2056 : sql_subfunc *exists_func = NULL;
2011 2056 : sql_subtype *t;
2012 2056 : sql_exp *res;
2013 :
2014 2056 : if (!exp_name(le))
2015 753 : exp_label(sql->sa, le, ++sql->label);
2016 2056 : if (exp_is_rel(le)) { /* for the subquery case, propagate to the inner query */
2017 2056 : sql_rel *r = exp_rel_get_rel(sql->sa, le);
2018 2056 : if (is_project(r->op) && !list_empty(r->exps)) {
2019 5889 : for (node *n = r->exps->h; n; n = n->next)
2020 3833 : if (!exp_subtype(n->data) && rel_set_type_param(sql, sql_bind_localtype("bit"), r, n->data, 0) < 0) /* workaround */
2021 : return NULL;
2022 2056 : le->tpe = *exp_subtype(r->exps->h->data); /* just take the first expression type */
2023 : }
2024 0 : } else if (!exp_subtype(le) && rel_set_type_param(sql, sql_bind_localtype("bit"), rel, le, 0) < 0) /* workaround */
2025 : return NULL;
2026 2056 : t = exp_subtype(le);
2027 :
2028 2117 : if (!(exists_func = sql_bind_func(sql, "sys", exists ? "sql_exists" : "sql_not_exists", t, NULL, F_FUNC, true, true)))
2029 0 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "exist operator on type %s missing", t ? t->type->base.name : "unknown");
2030 2056 : res = exp_unop(sql->sa, le, exists_func);
2031 2056 : set_has_no_nil(res);
2032 2056 : return res;
2033 : }
2034 :
2035 : static sql_exp *
2036 1073 : rel_exists_value_exp(sql_query *query, sql_rel **rel, symbol *sc, int f)
2037 : {
2038 1073 : exp_kind ek = {type_value, card_exists, FALSE};
2039 1073 : sql_exp *le, *e;
2040 :
2041 1073 : le = rel_value_exp(query, rel, sc->data.sym, f|sql_farg, ek);
2042 1073 : if (!le)
2043 : return NULL;
2044 1072 : if (!(e = exp_exist(query, rel ? *rel : NULL, le, sc->token == SQL_EXISTS)))
2045 : return NULL;
2046 : /* only freevar should have CARD_AGGR */
2047 1072 : e->card = CARD_ATOM;
2048 1072 : return e;
2049 : }
2050 :
2051 : static sql_rel *
2052 990 : rel_exists_exp(sql_query *query, sql_rel *rel, symbol *sc, int f)
2053 : {
2054 990 : exp_kind ek = {type_value, card_exists, TRUE};
2055 990 : mvc *sql = query->sql;
2056 990 : sql_rel *sq = NULL;
2057 :
2058 990 : if (is_psm_call(f) || is_sql_merge(f))
2059 3 : return sql_error(sql, 02, SQLSTATE(42000) "%s: subqueries not supported inside %s", is_psm_call(f) ? "CALL" : "MERGE", is_psm_call(f) ? "CALL statements" : "MERGE conditions");
2060 989 : if (rel) {
2061 989 : query_processed(query);
2062 989 : query_push_outer(query, rel, f);
2063 : }
2064 989 : sq = rel_subquery(query, sc->data.sym, ek);
2065 989 : if (rel)
2066 989 : rel = query_pop_outer(query);
2067 989 : assert(!is_sql_sel(f));
2068 989 : if (sq) {
2069 984 : sql_exp *e = exp_rel(sql, sq);
2070 984 : if (!(e = exp_exist(query, rel, e, sc->token == SQL_EXISTS)))
2071 : return NULL;
2072 : /* only freevar should have CARD_AGGR */
2073 984 : e->card = CARD_ATOM;
2074 984 : rel = rel_select_add_exp(sql->sa, rel, e);
2075 984 : return rel;
2076 : }
2077 : return NULL;
2078 : }
2079 :
2080 : static int
2081 7024 : is_project_true(sql_rel *r)
2082 : {
2083 7024 : if (r && !r->l && list_length(r->exps) == 1) {
2084 82 : sql_exp *e = r->exps->h->data;
2085 82 : if (exp_is_atom(e) && exp_is_true(e))
2086 : return 1;
2087 : }
2088 : return 0;
2089 : }
2090 :
2091 : static sql_exp *
2092 62461 : rel_in_value_exp(sql_query *query, sql_rel **rel, symbol *sc, int f)
2093 : {
2094 62461 : mvc *sql = query->sql;
2095 62461 : exp_kind ek = {type_value, card_column, TRUE};
2096 62461 : dlist *dl = sc->data.lval;
2097 62461 : symbol *lo = NULL;
2098 62461 : dnode *n = dl->h->next, *dn = NULL;
2099 62461 : sql_exp *le = NULL, *re, *e = NULL;
2100 62461 : list *ll = sa_list(sql->sa);
2101 62461 : int is_tuple = 0, add_select = 0;
2102 :
2103 : /* complex case */
2104 62461 : if (dl->h->type == type_list) { /* (a,b..) in (.. ) */
2105 4115 : dn = dl->h->data.lval->h;
2106 4115 : lo = dn->data.sym;
2107 4115 : dn = dn->next;
2108 : } else {
2109 58346 : lo = dl->h->data.sym;
2110 : }
2111 197701 : for( ; lo; lo = dn?dn->data.sym:NULL, dn = dn?dn->next:NULL ) {
2112 67624 : le = rel_value_exp(query, rel, lo, f|sql_farg, ek);
2113 67624 : if (!le)
2114 : return NULL;
2115 67620 : append(ll, le);
2116 : }
2117 62457 : if (list_length(ll) == 1) {
2118 58342 : le = ll->h->data;
2119 58342 : ek.card = card_set;
2120 : } else {
2121 4115 : le = exp_values(sql->sa, ll);
2122 4115 : exp_label(sql->sa, le, ++sql->label);
2123 4115 : ek.type = list_length(ll);
2124 4115 : is_tuple = list_length(ll);
2125 : }
2126 : /* list of values or subqueries */
2127 : /* 3 right hand side cases,
2128 : * 1 - value/tuple list of atoms
2129 : * 2 - list of scalar sub queries (needs check on 1 row/column per query)
2130 : * 3 - single tabular ie. multi column, multi row query
2131 : */
2132 62457 : if (n->type == type_list) {
2133 62457 : sql_exp *values;
2134 62457 : list *vals = sa_list(sql->sa);
2135 :
2136 62457 : n = dl->h->next;
2137 62457 : n = n->data.lval->h;
2138 :
2139 309783 : for (; n; n = n->next) {
2140 247359 : if (n->type == type_list) {
2141 3 : dnode *m = n->data.lval->h;
2142 3 : list *rl = sa_list(sql->sa);
2143 12 : for (; m; m = m->next) {
2144 6 : assert(m->type == type_symbol);
2145 6 : sql_exp *re = rel_value_exp(query, rel, m->data.sym, f|sql_farg, ek);
2146 6 : if (!re)
2147 : return NULL;
2148 6 : append(rl, re);
2149 : }
2150 3 : re = exp_values(sql->sa, rl);
2151 : } else {
2152 247356 : assert(n->type == type_symbol);
2153 247356 : re = rel_value_exp(query, rel, n->data.sym, f|sql_farg, ek);
2154 : }
2155 247359 : if (!re)
2156 : return NULL;
2157 247335 : if (is_tuple && (!exp_is_rel(re) && !is_values(re)))
2158 0 : return sql_error(sql, 02, SQLSTATE(42000) "Cannot match a tuple to a single value");
2159 8222 : if (is_tuple && exp_is_rel(re)) {
2160 4114 : sql_rel *r = exp_rel_get_rel(sql->sa, re);
2161 :
2162 4114 : if (!r)
2163 0 : return sql_error(sql, 02, SQLSTATE(42000) "Subquery missing");
2164 4114 : if (r->nrcols != ek.type)
2165 12 : return sql_error(sql, 02, SQLSTATE(42000) "Subquery has too %s columns", (r->nrcols < ek.type) ? "few" : "many");
2166 4105 : re = exp_rel_label(sql, re);
2167 243221 : } else if (exp_is_rel(re)) {
2168 7025 : sql_rel *r = exp_rel_get_rel(sql->sa, re);
2169 7025 : add_select = 1;
2170 7025 : if (rel && *rel && is_join((*rel)->op))
2171 2937 : set_dependent((*rel));
2172 7025 : if (is_project(r->op) && is_project_true(r->l) && list_length(r->exps) == 1)
2173 80 : re = r->exps->h->data;
2174 236196 : } else if (is_values(re) && is_tuple != list_length(exp_get_values(re))) {
2175 0 : return sql_error(sql, 02, SQLSTATE(42000) "Tuple sizes do not match");
2176 : }
2177 247326 : append(vals, re);
2178 : }
2179 :
2180 62424 : if (list_empty(vals))
2181 0 : return sql_error(sql, 02, SQLSTATE(42000) "The list of values for IN operator cannot be empty");
2182 :
2183 62424 : values = exp_values(sql->sa, vals);
2184 62424 : exp_label(sql->sa, values, ++sql->label);
2185 62424 : if (is_tuple) {
2186 4106 : if (!(values = exp_tuples_set_supertype(sql, exp_get_values(le), values)))
2187 : return NULL;
2188 4106 : if (!(le->f = tuples_check_types(sql, exp_get_values(le), values)))
2189 : return NULL;
2190 : } else { /* if it's not a tuple, enforce coercion on the type for every element on the list */
2191 58318 : sql_subtype super, *le_tpe = exp_subtype(le), *values_tpe = NULL;
2192 :
2193 301535 : for (node *m = vals->h; m; m = m->next) { /* first get values supertype */
2194 243217 : sql_exp *e = m->data;
2195 243217 : sql_subtype *tpe = exp_subtype(e);
2196 :
2197 243217 : if (values_tpe && tpe) {
2198 184896 : cmp_supertype(&super, values_tpe, tpe);
2199 184896 : *values_tpe = super;
2200 58321 : } else if (!values_tpe && tpe) {
2201 58314 : super = *tpe;
2202 58314 : values_tpe = &super;
2203 : }
2204 : }
2205 58318 : if (!le_tpe)
2206 2 : le_tpe = values_tpe;
2207 58318 : if (!values_tpe)
2208 4 : values_tpe = le_tpe;
2209 58318 : if (!le_tpe || !values_tpe)
2210 1 : return sql_error(sql, 01, SQLSTATE(42000) "For the IN operator, both sides must have a type defined");
2211 58317 : cmp_supertype(&super, values_tpe, le_tpe); /* compute supertype */
2212 :
2213 : /* on selection/join cases we can generate cmp expressions instead of anyequal for trivial cases */
2214 58317 : if ((is_sql_where(f) || is_sql_having(f)) && !is_sql_farg(f) && !exp_has_rel(le) && exps_are_atoms(vals)) {
2215 24032 : if (list_length(vals) == 1) { /* use cmp_equal instead of cmp_in for 1 expression */
2216 116 : sql_exp *first = vals->h->data;
2217 116 : if (rel_convert_types(sql, rel ? *rel : NULL, rel ? *rel : NULL, &le, &first, 1, type_equal_no_any) < 0)
2218 0 : return NULL;
2219 141 : e = exp_compare(sql->sa, le, first, (sc->token == SQL_IN) ? cmp_equal : cmp_notequal);
2220 : } else { /* use cmp_in instead of anyequal for n simple expressions */
2221 120875 : for (node *n = vals->h ; n ; n = n->next)
2222 96959 : if ((n->data = exp_check_type(sql, &super, rel ? *rel : NULL, n->data, type_equal)) == NULL)
2223 : return NULL;
2224 23916 : if ((le = exp_check_type(sql, &super, rel ? *rel : NULL, le, type_equal)) == NULL)
2225 : return NULL;
2226 32514 : e = exp_in(sql->sa, le, vals, (sc->token == SQL_IN) ? cmp_in : cmp_notin);
2227 : }
2228 : }
2229 24032 : if (!e) { /* after computing supertype, check types for each IN value */
2230 180426 : for (node *n = vals->h ; n ; n = n->next)
2231 146141 : if ((n->data = exp_check_type(sql, &super, rel ? *rel : NULL, n->data, type_equal)) == NULL)
2232 : return NULL;
2233 34285 : values->tpe = *exp_subtype(vals->h->data);
2234 34285 : if (!(le = exp_check_type(sql, &super, rel ? *rel : NULL, le, type_equal)))
2235 : return NULL;
2236 : }
2237 : }
2238 58317 : if (!e) {
2239 38391 : if (add_select && rel && *rel && !is_project((*rel)->op) && !is_select((*rel)->op) && !is_base((*rel)->op))
2240 2936 : *rel = rel_select(sql->sa, *rel, NULL);
2241 38391 : if ((rel && *rel) || exp_has_rel(le) || exp_has_rel(values))
2242 32829 : e = exp_in_func(sql, le, values, (sc->token == SQL_IN), is_tuple);
2243 : else
2244 5562 : e = exp_in_aggr(sql, le, values, (sc->token == SQL_IN), is_tuple);
2245 : }
2246 : }
2247 : return e;
2248 : }
2249 :
2250 : static sql_rel *
2251 32626 : rel_in_exp(sql_query *query, sql_rel *rel, symbol *sc, int f)
2252 : {
2253 32626 : mvc *sql = query->sql;
2254 32626 : sql_exp *e = rel_in_value_exp(query, &rel, sc, f);
2255 :
2256 32626 : assert(!is_sql_sel(f));
2257 32626 : if (!e || !rel)
2258 : return NULL;
2259 :
2260 32602 : if (e->type == e_cmp) { /* it's a exp_in or cmp_equal of simple expressions, push down early on if possible */
2261 24030 : sql_exp *ls = e->l;
2262 24030 : bool rlist = (e->flag == cmp_in || e->flag == cmp_notin);
2263 24030 : unsigned int rcard = rlist ? exps_card(e->r) : exp_card(e->r);
2264 24030 : int r_is_atoms = rlist ? exps_are_atoms(e->r) : exp_is_atom(e->r);
2265 24030 : int r_has_freevar = rlist ? exps_have_freevar(sql, e->r) : exp_has_freevar(sql, e->r);
2266 :
2267 24030 : if (rcard <= CARD_ATOM && (r_is_atoms || r_has_freevar || exp_has_freevar(sql, ls))) {
2268 24030 : if ((exp_card(ls) == rcard) || rel->processed) /* bin compare op */
2269 5390 : return rel_select(sql->sa, rel, e);
2270 :
2271 18640 : return push_select_exp(sql, rel, e, ls, f);
2272 : } else { /* join */
2273 0 : sql_exp *rs = rlist ? exps_find_one_multi_exp(e->r) : e->r;
2274 0 : if (rs)
2275 0 : return push_join_exp(sql, rel, e, ls, rs, NULL, f);
2276 : }
2277 : }
2278 8572 : if (is_outerjoin(rel->op))
2279 13 : return rel_select(sql->sa, rel, e);
2280 8559 : return rel_select_add_exp(sql->sa, rel, e);
2281 : }
2282 :
2283 : static bool
2284 52642 : not_symbol_can_be_propagated(mvc *sql, symbol *sc)
2285 : {
2286 52642 : switch (sc->token) {
2287 : case SQL_IN:
2288 : case SQL_NOT_IN:
2289 : case SQL_EXISTS:
2290 : case SQL_NOT_EXISTS:
2291 : case SQL_LIKE:
2292 : case SQL_NOT_LIKE:
2293 : case SQL_BETWEEN:
2294 : case SQL_NOT_BETWEEN:
2295 : case SQL_IS_NULL:
2296 : case SQL_IS_NOT_NULL:
2297 : case SQL_NOT:
2298 : case SQL_COMPARE:
2299 : return true;
2300 6822 : case SQL_AND:
2301 : case SQL_OR: {
2302 6822 : symbol *lo = sc->data.lval->h->data.sym;
2303 6822 : symbol *ro = sc->data.lval->h->next->data.sym;
2304 6826 : return not_symbol_can_be_propagated(sql, lo) && not_symbol_can_be_propagated(sql, ro);
2305 : }
2306 36572 : default:
2307 36572 : return false;
2308 : }
2309 : }
2310 :
2311 : /* Warning, this function assumes the entire bison tree can be negated, so call it after 'not_symbol_can_be_propagated' */
2312 : static symbol *
2313 16065 : negate_symbol_tree(mvc *sql, symbol *sc)
2314 : {
2315 16065 : switch (sc->token) {
2316 1454 : case SQL_IN:
2317 1454 : sc->token = SQL_NOT_IN;
2318 1454 : break;
2319 22 : case SQL_NOT_IN:
2320 22 : sc->token = SQL_IN;
2321 22 : break;
2322 0 : case SQL_EXISTS:
2323 0 : sc->token = SQL_NOT_EXISTS;
2324 0 : break;
2325 0 : case SQL_NOT_EXISTS:
2326 0 : sc->token = SQL_EXISTS;
2327 0 : break;
2328 7 : case SQL_LIKE:
2329 7 : sc->token = SQL_NOT_LIKE;
2330 7 : break;
2331 0 : case SQL_NOT_LIKE:
2332 0 : sc->token = SQL_LIKE;
2333 0 : break;
2334 17 : case SQL_BETWEEN:
2335 17 : sc->token = SQL_NOT_BETWEEN;
2336 17 : break;
2337 11 : case SQL_NOT_BETWEEN:
2338 11 : sc->token = SQL_BETWEEN;
2339 11 : break;
2340 32 : case SQL_IS_NULL:
2341 32 : sc->token = SQL_IS_NOT_NULL;
2342 32 : break;
2343 15 : case SQL_IS_NOT_NULL:
2344 15 : sc->token = SQL_IS_NULL;
2345 15 : break;
2346 27 : case SQL_NOT: { /* nested NOTs eliminate each other */
2347 27 : if (sc->data.sym->token == SQL_ATOM) {
2348 5 : AtomNode *an = (AtomNode*) sc->data.sym;
2349 5 : sc = newAtomNode(sql->sa, an->a);
2350 22 : } else if (sc->data.sym->token == SQL_SELECT) {
2351 2 : SelectNode *sn = (SelectNode*) sc->data.sym;
2352 2 : sc = newSelectNode(sql->sa, sn->distinct, sn->selection, sn->into, sn->from, sn->where, sn->groupby, sn->having,
2353 : sn->orderby, sn->name, sn->limit, sn->offset, sn->sample, sn->seed, sn->window);
2354 : } else {
2355 20 : memmove(sc, sc->data.sym, sizeof(symbol));
2356 : }
2357 : } break;
2358 7662 : case SQL_COMPARE: {
2359 7662 : dnode *cmp_n = sc->data.lval->h;
2360 7662 : comp_type neg_cmp_type = negate_compare(compare_str2type(cmp_n->next->data.sval)); /* negate the comparator */
2361 7662 : if (cmp_n->next->next->next) {
2362 22 : switch(cmp_n->next->next->next->data.i_val)
2363 : {
2364 12 : case 0: /* negating ANY/ALL */
2365 12 : cmp_n->next->next->next->data.i_val = 1;
2366 12 : break;
2367 7 : case 1: /* negating ANY/ALL */
2368 7 : cmp_n->next->next->next->data.i_val = 0;
2369 7 : break;
2370 2 : case 2: /* negating IS [NOT] DINSTINCT FROM */
2371 2 : cmp_n->next->next->next->data.i_val = 3;
2372 2 : break;
2373 1 : case 3: /* negating IS [NOT] DINSTINCT FROM */
2374 1 : cmp_n->next->next->next->data.i_val = 2;
2375 1 : break;
2376 : }
2377 : }
2378 7662 : cmp_n->next->data.sval = sa_strdup(sql->sa, compare_func(neg_cmp_type, 0));
2379 7662 : } break;
2380 6818 : case SQL_AND:
2381 : case SQL_OR: {
2382 6818 : sc->data.lval->h->data.sym = negate_symbol_tree(sql, sc->data.lval->h->data.sym);
2383 6818 : sc->data.lval->h->next->data.sym= negate_symbol_tree(sql, sc->data.lval->h->next->data.sym);
2384 6818 : sc->token = sc->token == SQL_AND ? SQL_OR : SQL_AND;
2385 6818 : } break;
2386 : default:
2387 : break;
2388 : }
2389 16065 : return sc;
2390 : }
2391 :
2392 : static int
2393 3111 : exp_between_check_types(sql_subtype *res, sql_subtype *t1, sql_subtype *t2, sql_subtype *t3)
2394 : {
2395 3111 : bool type_found = false;
2396 3111 : sql_subtype super;
2397 :
2398 3111 : if (t1 && t2) {
2399 3105 : cmp_supertype(&super, t2, t1);
2400 3105 : type_found = true;
2401 6 : } else if (t1) {
2402 3 : super = *t1;
2403 3 : type_found = true;
2404 3 : } else if (t2) {
2405 1 : super = *t2;
2406 1 : type_found = true;
2407 : }
2408 3111 : if (t3) {
2409 3108 : if (type_found)
2410 3107 : cmp_supertype(&super, t3, &super);
2411 : else
2412 1 : super = *t3;
2413 : type_found = true;
2414 : }
2415 3 : if (!type_found)
2416 : return -1;
2417 3110 : *res = super;
2418 3110 : return 0;
2419 : }
2420 :
2421 : static bool
2422 116789 : exp_is_null_no_value_opt(sql_exp *e)
2423 : {
2424 116789 : if (!e)
2425 : return false;
2426 120694 : while (is_convert(e->type))
2427 3905 : e = e->l;
2428 233551 : return e->type == e_atom && e->l && atom_null(e->l);
2429 : }
2430 :
2431 : sql_exp *
2432 2636459 : rel_logical_value_exp(sql_query *query, sql_rel **rel, symbol *sc, int f, exp_kind ek)
2433 : {
2434 2636558 : mvc *sql = query->sql;
2435 :
2436 2636558 : if (!sc)
2437 : return NULL;
2438 :
2439 2636558 : if (mvc_highwater(sql))
2440 0 : return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
2441 :
2442 2636556 : switch (sc->token) {
2443 51574 : case SQL_OR:
2444 : case SQL_AND:
2445 : {
2446 51574 : symbol *lo = sc->data.lval->h->data.sym;
2447 51574 : symbol *ro = sc->data.lval->h->next->data.sym;
2448 51574 : sql_exp *ls, *rs;
2449 :
2450 51574 : if (!(ls = rel_value_exp(query, rel, lo, f|sql_farg, ek)))
2451 : return NULL;
2452 51573 : if (!(rs = rel_value_exp(query, rel, ro, f|sql_farg, ek)))
2453 : return NULL;
2454 91028 : return rel_binop_(sql, rel ? *rel : NULL, ls, rs, "sys", sc->token == SQL_OR ? "or": "and", card_value, false);
2455 : }
2456 5 : case SQL_FILTER:
2457 : /* [ x,..] filter [ y,..] */
2458 : /* todo add anti, [ x,..] not filter [ y,...] */
2459 : /* no correlation */
2460 : {
2461 5 : dnode *ln = sc->data.lval->h->data.lval->h;
2462 5 : dnode *rn = sc->data.lval->h->next->next->data.lval->h;
2463 5 : dlist *filter_op = sc->data.lval->h->next->data.lval;
2464 5 : char *fname = qname_schema_object(filter_op);
2465 5 : char *sname = qname_schema(filter_op);
2466 5 : list *exps, *tl;
2467 5 : sql_subtype *obj_type = NULL;
2468 :
2469 5 : exps = sa_list(sql->sa);
2470 5 : tl = sa_list(sql->sa);
2471 15 : for (; ln; ln = ln->next) {
2472 5 : symbol *sym = ln->data.sym;
2473 :
2474 5 : sql_exp *e = rel_value_exp(query, rel, sym, f|sql_farg, ek);
2475 5 : if (!e)
2476 : return NULL;
2477 5 : if (!obj_type)
2478 5 : obj_type = exp_subtype(e);
2479 5 : list_append(exps, e);
2480 5 : append(tl, exp_subtype(e));
2481 : }
2482 13 : for (; rn; rn = rn->next) {
2483 10 : symbol *sym = rn->data.sym;
2484 :
2485 10 : sql_exp *e = rel_value_exp(query, rel, sym, f|sql_farg, ek);
2486 10 : if (!e)
2487 : return NULL;
2488 8 : list_append(exps, e);
2489 8 : append(tl, exp_subtype(e));
2490 : }
2491 : /* find the predicate filter function */
2492 3 : return _rel_nop(sql, sname, fname, tl, rel ? *rel : NULL, exps, ek);
2493 : }
2494 116506 : case SQL_COMPARE:
2495 : {
2496 116506 : dnode *n = sc->data.lval->h;
2497 116506 : symbol *lo = n->data.sym;
2498 116506 : symbol *ro = n->next->next->data.sym;
2499 116506 : char *compare_op = n->next->data.sval;
2500 116506 : int quantifier = 0, need_not = 0;
2501 116506 : sql_exp *rs = NULL, *ls;
2502 116506 : comp_type cmp_type = compare_str2type(compare_op);
2503 116506 : bool is_not_distinct_from = false;
2504 116506 : bool is_distinct_from = false;
2505 :
2506 : /*
2507 : * = ANY -> IN, <> ALL -> NOT( = ANY) -> NOT IN
2508 : * = ALL -> all(groupby(all, nil)), <> ANY -> NOT ( = ALL )
2509 : */
2510 116506 : if (n->next->next->next)
2511 257 : quantifier = n->next->next->next->data.i_val + 1;
2512 257 : assert(quantifier == 0 || quantifier == 1 || quantifier == 2 || quantifier == 3 || quantifier == 4);
2513 :
2514 : /* [NOT] DISTINCT FROM */
2515 116506 : if (quantifier == 3) {
2516 : is_not_distinct_from = true;
2517 : quantifier = 0;
2518 : }
2519 116492 : else if (quantifier == 4) {
2520 14 : is_distinct_from = true;
2521 14 : quantifier = 0;
2522 : }
2523 :
2524 116506 : if ((quantifier == 1 && cmp_type == cmp_equal) ||
2525 116440 : (quantifier == 2 && cmp_type == cmp_notequal)) {
2526 93 : dlist *dl = dlist_create(sql->sa);
2527 : /* map into IN/NOT IN */
2528 93 : sc->token = cmp_type==cmp_equal?SQL_IN:SQL_NOT_IN;
2529 93 : n->next->type = type_list;
2530 93 : n->next->data.lval = dl;
2531 93 : n->next->next->next = NULL; /* remove quantifier */
2532 93 : dl->h = n->next->next;
2533 93 : n->next->next = NULL; /* (remove comparison) moved righthand side */
2534 93 : return rel_logical_value_exp(query, rel, sc, f, ek);
2535 : }
2536 : /* <> ANY -> NOT (= ALL) */
2537 116413 : if (quantifier == 1 && cmp_type == cmp_notequal) {
2538 15 : need_not = 1;
2539 15 : quantifier = 2;
2540 15 : cmp_type = cmp_equal;
2541 15 : compare_op = "=";
2542 : }
2543 :
2544 116413 : ls = rel_value_exp(query, rel, lo, f|sql_farg, ek);
2545 116413 : if (!ls)
2546 : return NULL;
2547 116401 : if (quantifier)
2548 136 : ek.card = card_set;
2549 :
2550 116401 : rs = rel_value_exp(query, rel, ro, f|sql_farg, ek);
2551 116401 : if (!rs)
2552 : return NULL;
2553 :
2554 116391 : if (is_distinct_from || is_not_distinct_from) {
2555 28 : if (rel_convert_types(sql, rel ? *rel : NULL, rel ? *rel : NULL, &ls, &rs, 1, type_equal_no_any) < 0)
2556 : return NULL;
2557 42 : sql_exp* e = exp_compare(sql->sa, ls, rs, is_not_distinct_from?cmp_equal:cmp_notequal);
2558 28 : set_semantics(e);
2559 28 : return e;
2560 : }
2561 :
2562 116363 : if (rs->type == e_atom)
2563 105067 : quantifier = 0;
2564 :
2565 116363 : if (!exp_is_rel(ls) && !exp_is_rel(rs) && ls->card < rs->card) {
2566 14 : sql_exp *swap = ls; /* has to swap parameters like in the rel_logical_exp case */
2567 14 : ls = rs;
2568 14 : rs = swap;
2569 14 : cmp_type = swap_compare(cmp_type);
2570 : }
2571 :
2572 116363 : if (rel_convert_types(sql, rel ? *rel : NULL, rel ? *rel : NULL, &ls, &rs, 1, type_equal_no_any) < 0)
2573 : return NULL;
2574 116360 : if (exp_is_null_no_value_opt(ls) && exp_is_null_no_value_opt(rs))
2575 7 : return exp_atom(sql->sa, atom_general(sql->sa, sql_bind_localtype("bit"), NULL, 0));
2576 :
2577 116353 : return exp_compare_func(sql, ls, rs, compare_func(cmp_type, need_not), quantifier);
2578 : }
2579 : /* Set Member ship */
2580 29835 : case SQL_IN:
2581 : case SQL_NOT_IN:
2582 29835 : return rel_in_value_exp(query, rel, sc, f);
2583 1073 : case SQL_EXISTS:
2584 : case SQL_NOT_EXISTS:
2585 1073 : return rel_exists_value_exp(query, rel, sc, f);
2586 347 : case SQL_LIKE:
2587 : case SQL_NOT_LIKE:
2588 : {
2589 347 : symbol *lo = sc->data.lval->h->data.sym;
2590 347 : symbol *ro = sc->data.lval->h->next->data.sym;
2591 347 : int insensitive = sc->data.lval->h->next->next->data.i_val;
2592 347 : int anti = (sc->token == SQL_NOT_LIKE) != (sc->data.lval->h->next->next->next->data.i_val != 0);
2593 347 : sql_subtype *st = sql_bind_localtype("str");
2594 347 : sql_exp *le = rel_value_exp(query, rel, lo, f|sql_farg, ek), *re, *ee = NULL, *ie = exp_atom_bool(sql->sa, insensitive);
2595 :
2596 347 : if (!le)
2597 : return NULL;
2598 :
2599 347 : if (!exp_subtype(le))
2600 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: parameter not allowed on "
2601 : "left hand side of LIKE operator");
2602 :
2603 347 : lo = ro->data.lval->h->data.sym;
2604 : /* like uses a single string pattern */
2605 347 : ek.card = card_value;
2606 347 : re = rel_value_exp(query, rel, lo, f|sql_farg, ek);
2607 347 : if (!re)
2608 : return NULL;
2609 343 : if ((re = exp_check_type(sql, st, rel ? *rel : NULL, re, type_equal)) == NULL)
2610 0 : return sql_error(sql, 02, SQLSTATE(42000) "LIKE: wrong type, should be string");
2611 343 : if ((le = exp_check_type(sql, st, rel ? *rel : NULL, le, type_equal)) == NULL)
2612 0 : return sql_error(sql, 02, SQLSTATE(42000) "LIKE: wrong type, should be string");
2613 : /* Do we need to escape ? */
2614 343 : if (dlist_length(ro->data.lval) == 2) {
2615 63 : char *escape = ro->data.lval->h->next->data.sval;
2616 63 : ee = exp_atom(sql->sa, atom_string(sql->sa, st, sa_strdup(sql->sa, escape)));
2617 : } else {
2618 280 : ee = exp_atom(sql->sa, atom_string(sql->sa, st, sa_strdup(sql->sa, "")));
2619 : }
2620 573 : return rel_nop_(sql, rel ? *rel : NULL, le, re, ee, ie, "sys", anti ? "not_like" : "like", card_value);
2621 : }
2622 164 : case SQL_BETWEEN:
2623 : case SQL_NOT_BETWEEN:
2624 : {
2625 164 : symbol *lo = sc->data.lval->h->data.sym;
2626 164 : int symmetric = sc->data.lval->h->next->data.i_val;
2627 164 : symbol *ro1 = sc->data.lval->h->next->next->data.sym;
2628 164 : symbol *ro2 = sc->data.lval->h->next->next->next->data.sym;
2629 164 : sql_exp *le, *re1, *re2;
2630 164 : sql_subtype super;
2631 :
2632 164 : assert(sc->data.lval->h->next->type == type_int);
2633 :
2634 164 : if (!(le = rel_value_exp(query, rel, lo, f|sql_farg, ek)))
2635 : return NULL;
2636 163 : if (!(re1 = rel_value_exp(query, rel, ro1, f|sql_farg, ek)))
2637 : return NULL;
2638 160 : if (!(re2 = rel_value_exp(query, rel, ro2, f|sql_farg, ek)))
2639 : return NULL;
2640 :
2641 155 : if (exp_between_check_types(&super, exp_subtype(le), exp_subtype(re1), exp_subtype(re2)) < 0)
2642 0 : return sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) on both sides of an expression");
2643 :
2644 155 : if ((le = exp_check_type(sql, &super, rel ? *rel:NULL, le, type_equal)) == NULL ||
2645 155 : (re1 = exp_check_type(sql, &super, rel ? *rel:NULL, re1, type_equal)) == NULL ||
2646 155 : (re2 = exp_check_type(sql, &super, rel ? *rel:NULL, re2, type_equal)) == NULL)
2647 0 : return NULL;
2648 :
2649 155 : le = exp_compare2(sql->sa, le, re1, re2, 3, symmetric);
2650 155 : if (sc->token == SQL_NOT_BETWEEN)
2651 56 : set_anti(le);
2652 : return le;
2653 : }
2654 16277 : case SQL_IS_NULL:
2655 : case SQL_IS_NOT_NULL:
2656 : /* is (NOT) NULL */
2657 : {
2658 16277 : sql_exp *le = rel_value_exp(query, rel, sc->data.sym, f|sql_farg, ek);
2659 :
2660 16277 : if (!le)
2661 : return NULL;
2662 20527 : le = rel_unop_(sql, rel ? *rel : NULL, le, "sys", sc->token == SQL_IS_NULL ? "isnull" : "isnotnull", card_value);
2663 16274 : if (!le)
2664 : return NULL;
2665 16274 : set_has_no_nil(le);
2666 16274 : return le;
2667 : }
2668 18950 : case SQL_NOT: {
2669 18950 : if (not_symbol_can_be_propagated(sql, sc->data.sym)) {
2670 99 : sc->data.sym = negate_symbol_tree(sql, sc->data.sym);
2671 99 : return rel_logical_value_exp(query, rel, sc->data.sym, f, ek);
2672 : }
2673 18851 : sql_exp *le = rel_value_exp(query, rel, sc->data.sym, f|sql_farg, ek);
2674 :
2675 18851 : if (!le)
2676 : return NULL;
2677 18850 : return rel_unop_(sql, rel ? *rel : NULL, le, "sys", "not", card_value);
2678 : }
2679 : case SQL_ATOM: {
2680 2380871 : AtomNode *an = (AtomNode *) sc;
2681 2380871 : assert(an && an->a);
2682 2380871 : return exp_atom(sql->sa, an->a);
2683 : }
2684 20437 : case SQL_IDENT:
2685 : case SQL_COLUMN:
2686 20437 : return rel_column_ref(query, rel, sc, f);
2687 201 : case SQL_UNION:
2688 : case SQL_EXCEPT:
2689 : case SQL_INTERSECT: {
2690 201 : sql_rel *sq;
2691 :
2692 201 : if (is_psm_call(f) || is_sql_merge(f))
2693 4 : return sql_error(sql, 02, SQLSTATE(42000) "%s: subqueries not supported inside %s", is_psm_call(f) ? "CALL" : "MERGE", is_psm_call(f) ? "CALL statements" : "MERGE conditions");
2694 199 : if (rel && *rel)
2695 141 : query_push_outer(query, *rel, f);
2696 199 : sq = rel_setquery(query, sc);
2697 199 : if (rel && *rel) {
2698 141 : *rel = query_pop_outer(query);
2699 141 : if (is_sql_join(f) && is_groupby((*rel)->op)) {
2700 0 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed in JOIN conditions");
2701 141 : } else if (is_sql_where(f) && is_groupby((*rel)->op)) {
2702 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: aggregate functions not allowed in WHERE clause");
2703 141 : } else if ((is_sql_update_set(f) || is_sql_psm(f)) && is_groupby((*rel)->op)) {
2704 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: aggregate functions not allowed in SET, WHILE, IF, ELSE, CASE, WHEN, RETURN, ANALYZE clauses");
2705 : }
2706 : }
2707 199 : if (!sq)
2708 : return NULL;
2709 197 : if (ek.type == type_value && ek.card <= card_set && is_project(sq->op) && list_length(sq->exps) > 1)
2710 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: subquery must return only one column");
2711 196 : if (ek.type == type_relation && is_project(sq->op) && list_length(sq->exps) != ek.type)
2712 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: subquery has too %s columns", list_length(sq->exps) < ek.type ? "few" : "many");
2713 302 : if (ek.type == type_value && ek.card < card_set && sq->card >= CARD_AGGR && (is_sql_sel(f) | is_sql_having(f) | is_sql_farg(f) |
2714 106 : ( is_sql_where(f) && rel && (!*rel || is_basetable((*rel)->op) || is_simple_project((*rel)->op) || is_joinop((*rel)->op)))))
2715 106 : sq = rel_zero_or_one(sql, sq, ek);
2716 196 : return exp_rel(sql, sq);
2717 : }
2718 1 : case SQL_DEFAULT:
2719 1 : return sql_error(sql, 02, SQLSTATE(42000) "DEFAULT keyword not allowed outside insert and update statements");
2720 315 : default: {
2721 315 : sql_exp *le = rel_value_exp(query, rel, sc, f|sql_farg, ek);
2722 315 : sql_subtype bt;
2723 :
2724 315 : if (!le)
2725 : return NULL;
2726 313 : sql_find_subtype(&bt, "boolean", 0, 0);
2727 313 : if ((le = exp_check_type(sql, &bt, rel ? *rel : NULL, le, type_equal)) == NULL)
2728 : return NULL;
2729 313 : return rel_binop_(sql, rel ? *rel : NULL, le, exp_atom_bool(sql->sa, 1), "sys", "=", 0, true);
2730 : }
2731 : }
2732 : /* never reached, as all switch cases have a `return` */
2733 : }
2734 :
2735 : sql_rel *
2736 632639 : rel_logical_exp(sql_query *query, sql_rel *rel, symbol *sc, int f)
2737 : {
2738 632639 : mvc *sql = query->sql;
2739 632639 : exp_kind ek = {type_value, card_column, TRUE};
2740 :
2741 632639 : if (!sc)
2742 : return NULL;
2743 :
2744 632639 : if (mvc_highwater(sql))
2745 0 : return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
2746 :
2747 632639 : switch (sc->token) {
2748 19017 : case SQL_OR:
2749 : {
2750 19017 : list *exps = NULL, *lexps = NULL, *rexps = NULL;
2751 19017 : symbol *lo = sc->data.lval->h->data.sym;
2752 19017 : symbol *ro = sc->data.lval->h->next->data.sym;
2753 19017 : sql_rel *lr, *rr;
2754 :
2755 19017 : if (!rel)
2756 : return NULL;
2757 :
2758 19017 : lr = rel;
2759 19017 : rr = rel_dup(lr);
2760 :
2761 19017 : if (is_outerjoin(rel->op) && !is_processed(rel)) {
2762 44 : exps = rel->exps;
2763 :
2764 44 : lr = rel_select_copy(sql->sa, lr, sa_list(sql->sa));
2765 44 : lr = rel_logical_exp(query, lr, lo, f | sql_or);
2766 44 : if (!lr)
2767 : return NULL;
2768 43 : query_processed(query);
2769 43 : rr = rel_select_copy(sql->sa, rr, sa_list(sql->sa));
2770 43 : rr = rel_logical_exp(query, rr, ro, f | sql_or);
2771 43 : if (!rr)
2772 : return NULL;
2773 42 : if (lr->l == rr->l) {
2774 42 : lexps = lr->exps;
2775 42 : lr = lr->l;
2776 42 : rexps = rr->exps;
2777 42 : rr = rr->l;
2778 : }
2779 42 : rel = NULL;
2780 : } else {
2781 18973 : lr = rel_logical_exp(query, lr, lo, f | sql_or);
2782 18973 : if (!lr)
2783 : return NULL;
2784 18971 : rr = rel_logical_exp(query, rr, ro, f | sql_or);
2785 : }
2786 :
2787 19013 : if (!lr || !rr)
2788 : return NULL;
2789 19013 : return rel_or(sql, rel, lr, rr, exps, lexps, rexps);
2790 : }
2791 191951 : case SQL_AND:
2792 : {
2793 191951 : symbol *lo = sc->data.lval->h->data.sym;
2794 191951 : symbol *ro = sc->data.lval->h->next->data.sym;
2795 191951 : rel = rel_logical_exp(query, rel, lo, f);
2796 191951 : if (!rel)
2797 : return NULL;
2798 191944 : return rel_logical_exp(query, rel, ro, f);
2799 : }
2800 60 : case SQL_FILTER:
2801 : /* [ x,..] filter [ y,..] */
2802 : /* todo add anti, [ x,..] NOT filter [ y,...] */
2803 : /* no correlation */
2804 : {
2805 60 : dnode *ln = sc->data.lval->h->data.lval->h;
2806 60 : dnode *rn = sc->data.lval->h->next->next->data.lval->h;
2807 60 : dlist *filter_op = sc->data.lval->h->next->data.lval;
2808 60 : char *fname = qname_schema_object(filter_op);
2809 60 : char *sname = qname_schema(filter_op);
2810 60 : list *l, *r;
2811 :
2812 60 : l = sa_list(sql->sa);
2813 60 : r = sa_list(sql->sa);
2814 180 : for (; ln; ln = ln->next) {
2815 60 : symbol *sym = ln->data.sym;
2816 :
2817 60 : sql_exp *e = rel_value_exp(query, &rel, sym, f|sql_farg, ek);
2818 60 : if (!e)
2819 : return NULL;
2820 60 : list_append(l, e);
2821 : }
2822 163 : for (; rn; rn = rn->next) {
2823 103 : symbol *sym = rn->data.sym;
2824 :
2825 103 : sql_exp *e = rel_value_exp(query, &rel, sym, f|sql_farg, ek);
2826 103 : if (!e)
2827 : return NULL;
2828 103 : list_append(r, e);
2829 : }
2830 60 : return rel_filter(sql, rel, l, r, sname, fname, 0, f);
2831 : }
2832 349393 : case SQL_COMPARE:
2833 : {
2834 349393 : dnode *n = sc->data.lval->h;
2835 349393 : symbol *lo = n->data.sym;
2836 349393 : symbol *ro = n->next->next->data.sym;
2837 349393 : char *compare_op = n->next->data.sval;
2838 349393 : int quantifier = 0;
2839 349393 : int is_semantics = 0;
2840 :
2841 349393 : if (n->next->next->next)
2842 131 : quantifier = n->next->next->next->data.i_val + 1;
2843 131 : assert(quantifier == 0 || quantifier == 1 || quantifier == 2 || quantifier == 3 || quantifier == 4);
2844 :
2845 349393 : if (quantifier >= 3) {
2846 10 : if (quantifier == 4)
2847 6 : compare_op = "<>";
2848 : quantifier = 0;
2849 : is_semantics = 1;
2850 : }
2851 349393 : return rel_compare(query, rel, sc, lo, ro, compare_op, f, ek, quantifier, is_semantics);
2852 : }
2853 : /* Set Member ship */
2854 32626 : case SQL_IN:
2855 : case SQL_NOT_IN:
2856 32626 : return rel_in_exp(query, rel, sc, f);
2857 990 : case SQL_EXISTS:
2858 : case SQL_NOT_EXISTS:
2859 990 : return rel_exists_exp(query, rel , sc, f);
2860 3317 : case SQL_LIKE:
2861 : case SQL_NOT_LIKE:
2862 : {
2863 3317 : symbol *lo = sc->data.lval->h->data.sym;
2864 3317 : symbol *ro = sc->data.lval->h->next->data.sym;
2865 3317 : int insensitive = sc->data.lval->h->next->next->data.i_val;
2866 3317 : int anti = (sc->token == SQL_NOT_LIKE) != (sc->data.lval->h->next->next->next->data.i_val != 0);
2867 3317 : sql_subtype *st = sql_bind_localtype("str");
2868 3317 : sql_exp *le = rel_value_exp(query, &rel, lo, f|sql_farg, ek), *re, *ee = NULL, *ie = exp_atom_bool(sql->sa, insensitive);
2869 :
2870 3317 : if (!le)
2871 : return NULL;
2872 :
2873 3315 : if (!exp_subtype(le))
2874 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: parameter not allowed on "
2875 : "left hand side of LIKE operator");
2876 :
2877 : /* Do we need to escape ? */
2878 3315 : if (dlist_length(ro->data.lval) == 2) {
2879 82 : char *escape = ro->data.lval->h->next->data.sval;
2880 82 : ee = exp_atom(sql->sa, atom_string(sql->sa, st, sa_strdup(sql->sa, escape)));
2881 : } else {
2882 3233 : ee = exp_atom(sql->sa, atom_string(sql->sa, st, sa_strdup(sql->sa, "")));
2883 : }
2884 3315 : ro = ro->data.lval->h->data.sym;
2885 3315 : re = rel_value_exp(query, &rel, ro, f|sql_farg, ek);
2886 3315 : if (!re)
2887 : return NULL;
2888 3314 : if ((re = exp_check_type(sql, st, rel, re, type_equal)) == NULL)
2889 0 : return sql_error(sql, 02, SQLSTATE(42000) "LIKE: wrong type, should be string");
2890 3314 : if ((le = exp_check_type(sql, st, rel, le, type_equal)) == NULL)
2891 0 : return sql_error(sql, 02, SQLSTATE(42000) "LIKE: wrong type, should be string");
2892 3314 : return rel_filter_exp_(sql, rel, le, re, ee, ie, "like", anti, f);
2893 : }
2894 2960 : case SQL_BETWEEN:
2895 : case SQL_NOT_BETWEEN:
2896 : {
2897 2960 : symbol *lo = sc->data.lval->h->data.sym;
2898 2960 : int symmetric = sc->data.lval->h->next->data.i_val;
2899 2960 : symbol *ro1 = sc->data.lval->h->next->next->data.sym;
2900 2960 : symbol *ro2 = sc->data.lval->h->next->next->next->data.sym;
2901 2960 : sql_exp *le, *re1, *re2;
2902 2960 : sql_subtype super;
2903 :
2904 2960 : assert(sc->data.lval->h->next->type == type_int);
2905 :
2906 2960 : if (!(le = rel_value_exp(query, &rel, lo, f|sql_farg, ek)))
2907 : return NULL;
2908 2958 : if (!(re1 = rel_value_exp(query, &rel, ro1, f|sql_farg, ek)))
2909 : return NULL;
2910 2956 : if (!(re2 = rel_value_exp(query, &rel, ro2, f|sql_farg, ek)))
2911 : return NULL;
2912 :
2913 2956 : if (exp_between_check_types(&super, exp_subtype(le), exp_subtype(re1), exp_subtype(re2)) < 0)
2914 1 : return sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) on both sides of an expression");
2915 :
2916 2955 : if ((le = exp_check_type(sql, &super, rel, le, type_equal)) == NULL ||
2917 2955 : (re1 = exp_check_type(sql, &super, rel, re1, type_equal)) == NULL ||
2918 2955 : (re2 = exp_check_type(sql, &super, rel, re2, type_equal)) == NULL)
2919 1 : return NULL;
2920 :
2921 2954 : return rel_compare_exp_(query, rel, le, re1, re2, 3, sc->token == SQL_NOT_BETWEEN ? 1 : 0, 0, f, symmetric, 0);
2922 : }
2923 10601 : case SQL_IS_NULL:
2924 : case SQL_IS_NOT_NULL:
2925 : /* is (NOT) NULL */
2926 : {
2927 10601 : sql_exp *le = rel_value_exp(query, &rel, sc->data.sym, f|sql_farg, ek);
2928 10601 : sql_subtype *t;
2929 :
2930 10601 : if (!le)
2931 : return NULL;
2932 10597 : if (!(t = exp_subtype(le)))
2933 1 : return sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) for IS%s NULL operator", sc->token == SQL_IS_NOT_NULL ? " NOT" : "");
2934 10596 : le = exp_compare(sql->sa, le, exp_atom(sql->sa, atom_general(sql->sa, t, NULL, 0)), cmp_equal);
2935 10596 : if (sc->token == SQL_IS_NOT_NULL)
2936 2582 : set_anti(le);
2937 10596 : set_has_no_nil(le);
2938 10596 : set_semantics(le);
2939 10596 : return rel_select_push_compare_exp_down(sql, rel, le, le->l, le->r, NULL, f);
2940 : }
2941 20051 : case SQL_NOT: {
2942 20051 : if (not_symbol_can_be_propagated(sql, sc->data.sym)) {
2943 2330 : sc->data.sym = negate_symbol_tree(sql, sc->data.sym);
2944 2330 : return rel_logical_exp(query, rel, sc->data.sym, f);
2945 : }
2946 17721 : sql_exp *le = rel_value_exp(query, &rel, sc->data.sym, f|sql_farg, ek);
2947 17721 : sql_subtype bt;
2948 :
2949 17721 : sql_find_subtype(&bt, "boolean", 0, 0);
2950 17721 : if (!le || !(le = exp_check_type(sql, &bt, rel, le, type_equal)))
2951 1 : return NULL;
2952 17720 : le = exp_compare(sql->sa, le, exp_atom_bool(sql->sa, 0), cmp_equal);
2953 17720 : return rel_select_push_compare_exp_down(sql, rel, le, le->l, le->r, NULL, f);
2954 : }
2955 627 : case SQL_ATOM: {
2956 : /* TRUE or FALSE */
2957 627 : sql_rel *or = rel;
2958 627 : AtomNode *an = (AtomNode *) sc;
2959 627 : sql_exp *e = exp_atom(sql->sa, an->a);
2960 :
2961 627 : if (e) {
2962 627 : sql_subtype bt;
2963 :
2964 627 : sql_find_subtype(&bt, "boolean", 0, 0);
2965 627 : e = exp_check_type(sql, &bt, rel, e, type_equal);
2966 : }
2967 627 : if (!e || or != rel)
2968 2 : return NULL;
2969 625 : e = exp_compare(sql->sa, e, exp_atom_bool(sql->sa, 1), cmp_equal);
2970 625 : return rel_select_push_compare_exp_down(sql, rel, e, e->l, e->r, NULL, f);
2971 : }
2972 708 : case SQL_IDENT:
2973 : case SQL_COLUMN: {
2974 708 : sql_rel *or = rel;
2975 708 : sql_exp *e = rel_column_ref(query, &rel, sc, f);
2976 :
2977 708 : if (e) {
2978 705 : sql_subtype bt;
2979 :
2980 705 : sql_find_subtype(&bt, "boolean", 0, 0);
2981 705 : e = exp_check_type(sql, &bt, rel, e, type_equal);
2982 : }
2983 705 : if (!e || or != rel)
2984 3 : return NULL;
2985 705 : e = exp_compare(sql->sa, e, exp_atom_bool(sql->sa, 1), cmp_equal);
2986 705 : return rel_select_push_compare_exp_down(sql, rel, e, e->l, e->r, NULL, f);
2987 : }
2988 12 : case SQL_UNION:
2989 : case SQL_EXCEPT:
2990 : case SQL_INTERSECT: {
2991 12 : sql_rel *sq;
2992 :
2993 12 : if (is_psm_call(f) || is_sql_merge(f))
2994 3 : return sql_error(sql, 02, SQLSTATE(42000) "%s: set operations not supported inside %s", is_psm_call(f) ? "CALL" : "MERGE", is_psm_call(f) ? "CALL statements" : "MERGE conditions");
2995 11 : if (rel)
2996 11 : query_push_outer(query, rel, f);
2997 11 : sq = rel_setquery(query, sc);
2998 11 : if (rel) {
2999 11 : rel = query_pop_outer(query);
3000 11 : if (is_sql_join(f) && is_groupby(rel->op)) {
3001 0 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed in JOIN conditions");
3002 11 : } else if (is_sql_where(f) && is_groupby(rel->op)) {
3003 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: aggregate functions not allowed in WHERE clause");
3004 11 : } else if ((is_sql_update_set(f) || is_sql_psm(f)) && is_groupby(rel->op)) {
3005 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: aggregate functions not allowed in SET, WHILE, IF, ELSE, CASE, WHEN, RETURN, ANALYZE clauses");
3006 : }
3007 : }
3008 11 : if (!sq)
3009 : return NULL;
3010 11 : assert(ek.type == type_value); /* I don't expect IN tuple matching calls to land here */
3011 11 : if (is_sql_where(f) && is_groupby(rel->op))
3012 0 : assert(0);
3013 11 : if (ek.card <= card_set && is_project(sq->op) && list_length(sq->exps) > 1)
3014 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: subquery must return only one column");
3015 10 : if (!rel)
3016 : return sq;
3017 10 : sq = rel_zero_or_one(sql, sq, ek);
3018 10 : if (is_sql_where(f) || is_sql_having(f)) {
3019 10 : sql_exp *le = exp_rel(sql, sq);
3020 10 : sql_subtype bt;
3021 :
3022 10 : sql_find_subtype(&bt, "boolean", 0, 0);
3023 10 : le = exp_check_type(sql, &bt, rel, le, type_equal);
3024 10 : if (!le)
3025 : return NULL;
3026 10 : le = exp_compare(sql->sa, le, exp_atom_bool(sql->sa, 1), cmp_equal);
3027 10 : return rel_select_push_compare_exp_down(sql, rel, le, le->l, le->r, NULL, f);
3028 : } else {
3029 0 : sq = rel_crossproduct(sql->sa, rel, sq, (f==sql_sel || is_single(sq))?op_left:op_join);
3030 0 : set_processed(sq);
3031 : }
3032 0 : return sq;
3033 : }
3034 0 : case SQL_DEFAULT:
3035 0 : return sql_error(sql, 02, SQLSTATE(42000) "DEFAULT keyword not allowed outside insert and update statements");
3036 326 : default: {
3037 326 : sql_exp *le = rel_value_exp(query, &rel, sc, f|sql_farg, ek);
3038 326 : sql_subtype bt;
3039 :
3040 326 : if (!le)
3041 : return NULL;
3042 301 : if (le && (!is_compare(le->type) || le->flag > cmp_filter)) {
3043 288 : sql_find_subtype(&bt, "boolean", 0, 0);
3044 288 : if (!(le = exp_check_type(sql, &bt, rel, le, type_equal)))
3045 : return NULL;
3046 288 : le = exp_compare(sql->sa, le, exp_atom_bool(sql->sa, 1), cmp_equal);
3047 : }
3048 301 : if (le->flag == cmp_filter)
3049 12 : return rel_select_push_filter_exp_down(sql, rel, le, le->l, le->r, f);
3050 : else
3051 289 : return rel_select_push_compare_exp_down(sql, rel, le, le->l, le->r, le->f, f);
3052 : }
3053 : }
3054 : /* never reached, as all switch cases have a `return` */
3055 : }
3056 :
3057 : static sql_exp * _rel_aggr(sql_query *query, sql_rel **rel, int distinct, char *sname, char *aname, dnode *arguments, int f);
3058 : static sql_exp *rel_aggr(sql_query *query, sql_rel **rel, symbol *se, int f);
3059 :
3060 : static sql_exp *
3061 1828 : rel_op(sql_query *query, sql_rel **rel, symbol *se, int f, exp_kind ek )
3062 : {
3063 1828 : mvc *sql = query->sql;
3064 1828 : dnode *l = se->data.lval->h;
3065 1828 : char *fname = qname_schema_object(l->data.lval);
3066 1828 : char *sname = qname_schema(l->data.lval);
3067 :
3068 1828 : if (find_func(sql, sname, fname, 0, F_AGGR, false, NULL, NULL))
3069 0 : return _rel_aggr(query, rel, 0, sname, fname, NULL, f);
3070 1828 : sql->session->status = 0; /* if the function was not found clean the error */
3071 1828 : sql->errstr[0] = '\0';
3072 1828 : return rel_op_(sql, sname, fname, ek);
3073 : }
3074 :
3075 : sql_exp *
3076 94819 : rel_unop_(mvc *sql, sql_rel *rel, sql_exp *e, char *sname, char *fname, int card)
3077 : {
3078 94819 : bool found = false;
3079 94819 : sql_subtype *t = exp_subtype(e);
3080 94819 : sql_ftype type = (card == card_loader)?F_LOADER:((card == card_none)?F_PROC:
3081 : ((card == card_relation)?F_UNION:F_FUNC));
3082 :
3083 94819 : sql_subfunc *f = bind_func(sql, sname, fname, t, NULL, 1, type, false, &found, false);
3084 94819 : if (f && !f->func->vararg) {
3085 94747 : sql_arg *a = f->func->ops->h->data;
3086 94747 : t = &a->type;
3087 : }
3088 94819 : if (f && t && type_has_tz(t) && f->func->fix_scale == SCALE_FIX) {
3089 : /* set timezone (using msec (.3)) */
3090 0 : sql_subtype *intsec = sql_bind_subtype(sql->sa, "sec_interval", 10 /*hour to second */, 3);
3091 0 : atom *a = atom_int(sql->sa, intsec, sql->timezone);
3092 0 : sql_exp *tz = exp_atom(sql->sa, a);
3093 :
3094 0 : e = rel_binop_(sql, rel, e, tz, "sys", "sql_add", card, true);
3095 0 : if (!e)
3096 : return NULL;
3097 : }
3098 94797 : if (f) {
3099 94748 : if (check_card(card, f)) {
3100 94748 : list *args = list_append(sa_list(sql->sa), e);
3101 94748 : if (!f->func->vararg)
3102 189494 : args = check_arguments_and_find_largest_any_type(sql, rel, args, f, card == card_relation && e->card > CARD_ATOM, false);
3103 94748 : if (args)
3104 94748 : return exp_op(sql->sa, args, f);
3105 : }
3106 0 : found = false; /* reset found */
3107 0 : f = NULL;
3108 : }
3109 : /* reset error */
3110 71 : sql->session->status = 0;
3111 71 : sql->errstr[0] = '\0';
3112 212 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: %s unary operator %s%s%s'%s'(%s)",
3113 141 : found ? "insufficient privileges for" : "no such", sname ? "'":"", sname ? sname : "", sname ? "'.":"", fname, t ? t->type->base.name : "?");
3114 : }
3115 :
3116 : static sql_exp *
3117 77755 : rel_unop(sql_query *query, sql_rel **rel, symbol *se, int f, exp_kind ek)
3118 : {
3119 77755 : mvc *sql = query->sql;
3120 77755 : dnode *l = se->data.lval->h;
3121 77755 : char *fname = qname_schema_object(l->data.lval);
3122 77755 : char *sname = qname_schema(l->data.lval);
3123 77755 : exp_kind iek = {type_value, card_column, FALSE};
3124 77755 : sql_exp *e = NULL;
3125 :
3126 77755 : if (find_func(sql, sname, fname, 1, F_AGGR, false, NULL, NULL))
3127 18837 : return rel_aggr(query, rel, se, f);
3128 :
3129 58918 : sql->session->status = 0; /* if the function was not found clean the error */
3130 58918 : sql->errstr[0] = '\0';
3131 58918 : if (!(e = rel_value_exp(query, rel, l->next->next->data.sym, f|sql_farg, iek)))
3132 : return NULL;
3133 58904 : return rel_unop_(sql, rel ? *rel : NULL, e, sname, fname, ek.card);
3134 : }
3135 :
3136 : sql_exp *
3137 523288 : rel_binop_(mvc *sql, sql_rel *rel, sql_exp *l, sql_exp *r, char *sname, char *fname, int card, bool exact)
3138 : {
3139 523288 : sql_subtype *t1 = exp_subtype(l), *t2 = exp_subtype(r);
3140 523288 : sql_ftype type = (card == card_loader)?F_LOADER:((card == card_none)?F_PROC:((card == card_relation)?F_UNION:F_FUNC));
3141 523288 : bool found = false;
3142 :
3143 523288 : if (card == card_loader)
3144 0 : card = card_none;
3145 :
3146 523288 : if (is_commutative(sname, fname) && l->card < r->card) { /* move constants to the right if possible */
3147 : sql_subtype *tmp = t1;
3148 523288 : t1 = t2;
3149 523288 : t2 = tmp;
3150 : sql_exp *res = l;
3151 523288 : l = r;
3152 523288 : r = res;
3153 : }
3154 : /* swap complex types (intervals) to left side of +, * */
3155 523288 : if (t1 && t2 && is_commutative(sname, fname)) {
3156 121473 : if ((EC_INTERVAL(t1->type->eclass) && EC_TEMP(t2->type->eclass)) ||
3157 121471 : ((!EC_TEMP(t1->type->eclass) && !EC_INTERVAL(t1->type->eclass)) && EC_INTERVAL(t2->type->eclass))) {
3158 : sql_subtype *tmp = t1;
3159 523288 : t1 = t2;
3160 523288 : t2 = tmp;
3161 : sql_exp *res = l;
3162 523288 : l = r;
3163 523288 : r = res;
3164 : }
3165 : }
3166 :
3167 523288 : sql_subfunc *f = bind_func(sql, sname, fname, t1, t2, 2, type, false, &found, exact);
3168 523288 : if (f && check_card(card,f)) {
3169 523125 : t1 = exp_subtype(l);
3170 523125 : t2 = exp_subtype(r);
3171 523125 : list *args = list_append(list_append(sa_list(sql->sa), l), r);
3172 523125 : if (!f->func->vararg)
3173 523124 : args = check_arguments_and_find_largest_any_type(sql, rel, args, f, 0, false);
3174 523125 : if (args)
3175 523123 : return exp_op(sql->sa, args, f);
3176 : return NULL;
3177 : }
3178 :
3179 163 : if (!exp_subtype(l) || !exp_subtype(r))
3180 0 : return sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) on both sides of an expression");
3181 163 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: %s binary operator %s%s%s'%s'(%s,%s)",
3182 163 : found ? "insufficient privileges for" : "no such", sname ? "'":"", sname ? sname : "", sname ? "'.":"", fname,
3183 163 : exp_subtype(l)->type->base.name, exp_subtype(r)->type->base.name);
3184 : }
3185 :
3186 : static sql_exp *
3187 374248 : rel_binop(sql_query *query, sql_rel **rel, symbol *se, int f, exp_kind ek)
3188 : {
3189 374248 : mvc *sql = query->sql;
3190 374248 : dnode *dl = se->data.lval->h;
3191 374248 : sql_exp *l, *r;
3192 374248 : char *fname = qname_schema_object(dl->data.lval);
3193 374248 : char *sname = qname_schema(dl->data.lval);
3194 374248 : exp_kind iek = {type_value, card_column, FALSE};
3195 :
3196 374248 : if (find_func(sql, sname, fname, 2, F_AGGR, false, NULL, NULL))
3197 4190 : return rel_aggr(query, rel, se, f);
3198 :
3199 370058 : sql->session->status = 0; /* if the function was not found clean the error */
3200 370058 : sql->errstr[0] = '\0';
3201 370058 : if (!(l = rel_value_exp(query, rel, dl->next->next->data.sym, f|sql_farg, iek)))
3202 : return NULL;
3203 370029 : if (!(r = rel_value_exp(query, rel, dl->next->next->next->data.sym, f|sql_farg, iek)))
3204 : return NULL;
3205 369990 : return rel_binop_(sql, rel ? *rel : NULL, l, r, sname, fname, ek.card, false);
3206 : }
3207 :
3208 : sql_exp *
3209 530 : rel_nop_(mvc *sql, sql_rel *rel, sql_exp *a1, sql_exp *a2, sql_exp *a3, sql_exp *a4, char *sname, char *fname, int card)
3210 : {
3211 530 : list *tl = sa_list(sql->sa);
3212 530 : sql_subfunc *f = NULL;
3213 530 : sql_ftype type = (card == card_none)?F_PROC:((card == card_relation)?F_UNION:F_FUNC);
3214 :
3215 : /* rel_nop_ should only be called for functions available to everyone, ie defined at sql_types! */
3216 530 : (void) rel;
3217 530 : append(tl, exp_subtype(a1));
3218 530 : append(tl, exp_subtype(a2));
3219 530 : append(tl, exp_subtype(a3));
3220 530 : if (a4)
3221 371 : append(tl, exp_subtype(a4));
3222 :
3223 530 : if (!(f = bind_func_(sql, sname, fname, tl, type, false, NULL, true)))
3224 : return NULL;
3225 530 : if (!a4)
3226 159 : return exp_op3(sql->sa, a1,a2,a3,f);
3227 371 : return exp_op4(sql->sa, a1,a2,a3,a4,f);
3228 : }
3229 :
3230 : static sql_func *
3231 3 : inplace_func(mvc *sql)
3232 : {
3233 3 : sql_func *f = SA_NEW(sql->sa, sql_func);
3234 :
3235 3 : *f = (sql_func) {
3236 : .mod = "",
3237 : .imp = "",
3238 : .type = F_PROC,
3239 : .lang = FUNC_LANG_INT,
3240 : .query = NULL,
3241 3 : .ops = sql->params,
3242 : .res = NULL,
3243 : };
3244 3 : base_init(sql->sa, &f->base, 0, true, NULL);
3245 3 : f->base.new = 1;
3246 3 : f->base.id = -1;
3247 3 : f->base.name = "-1";
3248 3 : f->instantiated = TRUE;
3249 3 : return f;
3250 : }
3251 :
3252 : static list *
3253 3 : reorder_args(mvc *sql, list *exps, list *names, list *params)
3254 : {
3255 3 : list *nexps = sa_list(sql->sa);
3256 8 : for(node *n = params->h; n; n = n->next) {
3257 5 : sql_arg *a = n->data;
3258 5 : int found =0;
3259 7 : for(node *m = names->h, *o = exps->h; m && o; m = m->next, o = o->next) {
3260 7 : if (strcmp(m->data, a->name) == 0) {
3261 5 : append(nexps, o->data);
3262 5 : found = 1;
3263 5 : break;
3264 : }
3265 : }
3266 5 : if (!found)
3267 : return NULL;
3268 : }
3269 : return nexps;
3270 : }
3271 :
3272 : static sql_exp *
3273 85218 : rel_nop(sql_query *query, sql_rel **rel, symbol *se, int fs, exp_kind ek)
3274 : {
3275 85218 : mvc *sql = query->sql;
3276 85218 : int nr_args = 0, err = 0;
3277 85218 : dnode *l = se->data.lval->h;
3278 85218 : dnode *ops = l->next->next->data.lval?l->next->next->data.lval->h:NULL;
3279 85218 : list *exps = sa_list(sql->sa), *tl = sa_list(sql->sa);
3280 85218 : exp_kind iek = {type_value, card_column, FALSE};
3281 85218 : char buf[ERRSIZE];
3282 85218 : int split = (l->type == type_int && l->data.i_val == -1);
3283 85218 : list *names = NULL;
3284 :
3285 3 : if (split)
3286 3 : names = sa_list(sql->sa);
3287 350470 : for (; ops; ops = ops->next, nr_args++) {
3288 265252 : if (!err) { /* we need the nr_args count at the end, but if an error is found, stop calling rel_value_exp */
3289 265230 : sql_exp *e = rel_value_exp(query, rel, ops->data.sym, fs|sql_farg, iek);
3290 265230 : if (!e) {
3291 6 : err = sql->session->status;
3292 6 : strcpy(buf, sql->errstr);
3293 6 : continue;
3294 : }
3295 265224 : if (split) {
3296 5 : ops = ops->next;
3297 5 : append(names, ops->data.sval);
3298 : }
3299 265224 : append(exps, e);
3300 265224 : append(tl, exp_subtype(e));
3301 : }
3302 : }
3303 85218 : if (l->type == type_int) {
3304 : /* exec nr (ops)*/
3305 5909 : int nr = l->data.i_val;
3306 5909 : cq *q = NULL;
3307 :
3308 5909 : if (err)
3309 : return NULL;
3310 5908 : if (nr == -1 || (q = qc_find(sql->qc, nr))) {
3311 5906 : list *nexps = new_exp_list(sql->sa);
3312 5906 : sql_func *f = q?q->f:inplace_func(sql);
3313 5906 : list *ops = q?f->ops:sql->params;
3314 :
3315 5906 : tl = sa_list(sql->sa);
3316 5906 : if (list_length(ops) != list_length(exps))
3317 3 : return sql_error(sql, 02, SQLSTATE(42000) "EXEC called with wrong number of arguments: expected %d, got %d", list_length(ops), list_length(exps));
3318 5903 : if (split) {
3319 3 : exps = reorder_args(sql, exps, names, ops);
3320 3 : if (!exps)
3321 0 : return sql_error(sql, 02, SQLSTATE(42000) "EXEC called with wrong arguments");
3322 : }
3323 5903 : if (exps->h && ops) {
3324 21927 : for (node *n = exps->h, *m = ops->h; n && m; n = n->next, m = m->next) {
3325 16115 : sql_arg *a = m->data;
3326 16115 : sql_exp *e = n->data;
3327 16115 : sql_subtype *ntp = &a->type;
3328 :
3329 16115 : if (ntp && ntp->type)
3330 16115 : e = exp_check_type(sql, ntp, NULL, e, type_equal);
3331 : else
3332 0 : a->type = *exp_subtype(e);
3333 16115 : if (!e) {
3334 1 : err = sql->session->status;
3335 1 : strcpy(buf, sql->errstr);
3336 1 : break;
3337 : }
3338 16114 : append(nexps, e);
3339 16114 : append(tl, exp_subtype(e));
3340 : }
3341 : }
3342 :
3343 5903 : if (err)
3344 : return NULL;
3345 5902 : if (q)
3346 5899 : sql->type = q->type;
3347 5992 : return exp_op(sql->sa, list_empty(nexps) ? NULL : nexps, sql_dup_subfunc(sql->sa, f, tl, NULL));
3348 : } else {
3349 2 : return sql_error(sql, 02, SQLSTATE(42000) "EXEC: PREPARED Statement missing '%d'", nr);
3350 : }
3351 : }
3352 79309 : char *fname = qname_schema_object(l->data.lval);
3353 79309 : char *sname = qname_schema(l->data.lval);
3354 :
3355 79309 : if (!sname && strcmp(fname, "field") == 0) { /* map into join */
3356 2 : if (err)
3357 2 : return NULL;
3358 1 : if (list_length(exps) < 2)
3359 1 : return sql_error(sql, 02, SQLSTATE(42000) "Field function called with not enough arguments");
3360 0 : sql_exp *le = exps->h->data;
3361 0 : set_freevar(le, 1);
3362 0 : list_remove_data(exps, NULL, le);
3363 0 : sql_exp *re = exp_values(sql->sa, exps);
3364 0 : exp_label(sql->sa, re, ++sql->label);
3365 0 : sql_rel *r = rel_project(sql->sa, NULL, append(sa_list(sql->sa), re));
3366 0 : sql_exp *id = NULL;
3367 0 : rel_add_identity(sql, r, &id);
3368 0 : re = exp_ref(sql, re);
3369 0 : id = exp_ref(sql, id);
3370 0 : if (r) {
3371 0 : r->nrcols = list_length(exps);
3372 0 : sql_exp *e = exp_compare(sql->sa, le, re, cmp_equal);
3373 0 : r = rel_select(sql->sa, r, e);
3374 0 : r = rel_project(sql->sa, r, append(sa_list(sql->sa), exp_convert(sql, id, exp_subtype(id), sql_bind_localtype("int"))));
3375 0 : re = exp_rel(sql, r);
3376 0 : return re;
3377 : }
3378 : }
3379 : /* first try aggregate */
3380 79307 : if (find_func(sql, sname, fname, nr_args, F_AGGR, false, NULL, NULL)) { /* We have to pass the arguments properly, so skip call to rel_aggr */
3381 : /* reset error */
3382 2 : sql->session->status = 0;
3383 2 : sql->errstr[0] = '\0';
3384 2 : return _rel_aggr(query, rel, l->next->data.i_val, sname, fname, l->next->next->data.lval->h, fs);
3385 : }
3386 79305 : if (err) {
3387 2 : sql->session->status = err;
3388 2 : strcpy(sql->errstr, buf);
3389 2 : return NULL;
3390 : }
3391 79303 : sql->session->status = 0; /* if the function was not found clean the error */
3392 79303 : sql->errstr[0] = '\0';
3393 79303 : return _rel_nop(sql, sname, fname, tl, rel ? *rel : NULL, exps, ek);
3394 : }
3395 :
3396 : typedef struct aggr_input {
3397 : sql_query *query;
3398 : int groupby;
3399 : char *err;
3400 : } aggr_input;
3401 :
3402 : static sql_exp *
3403 372 : exp_valid(visitor *v, sql_rel *rel, sql_exp *e, int depth)
3404 : {
3405 372 : aggr_input *ai = v->data;
3406 372 : (void)rel; (void)depth;
3407 :
3408 372 : int vf = is_freevar(e);
3409 372 : if (!v->changes && vf && vf < ai->groupby) { /* check need with outer query */
3410 14 : sql_rel *sq = query_fetch_outer(ai->query, vf-1);
3411 :
3412 : /* problem freevar have cardinality CARD_ATOM */
3413 14 : if (sq->card <= CARD_AGGR && exp_card(e) != CARD_AGGR && is_alias(e->type)) {
3414 4 : if (!exps_bind_column(sq->exps, e->l, e->r, NULL, 0)) {
3415 1 : v->changes = 1;
3416 1 : ai->err = SQLSTATE(42000) "SELECT: subquery uses ungrouped column from outer query";
3417 : }
3418 : }
3419 358 : } else if (!v->changes && vf && vf == ai->groupby) { /* check if input is already aggregated */
3420 279 : sql_rel *sq = query_fetch_outer(ai->query, vf-1);
3421 279 : sql_exp *a = NULL;
3422 :
3423 279 : if (sq->card <= CARD_AGGR && is_alias(e->type)) {
3424 187 : if ((a = exps_bind_column(sq->exps, e->l, e->r, NULL, 0)) && is_aggr(a->type)) { /* aggregate */
3425 9 : v->changes = 1;
3426 9 : ai->err = SQLSTATE(42000) "SELECT: aggregate function calls cannot be nested";
3427 : }
3428 : }
3429 : }
3430 372 : return e;
3431 : }
3432 :
3433 : static char *
3434 272 : exps_valid(sql_query *query, list *exps, int groupby)
3435 : {
3436 272 : aggr_input ai = { .query = query, .groupby = groupby };
3437 272 : visitor v = { .sql = query->sql, .data = &ai };
3438 :
3439 272 : exps_exp_visitor_topdown(&v, NULL, exps, 0, &exp_valid, true);
3440 272 : if (v.changes)
3441 10 : return ai.err;
3442 : return NULL;
3443 : }
3444 :
3445 : static sql_exp *
3446 41756 : _rel_aggr(sql_query *query, sql_rel **rel, int distinct, char *sname, char *aname, dnode *args, int f)
3447 : {
3448 41756 : mvc *sql = query->sql;
3449 41756 : exp_kind ek = {type_value, card_column, FALSE};
3450 41756 : sql_subfunc *a = NULL;
3451 41756 : int no_nil = 0, group = 0, all_aggr = query_has_outer(query), i;
3452 41756 : unsigned int all_freevar = 0;
3453 41756 : sql_rel *groupby = rel ? *rel : NULL, *sel = NULL, *gr, *og = NULL, *res = groupby;
3454 41756 : sql_rel *subquery = NULL;
3455 41756 : list *exps = NULL, *ungrouped_cols = NULL;
3456 41756 : bool is_grouping = !strcmp(aname, "grouping"), has_args = false, found = false, used_rel = false;
3457 :
3458 41756 : if (!all_aggr) {
3459 27527 : if (!groupby) {
3460 4 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3461 4 : return sql_error(sql, 02, SQLSTATE(42000) "%s: missing group by", toUpperCopy(uaname, aname));
3462 27523 : } else if (is_sql_groupby(f)) {
3463 8 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3464 8 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate function '%s' not allowed in GROUP BY clause", toUpperCopy(uaname, aname), aname);
3465 27515 : } else if (is_sql_values(f)) {
3466 1 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3467 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed on an unique value", toUpperCopy(uaname, aname));
3468 27514 : } else if (is_sql_join(f)) { /* the is_sql_join test must come before is_sql_where, because the join conditions are handled with sql_where */
3469 3 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3470 3 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in JOIN conditions", toUpperCopy(uaname, aname));
3471 27511 : } else if (is_sql_where(f)) {
3472 4 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3473 4 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in WHERE clause", toUpperCopy(uaname, aname));
3474 27507 : } else if (is_sql_update_set(f) || is_sql_psm(f)) {
3475 1 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3476 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in SET, WHILE, IF, ELSE, CASE, WHEN, RETURN, ANALYZE clauses (use subquery)", toUpperCopy(uaname, aname));
3477 27506 : } else if (is_sql_aggr(f)) {
3478 4 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3479 4 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions cannot be nested", toUpperCopy(uaname, aname));
3480 27502 : } else if (is_psm_call(f)) {
3481 0 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3482 0 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed inside CALL", toUpperCopy(uaname, aname));
3483 27502 : } else if (is_sql_from(f)) {
3484 0 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3485 0 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in functions in FROM", toUpperCopy(uaname, aname));
3486 : }
3487 : }
3488 :
3489 41731 : exps = sa_list(sql->sa);
3490 41731 : if (args && args->data.sym) {
3491 23119 : bool arguments_correlated = true, all_const = true;
3492 :
3493 23119 : all_freevar = all_aggr?1:0;
3494 50447 : for (i = 0; args && args->data.sym; args = args->next, i++) {
3495 27388 : int base = (!groupby || !is_project(groupby->op) || is_base(groupby->op) || is_processed(groupby));
3496 19509 : sql_rel *gl = base?groupby:groupby->l, *ogl = gl; /* handle case of subqueries without correlation */
3497 27388 : sql_exp *e = rel_value_exp(query, &gl, args->data.sym, (f | sql_aggr)& ~sql_farg, ek);
3498 27388 : bool found_one_freevar = false;
3499 :
3500 27388 : if (!e)
3501 60 : return NULL;
3502 27334 : used_rel |= (rel_has_exp(gl, e, true) == 0);
3503 27334 : has_args = true;
3504 27334 : if (gl && gl != ogl) {
3505 5 : if (gl->grouped) {
3506 5 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3507 5 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions cannot be nested", toUpperCopy(uaname, aname));
3508 : }
3509 0 : if (!base)
3510 0 : groupby->l = subquery = gl;
3511 : else
3512 : groupby = subquery = gl;
3513 : }
3514 27329 : sql_subtype *t = exp_subtype(e);
3515 27329 : if (!t) { /* we also do not expect parameters here */
3516 1 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3517 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: parameters not allowed as arguments to aggregate functions", toUpperCopy(uaname, aname));
3518 : }
3519 27328 : if (!t->type->localtype) {
3520 47 : if (e->type == e_atom && !e->f) {
3521 44 : t = sql_bind_localtype("bte");
3522 44 : e->tpe = *t;
3523 44 : if (e->l)
3524 44 : e->l = atom_set_type(sql->sa, e->l, t);
3525 : }
3526 : }
3527 :
3528 27328 : all_aggr &= (exp_card(e) <= CARD_AGGR && !exp_is_atom(e) && is_aggr(e->type) && !is_func(e->type) && (!groupby || !is_groupby(groupby->op) || !groupby->r || !exps_find_exp(groupby->r, e)));
3529 27328 : exp_only_freevar(query, e, &arguments_correlated, &found_one_freevar, &ungrouped_cols);
3530 27328 : all_freevar &= (arguments_correlated && found_one_freevar) || (is_atom(e->type)?all_freevar:0); /* no uncorrelated variables must be found, plus at least one correlated variable to push this aggregate to an outer query */
3531 27328 : all_const &= is_atom(e->type);
3532 27328 : list_append(exps, e);
3533 : }
3534 23059 : if (all_const)
3535 203 : all_freevar = 0;
3536 : }
3537 41671 : if (!all_freevar) {
3538 41379 : if (is_sql_groupby(f)) {
3539 1 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3540 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate function '%s' not allowed in GROUP BY clause", toUpperCopy(uaname, aname), aname);
3541 41378 : } else if (is_sql_from(f)) {
3542 2 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3543 2 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in functions in FROM", toUpperCopy(uaname, aname));
3544 41376 : } else if (is_sql_aggr(f) && groupby->grouped) {
3545 2 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3546 2 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions cannot be nested", toUpperCopy(uaname, aname));
3547 41374 : } else if (is_sql_values(f)) {
3548 1 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3549 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed on an unique value", toUpperCopy(uaname, aname));
3550 41373 : } else if (is_sql_join(f)) { /* the is_sql_join test must come before is_sql_where, because the join conditions are handled with sql_where */
3551 1 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3552 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in JOIN conditions", toUpperCopy(uaname, aname));
3553 41372 : } else if (is_sql_where(f)) {
3554 5 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3555 5 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in WHERE clause", toUpperCopy(uaname, aname));
3556 41367 : } else if (!all_aggr && !list_empty(ungrouped_cols)) {
3557 123 : for (node *n = ungrouped_cols->h ; n ; n = n->next) {
3558 66 : sql_rel *outer;
3559 66 : sql_exp *e = (sql_exp*) n->data;
3560 :
3561 66 : if ((outer = query_fetch_outer(query, is_freevar(e)-1))) {
3562 66 : int of = query_fetch_outer_state(query, is_freevar(e)-1);
3563 66 : if (outer->grouped) {
3564 24 : bool err = false, was_processed = false;
3565 :
3566 24 : if (is_processed(outer)) {
3567 5 : was_processed = true;
3568 5 : reset_processed(outer);
3569 : }
3570 24 : if (!is_groupby_col(outer, e))
3571 3 : err = true;
3572 24 : if (was_processed)
3573 5 : set_processed(outer);
3574 24 : if (err) {
3575 3 : if (exp_name(e) && exp_relname(e) && !has_label(e))
3576 3 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column \"%s.%s\" from outer query", exp_relname(e), exp_name(e));
3577 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column from outer query");
3578 : }
3579 42 : } else if (!used_rel && is_sql_where(of)) {
3580 2 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3581 2 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions not allowed in WHERE clause", toUpperCopy(uaname, aname));
3582 40 : } else if (!is_sql_aggr(of)) {
3583 36 : set_outer(outer);
3584 : }
3585 : }
3586 : }
3587 : }
3588 : }
3589 :
3590 41654 : if (all_freevar) { /* case 2, ie use outer */
3591 292 : int card;
3592 292 : sql_exp *exp = NULL;
3593 : /* find proper groupby relation */
3594 591 : for (node *n = exps->h; n; n = n->next) {
3595 299 : sql_exp *e = n->data;
3596 :
3597 299 : int vf = exp_freevar_offset(sql, e);
3598 299 : if (vf > (int)all_freevar)
3599 23 : all_freevar = vf;
3600 299 : exp = e;
3601 : }
3602 292 : if (query_has_outer(query) >= all_freevar) {
3603 292 : int sql_state = query_fetch_outer_state(query,all_freevar-1);
3604 292 : res = groupby = query_fetch_outer(query, all_freevar-1);
3605 292 : card = query_outer_used_card(query, all_freevar-1);
3606 : /* given groupby validate all input expressions */
3607 292 : char *err;
3608 292 : if (groupby && !is_groupby(groupby->op)) {
3609 111 : sql_exp *p = query_outer_last_used(query, all_freevar-1);
3610 111 : if (p && !is_aggr(p->type) && !is_groupby_col(groupby, p)) {
3611 20 : if (p->type == e_column)
3612 20 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", (char*)p->l, (char*)p->r);
3613 0 : if (exp_name(p) && exp_relname(p) && !has_label(p))
3614 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", exp_relname(p), exp_name(p));
3615 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
3616 : }
3617 : }
3618 272 : if ((err = exps_valid(query, exps, all_freevar)) != NULL) {
3619 10 : strcpy(sql->errstr, err);
3620 10 : sql->session->status = -ERR_GROUPBY;
3621 10 : return NULL;
3622 : }
3623 262 : if (exp && !is_groupby_col(res, exp)) {
3624 191 : if (is_sql_groupby(sql_state))
3625 2 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate function '%s' not allowed in GROUP BY clause", aname);
3626 189 : if (is_sql_aggr(sql_state) && groupby->grouped) {
3627 3 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3628 3 : return sql_error(sql, 02, SQLSTATE(42000) "%s: aggregate functions cannot be nested", toUpperCopy(uaname, aname));
3629 : }
3630 186 : if (is_sql_values(sql_state))
3631 0 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed on an unique value");
3632 186 : if (is_sql_update_set(sql_state) || is_sql_psm(f))
3633 2 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed in SET, WHILE, IF, ELSE, CASE, WHEN, RETURN, ANALYZE clauses");
3634 184 : if (is_sql_join(sql_state))
3635 4 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed in JOIN conditions");
3636 180 : if (is_sql_where(sql_state))
3637 3 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed in WHERE clause");
3638 177 : if (is_psm_call(sql_state))
3639 0 : return sql_error(sql, 05, SQLSTATE(42000) "CALL: aggregate functions not allowed inside CALL");
3640 177 : if (is_sql_from(sql_state))
3641 0 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed in functions in FROM");
3642 177 : if (card > CARD_AGGR) { /* used an expression before on the non grouped relation */
3643 0 : sql_exp *lu = query_outer_last_used(query, all_freevar-1);
3644 0 : if (lu->type == e_column)
3645 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column \"%s.%s\" from outer query", (char*)lu->l, (char*)lu->r);
3646 0 : if (exp_name(lu) && exp_relname(lu) && !has_label(lu))
3647 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column \"%s.%s\" from outer query", exp_relname(lu), exp_name(lu));
3648 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column from outer query");
3649 : }
3650 177 : if (is_outer(groupby))
3651 2 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column from outer query");
3652 : }
3653 : } else {
3654 : all_freevar = 0;
3655 : }
3656 41362 : } else if (!subquery && groupby && is_outer(groupby) && !is_groupby(groupby->op))
3657 1 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: subquery uses ungrouped column from outer query");
3658 :
3659 : /* find having select */
3660 41607 : if (!subquery && groupby && !is_processed(groupby) && is_sql_having(f)) {
3661 104 : og = groupby;
3662 104 : while(!is_processed(groupby) && !is_base(groupby->op)) {
3663 59 : if (is_select(groupby->op) || !groupby->l)
3664 : break;
3665 : if (groupby->l)
3666 : groupby = groupby->l;
3667 : }
3668 63 : if (groupby && is_select(groupby->op) && !is_processed(groupby)) {
3669 18 : group = 1;
3670 18 : sel = groupby;
3671 : /* At the end we switch back to the old projection relation og.
3672 : * During the partitioning and ordering we add the expressions to the intermediate relations. */
3673 : }
3674 18 : if (!sel)
3675 : groupby = og;
3676 18 : if (sel && sel->l)
3677 18 : groupby = sel->l;
3678 : }
3679 :
3680 : /* find groupby */
3681 41607 : if (!subquery && groupby && !is_processed(groupby) && !is_base(groupby->op)) {
3682 27374 : og = groupby;
3683 27374 : groupby = rel_find_groupby(groupby);
3684 27374 : if (groupby)
3685 : group = 1;
3686 : else
3687 : groupby = og;
3688 : }
3689 :
3690 7790 : if (!groupby && exps_card(exps) > CARD_ATOM) {
3691 0 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3692 0 : return sql_error(sql, 02, SQLSTATE(42000) "%s: missing group by", toUpperCopy(uaname, aname));
3693 : }
3694 :
3695 41607 : if (!subquery && groupby && groupby->op != op_groupby) { /* implicit groupby */
3696 20293 : if (!all_freevar && query->last_exp && !is_sql_aggr(query->last_state)) {
3697 9 : if (exp_relname(query->last_exp) && exp_name(query->last_exp) && !has_label(query->last_exp))
3698 9 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s.%s' in query results without an aggregate function", exp_relname(query->last_exp), exp_name(query->last_exp));
3699 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
3700 : }
3701 20284 : res = groupby = rel_groupby(sql, groupby, NULL);
3702 : }
3703 41598 : if (subquery) {
3704 0 : assert(!all_freevar);
3705 0 : res = groupby;
3706 0 : if (is_sql_sel(f) && is_left(subquery->op) && !is_groupby(groupby->op)) {
3707 0 : res = groupby = rel_groupby(sql, groupby, NULL);
3708 0 : exps_set_freevar(sql, exps, groupby); /* mark free variables */
3709 0 : } else if (!is_groupby(groupby->op)) {
3710 0 : res = groupby = rel_groupby(sql, groupby, NULL);
3711 : }
3712 0 : assert(!is_base(groupby->op));
3713 : }
3714 41598 : if ((!exps || exps_card(exps) > CARD_ATOM) && (!res || !groupby))
3715 : return NULL;
3716 :
3717 41598 : if (all_freevar) {
3718 246 : query_update_outer(query, res, all_freevar-1);
3719 41352 : } else if (rel) {
3720 41352 : *rel = res;
3721 41352 : if (query->last_rel != res) {
3722 37422 : query->last_rel = res;
3723 37422 : query->last_state |= sql_aggr;
3724 : }
3725 : }
3726 :
3727 41598 : if (!has_args) { /* count(*) case */
3728 18608 : sql_exp *e;
3729 :
3730 18608 : if (strcmp(aname, "count") != 0) {
3731 2 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3732 2 : return sql_error(sql, 02, SQLSTATE(42000) "%s: unable to perform '%s(*)'", toUpperCopy(uaname, aname), aname);
3733 : }
3734 18606 : a = sql_bind_func(sql, "sys", aname, sql_bind_localtype("void"), NULL, F_AGGR, true, true);
3735 18606 : e = exp_aggr(sql->sa, NULL, a, distinct, 0, groupby?groupby->card:CARD_ATOM, 0);
3736 :
3737 18606 : if (!groupby)
3738 : return e;
3739 18606 : if (all_freevar)
3740 0 : query_outer_used_exp(query, all_freevar-1, e, sql_aggr);
3741 18606 : e = rel_groupby_add_aggr(sql, groupby, e);
3742 18606 : if (!group && !all_freevar)
3743 : return e;
3744 3202 : if (all_freevar) {
3745 0 : assert(!is_simple_project(res->op));
3746 0 : e->card = CARD_ATOM;
3747 0 : set_freevar(e, all_freevar-1);
3748 0 : return e;
3749 : }
3750 : return e;
3751 : }
3752 :
3753 : /* use cnt as nils shouldn't be counted */
3754 22990 : no_nil = 1;
3755 :
3756 22990 : gr = groupby;
3757 22990 : if (gr && gr->op == op_project && gr->l)
3758 : gr = gr->l;
3759 :
3760 22990 : if (is_grouping) {
3761 109 : sql_subtype *tpe;
3762 109 : list *l = (list*) groupby->r;
3763 :
3764 109 : if (list_length(l) <= 7)
3765 107 : tpe = sql_bind_localtype("bte");
3766 2 : else if (list_length(l) <= 15)
3767 2 : tpe = sql_bind_localtype("sht");
3768 0 : else if (list_length(l) <= 31)
3769 0 : tpe = sql_bind_localtype("int");
3770 0 : else if (list_length(l) <= 63)
3771 0 : tpe = sql_bind_localtype("lng");
3772 : #ifdef HAVE_HGE
3773 0 : else if (list_length(l) <= 127)
3774 0 : tpe = sql_bind_localtype("hge");
3775 : #endif
3776 : else
3777 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: GROUPING the number of grouping columns is larger"
3778 : " than the maximum number of representable bits from this server (%d > %d)", list_length(l),
3779 : #ifdef HAVE_HGE
3780 : 127
3781 : #else
3782 : 63
3783 : #endif
3784 : );
3785 109 : a = sql_bind_func_result(sql, sname, aname, F_AGGR, true, tpe, 1, exp_subtype(exps->h->data));
3786 : } else
3787 22881 : a = sql_bind_func_(sql, sname, aname, exp_types(sql->sa, exps), F_AGGR, false, false);
3788 :
3789 22990 : if (a) {
3790 22985 : found = true;
3791 22985 : if (!execute_priv(sql, a->func))
3792 0 : a = NULL;
3793 22985 : if (!is_grouping && a && !(exps = check_arguments_and_find_largest_any_type(sql, rel ? *rel : NULL, exps, a, 0, false)))
3794 0 : a = NULL;
3795 : }
3796 :
3797 22990 : if (a) {
3798 22985 : bool hasnil = have_nil(exps) || (strcmp(aname, "count") != 0 && (!groupby || list_empty(groupby->r))); /* for global case, the aggregate may return NULL */
3799 22985 : sql_exp *e = exp_aggr(sql->sa, exps, a, distinct, no_nil, groupby?groupby->card:CARD_ATOM, hasnil);
3800 :
3801 22985 : if (!groupby)
3802 : return e;
3803 22985 : if (all_freevar)
3804 246 : query_outer_aggregated(query, all_freevar-1, e);
3805 22985 : e = rel_groupby_add_aggr(sql, groupby, e);
3806 22985 : if (!group && !all_freevar)
3807 : return e;
3808 16495 : if (all_freevar) {
3809 246 : rel_bind_vars(sql, groupby->l, exps);
3810 246 : assert(!is_simple_project(res->op));
3811 246 : e->card = CARD_ATOM;
3812 246 : set_freevar(e, all_freevar-1);
3813 246 : return e;
3814 : }
3815 : return e;
3816 : }
3817 5 : const char *type = "unknown";
3818 5 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
3819 :
3820 5 : if (!list_empty(exps)) {
3821 5 : sql_exp *e = exps->h->data;
3822 5 : type = exp_subtype(e)->type->base.name;
3823 : }
3824 15 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "%s: %s aggregate %s%s%s'%s'(%s)", toUpperCopy(uaname, aname), found ? "insufficient privileges for" : "no such",
3825 : sname ? "'":"", sname ? sname : "", sname ? "'.":"", aname, type);
3826 : }
3827 :
3828 : static sql_exp *
3829 41754 : rel_aggr(sql_query *query, sql_rel **rel, symbol *se, int f)
3830 : {
3831 41754 : dlist *l = se->data.lval;
3832 41754 : dnode *d = l->h->next->next;
3833 41754 : int distinct = l->h->next->data.i_val;
3834 41754 : char *aname = qname_schema_object(l->h->data.lval);
3835 41754 : char *sname = qname_schema(l->h->data.lval);
3836 :
3837 41754 : return _rel_aggr(query, rel, distinct, sname, aname, d, f);
3838 : }
3839 :
3840 : static sql_exp *
3841 100825 : rel_case(sql_query *query, sql_rel **rel, symbol *opt_cond, dlist *when_search_list, symbol *opt_else, int f)
3842 : {
3843 100825 : mvc *sql = query->sql;
3844 100825 : sql_subtype *tpe = NULL;
3845 100825 : list *conds = new_exp_list(sql->sa), *results = new_exp_list(sql->sa);
3846 100825 : sql_subtype *restype = NULL, *condtype = NULL, ctype, rtype, bt;
3847 100825 : sql_exp *res = NULL, *opt_cond_exp = NULL;
3848 100825 : exp_kind ek = {type_value, card_column, FALSE};
3849 :
3850 100825 : if (opt_cond) {
3851 9436 : if (!(opt_cond_exp = rel_value_exp(query, rel, opt_cond, f, ek)))
3852 : return NULL;
3853 9435 : condtype = exp_subtype(opt_cond_exp);
3854 : }
3855 :
3856 248705 : for (dnode *dn = when_search_list->h; dn; dn = dn->next) {
3857 147890 : sql_exp *cond = NULL, *result = NULL;
3858 147890 : dlist *when = dn->data.sym->data.lval;
3859 :
3860 147890 : if (opt_cond)
3861 45602 : cond = rel_value_exp(query, rel, when->h->data.sym, f, ek);
3862 : else
3863 102288 : cond = rel_logical_value_exp(query, rel, when->h->data.sym, f, ek);
3864 147890 : if (!cond)
3865 : return NULL;
3866 147884 : append(conds, cond);
3867 147884 : tpe = exp_subtype(cond);
3868 147884 : if (tpe && condtype) {
3869 56495 : result_datatype(&ctype, condtype, tpe);
3870 56495 : condtype = &ctype;
3871 91389 : } else if (tpe) {
3872 91387 : condtype = tpe;
3873 : }
3874 :
3875 147884 : if (!(result = rel_value_exp(query, rel, when->h->next->data.sym, f, ek)))
3876 : return NULL;
3877 147881 : append(results, result);
3878 147881 : tpe = exp_subtype(result);
3879 147881 : if (tpe && restype) {
3880 47063 : result_datatype(&rtype, restype, tpe);
3881 47063 : restype = &rtype;
3882 100818 : } else if (tpe) {
3883 100812 : restype = tpe;
3884 : }
3885 : }
3886 100815 : if (opt_else) {
3887 98245 : if (!(res = rel_value_exp(query, rel, opt_else, f, ek)))
3888 : return NULL;
3889 :
3890 98245 : tpe = exp_subtype(res);
3891 98245 : if (tpe && restype) {
3892 98240 : result_datatype(&rtype, restype, tpe);
3893 98240 : restype = &rtype;
3894 5 : } else if (tpe) {
3895 : restype = tpe;
3896 : }
3897 :
3898 98243 : if (!restype)
3899 2 : return sql_error(sql, 02, SQLSTATE(42000) "Result type missing");
3900 98243 : if (restype->type->localtype == TYPE_void) /* NULL */
3901 0 : restype = sql_bind_localtype("str");
3902 :
3903 98243 : if (!(res = exp_check_type(sql, restype, rel ? *rel : NULL, res, type_equal)))
3904 : return NULL;
3905 : } else {
3906 2570 : if (!restype)
3907 0 : return sql_error(sql, 02, SQLSTATE(42000) "Result type missing");
3908 2570 : if (restype->type->localtype == TYPE_void) /* NULL */
3909 7 : restype = sql_bind_localtype("str");
3910 2570 : res = exp_null(sql->sa, restype);
3911 : }
3912 :
3913 100813 : if (!condtype)
3914 0 : return sql_error(sql, 02, SQLSTATE(42000) "Condition type missing");
3915 100813 : if (condtype->type->localtype == TYPE_void) /* NULL */
3916 0 : condtype = sql_bind_localtype("str");
3917 100813 : if (opt_cond_exp && !(opt_cond_exp = exp_check_type(sql, condtype, rel ? *rel : NULL, opt_cond_exp, type_equal)))
3918 : return NULL;
3919 100813 : sql_find_subtype(&bt, "boolean", 0, 0);
3920 100813 : list *args = sa_list(sql->sa);
3921 100813 : if (opt_cond_exp)
3922 9429 : append(args, opt_cond_exp);
3923 248687 : for (node *n = conds->h, *m = results->h; n && m; n = n->next, m = m->next) {
3924 147875 : sql_exp *cond = n->data;
3925 147875 : sql_exp *result = m->data;
3926 :
3927 147875 : if (!(result = exp_check_type(sql, restype, rel ? *rel : NULL, result, type_equal)))
3928 : return NULL;
3929 :
3930 147875 : if (!(cond = exp_check_type(sql, condtype, rel ? *rel : NULL, cond, type_equal)))
3931 : return NULL;
3932 147874 : if (!opt_cond_exp && !(cond = exp_check_type(sql, &bt, rel ? *rel : NULL, cond, type_equal)))
3933 : return NULL;
3934 147874 : append(args, cond);
3935 147874 : append(args, result);
3936 : }
3937 100812 : assert(res);
3938 100812 : list_append(args, res);
3939 100812 : list *types = sa_list(sql->sa);
3940 100812 : types = append(append(types, restype), restype);
3941 192196 : sql_subfunc *case_func = find_func(sql, NULL, opt_cond_exp?"casewhen":"case", list_length(types), F_FUNC, true, NULL, NULL);
3942 100812 : res = exp_op(sql->sa, args, case_func);
3943 100812 : ((sql_subfunc*)res->f)->res->h->data = sql_create_subtype(sql->sa, restype->type, restype->digits, restype->scale);
3944 100812 : return res;
3945 : }
3946 :
3947 : static sql_exp *
3948 3838 : rel_complex_case(sql_query *query, sql_rel **rel, dlist *case_args, int f, str func)
3949 : {
3950 3838 : exp_kind ek = {type_value, card_column, FALSE};
3951 3838 : list *args = sa_list(query->sql->sa);
3952 3838 : sql_subtype *restype = NULL, rtype;
3953 3838 : sql_exp *res;
3954 :
3955 : /* generate nested func calls */
3956 11970 : for(dnode *dn = case_args->h; dn; dn = dn->next) {
3957 8145 : sql_exp *a = rel_value_exp(query, rel, dn->data.sym, f, ek);
3958 8145 : if (!a)
3959 : return NULL;
3960 8132 : append(args, a);
3961 : /* all arguments should have the same type */
3962 8132 : sql_subtype *tpe = exp_subtype(a);
3963 8132 : if (tpe && restype) {
3964 4296 : result_datatype(&rtype, restype, tpe);
3965 4296 : restype = &rtype;
3966 3836 : } else if (tpe) {
3967 3836 : restype = tpe;
3968 : }
3969 : }
3970 3825 : if (!restype)
3971 0 : return sql_error(query->sql, 02, SQLSTATE(42000) "Result type missing");
3972 3825 : if (restype->type->localtype == TYPE_void) /* NULL */
3973 0 : restype = sql_bind_localtype("str");
3974 3825 : list *nargs = sa_list(query->sql->sa);
3975 11942 : for (node *m = args->h; m; m = m->next) {
3976 8117 : sql_exp *result = m->data;
3977 :
3978 8117 : if (!(result = exp_check_type(query->sql, restype, rel ? *rel : NULL, result, type_equal)))
3979 : return NULL;
3980 8117 : append(nargs, result);
3981 : }
3982 3825 : list *types = append(append(sa_list(query->sql->sa), restype), restype);
3983 3825 : sql_subfunc *fnc = find_func(query->sql, NULL, func, list_length(types), F_FUNC, true, NULL, NULL);
3984 3825 : res = exp_op(query->sql->sa, nargs, fnc);
3985 3825 : ((sql_subfunc*)res->f)->res->h->data = sql_create_subtype(query->sql->sa, restype->type, restype->digits, restype->scale);
3986 3825 : return res;
3987 : }
3988 :
3989 : static sql_exp *
3990 104663 : rel_case_exp(sql_query *query, sql_rel **rel, symbol *se, int f)
3991 : {
3992 104663 : dlist *l = se->data.lval;
3993 :
3994 104663 : if (se->token == SQL_COALESCE) {
3995 3687 : return rel_complex_case(query, rel, l, f | sql_farg, "coalesce");
3996 100976 : } else if (se->token == SQL_NULLIF) {
3997 151 : return rel_complex_case(query, rel, l, f | sql_farg, "nullif");
3998 100825 : } else if (l->h->type == type_list) {
3999 91389 : dlist *when_search_list = l->h->data.lval;
4000 91389 : symbol *opt_else = l->h->next->data.sym;
4001 :
4002 91389 : return rel_case(query, rel, NULL, when_search_list, opt_else, f | sql_farg);
4003 : } else {
4004 9436 : symbol *scalar_exp = l->h->data.sym;
4005 9436 : dlist *when_value_list = l->h->next->data.lval;
4006 9436 : symbol *opt_else = l->h->next->next->data.sym;
4007 :
4008 9436 : return rel_case(query, rel, scalar_exp, when_value_list, opt_else, f | sql_farg);
4009 : }
4010 : }
4011 :
4012 : #define E_ATOM_STRING(e) ((atom*)(e)->l)->data.val.sval
4013 :
4014 : static sql_exp *
4015 170113 : rel_cast(sql_query *query, sql_rel **rel, symbol *se, int f)
4016 : {
4017 170113 : mvc *sql = query->sql;
4018 170113 : dlist *dl = se->data.lval;
4019 170113 : symbol *s = dl->h->data.sym;
4020 170113 : sql_subtype *tpe = &dl->h->next->data.typeval;
4021 170113 : exp_kind ek = {type_value, card_column, FALSE};
4022 170113 : sql_exp *e = rel_value_exp(query, rel, s, f|sql_farg, ek);
4023 :
4024 170113 : if (!e)
4025 : return NULL;
4026 :
4027 : /* strings may need to be truncated */
4028 170098 : if (EC_VARCHAR(tpe->type->eclass) && tpe->digits > 0) {
4029 83082 : sql_subtype *et = exp_subtype(e);
4030 : /* truncate only if the number of digits are smaller or from clob */
4031 83082 : if (et && EC_VARCHAR(et->type->eclass) && (tpe->digits < et->digits || et->digits == 0)) {
4032 2870 : sql_subfunc *c = sql_bind_func(sql, "sys", "truncate", et, sql_bind_localtype("int"), F_FUNC, true, true);
4033 2870 : if (c)
4034 2870 : e = exp_binop(sql->sa, e, exp_atom_int(sql->sa, tpe->digits), c);
4035 : }
4036 : }
4037 :
4038 170098 : if (tpe->type->eclass == EC_DEC) {
4039 447 : sql_subtype *et = exp_subtype(e);
4040 447 : if (e->type == e_atom && !tpe->digits) {
4041 9 : if (et->type->eclass == EC_NUM || et->type->eclass == EC_DEC) {
4042 6 : tpe->digits = atom_num_digits(e->l);
4043 6 : tpe = sql_bind_subtype(sql->sa, "decimal", tpe->digits, et->scale);
4044 3 : } else if (EC_VARCHAR(et->type->eclass)) {
4045 2 : char *s = E_ATOM_STRING(e);
4046 2 : unsigned int min_precision = 0, min_scale = 0;
4047 2 : bool dot_seen = false;
4048 16 : for (size_t i = 0; i < strlen(s); i++) {
4049 14 : if (isdigit(s[i])) {
4050 12 : min_precision++;
4051 12 : if (dot_seen)
4052 10 : min_scale++;
4053 2 : } else if (s[i] == '.') {
4054 2 : dot_seen = true;
4055 : }
4056 : }
4057 2 : tpe = sql_bind_subtype(sql->sa, "decimal", min_precision, min_scale);
4058 : } else { /* fallback */
4059 1 : tpe = sql_bind_subtype(sql->sa, "decimal", 18, 3);
4060 : }
4061 438 : } else if (!tpe->digits && !tpe->scale) {
4062 105 : if (et->type->eclass == EC_NUM)
4063 36 : tpe = sql_bind_subtype(sql->sa, "decimal", et->digits, 0);
4064 : else /* fallback */
4065 69 : tpe = sql_bind_subtype(sql->sa, "decimal", 18, 3);
4066 : }
4067 : }
4068 :
4069 170098 : if (e)
4070 170098 : e = exp_check_type(sql, tpe, rel ? *rel : NULL, e, type_cast);
4071 :
4072 170098 : if (e && e->type == e_convert)
4073 48302 : exp_label(sql->sa, e, ++sql->label);
4074 :
4075 : return e;
4076 : }
4077 :
4078 : static sql_exp *
4079 1584 : rel_next_value_for( mvc *sql, symbol *se )
4080 : {
4081 1584 : char *sname = qname_schema(se->data.lval);
4082 1584 : char *seqname = qname_schema_object(se->data.lval);
4083 1584 : sql_sequence *seq = NULL;
4084 1584 : sql_subtype t;
4085 1584 : sql_subfunc *f;
4086 :
4087 1584 : if (!stack_find_rel_view(sql, seqname)) {
4088 1388 : if (!(seq = find_sequence_on_scope(sql, sname, seqname, "NEXT VALUE FOR")))
4089 : return NULL;
4090 1386 : if (!mvc_schema_privs(sql, seq->s))
4091 0 : return sql_error(sql, 02, SQLSTATE(42000) "NEXT VALUE FOR: access denied for %s to schema '%s'", get_string_global_var(sql, "current_user"), seq->s->base.name);
4092 : }
4093 1582 : sql_find_subtype(&t, "varchar", 0, 0);
4094 1582 : f = sql_bind_func(sql, "sys", "next_value_for", &t, &t, F_FUNC, true, true);
4095 1582 : assert(f);
4096 : /* sequence found in the stack. use session's schema? */
4097 1582 : return exp_binop(sql->sa, exp_atom_str(sql->sa, seq && seq->s ? seq->s->base.name : "sys", &t), exp_atom_str(sql->sa, seqname, &t), f);
4098 : }
4099 :
4100 : /* some users like to use aliases already in the groupby */
4101 : static sql_exp *
4102 165 : rel_selection_ref(sql_query *query, sql_rel **rel, char *name, dlist *selection)
4103 : {
4104 165 : allocator *sa = query->sql->sa;
4105 165 : dlist *nl;
4106 165 : exp_kind ek = {type_value, card_column, FALSE};
4107 165 : sql_exp *res = NULL;
4108 165 : symbol *nsym;
4109 :
4110 165 : if (!selection)
4111 : return NULL;
4112 :
4113 679 : for (dnode *n = selection->h; n; n = n->next) {
4114 : /* we only look for columns */
4115 517 : tokens to = n->data.sym->token;
4116 517 : if (to == SQL_COLUMN || to == SQL_IDENT) {
4117 515 : dlist *l = n->data.sym->data.lval;
4118 : /* AS name */
4119 515 : if (l->h->next->data.sval && strcmp(l->h->next->data.sval, name) == 0) {
4120 146 : sql_exp *ve = rel_value_exp(query, rel, l->h->data.sym, sql_sel|sql_groupby, ek);
4121 146 : if (ve) {
4122 145 : if (res)
4123 1 : return sql_error(query->sql, ERR_AMBIGUOUS, SQLSTATE(42000) "SELECT: identifier '%s' ambiguous", name);
4124 144 : res = ve;
4125 :
4126 144 : nl = dlist_create(sa);
4127 144 : exp_setname(query->sql, ve, NULL, name);
4128 : /* now we should rewrite the selection such that it uses the new group by column */
4129 144 : dlist_append_string(sa, nl, sa_strdup(sa, name));
4130 144 : nsym = symbol_create_list(sa, to, nl);
4131 144 : nl = dlist_create(sa);
4132 144 : dlist_append_symbol(sa, nl, nsym);
4133 : /* no alias */
4134 144 : dlist_append_symbol(sa, nl, NULL);
4135 144 : n->data.sym = symbol_create_list(sa, to, nl);
4136 : }
4137 : }
4138 : }
4139 : }
4140 : return res;
4141 : }
4142 :
4143 : static char*
4144 197 : symbol_get_identifier(symbol *sym)
4145 : {
4146 197 : dlist *syml;
4147 :
4148 197 : if (sym->token != SQL_COLUMN && sym->token != SQL_IDENT)
4149 : return NULL;
4150 182 : syml = sym->data.lval;
4151 182 : if (dlist_length(syml) > 1)
4152 : return NULL;
4153 :
4154 165 : return syml->h->data.sval;
4155 : }
4156 :
4157 : static sql_exp*
4158 23642 : rel_group_column(sql_query *query, sql_rel **rel, symbol *grp, dlist *selection, list *exps, int f)
4159 : {
4160 23642 : sql_query *lquery = query_create(query->sql);
4161 23642 : mvc *sql = query->sql;
4162 23642 : exp_kind ek = {type_value, card_value, TRUE};
4163 23642 : sql_exp *e = rel_value_exp2(lquery, rel, grp, f, ek);
4164 :
4165 23642 : if (e && exp_is_atom(e)) {
4166 34 : sql_subtype *tpe = exp_subtype(e);
4167 34 : if (!is_atom(e->type) ||!tpe || tpe->type->eclass != EC_NUM) {
4168 2 : if (!tpe)
4169 2 : return sql_error(sql, 02, SQLSTATE(42000) "Cannot have a parameter (?) for group by column");
4170 3 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: non-integer constant in GROUP BY");
4171 : }
4172 : }
4173 :
4174 192 : if (!e) {
4175 192 : char buf[ERRSIZE], *name;
4176 192 : int status = sql->session->status;
4177 192 : strcpy(buf, sql->errstr);
4178 : /* reset error */
4179 192 : sql->session->status = 0;
4180 192 : sql->errstr[0] = '\0';
4181 :
4182 192 : if ((name = symbol_get_identifier(grp))) {
4183 163 : e = rel_selection_ref(query, rel, name, selection);
4184 163 : if (!e) { /* attempt to find in the existing list of group by expressions */
4185 29 : for (node *n = exps->h ; n && !e ; n = n->next) {
4186 9 : sql_exp *ge = (sql_exp *) n->data;
4187 9 : const char *gen = exp_name(ge);
4188 :
4189 9 : if (gen && strcmp(name, gen) == 0)
4190 5 : e = exp_ref(sql, ge);
4191 : }
4192 : }
4193 : }
4194 49 : if (!e && query_has_outer(query)) {
4195 : /* reset error */
4196 32 : sql->session->status = 0;
4197 32 : sql->errstr[0] = '\0';
4198 32 : e = rel_value_exp2(query, rel, grp, f, ek);
4199 : }
4200 44 : if (!e) {
4201 13 : if (sql->errstr[0] == 0) {
4202 10 : sql->session->status = status;
4203 10 : strcpy(sql->errstr, buf);
4204 : }
4205 13 : return NULL;
4206 : }
4207 : }
4208 23624 : if (!exp_subtype(e))
4209 0 : return sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) for group by column");
4210 : return e;
4211 : }
4212 :
4213 : static list*
4214 44 : list_power_set(allocator *sa, list* input) /* cube */
4215 : {
4216 44 : list *res = sa_list(sa);
4217 : /* N stores total number of subsets */
4218 44 : int N = (int) pow(2, input->cnt);
4219 :
4220 : /* generate each subset one by one */
4221 266 : for (int i = 0; i < N; i++) {
4222 222 : list *ll = sa_list(sa);
4223 222 : int j = 0; /* check every bit of i */
4224 844 : for (node *n = input->h ; n ; n = n->next) {
4225 : /* if j'th bit of i is set, then append */
4226 622 : if (i & (1 << j))
4227 311 : list_prepend(ll, n->data);
4228 622 : j++;
4229 : }
4230 222 : list_prepend(res, ll);
4231 : }
4232 44 : return res;
4233 : }
4234 :
4235 : static list*
4236 61 : list_rollup(allocator *sa, list* input)
4237 : {
4238 61 : list *res = sa_list(sa);
4239 :
4240 188 : for (int counter = input->cnt; counter > 0; counter--) {
4241 127 : list *ll = sa_list(sa);
4242 127 : int j = 0;
4243 376 : for (node *n = input->h; n && j < counter; j++, n = n->next)
4244 249 : list_append(ll, n->data);
4245 127 : list_append(res, ll);
4246 : }
4247 61 : list_append(res, sa_list(sa)); /* global aggregate case */
4248 61 : return res;
4249 : }
4250 :
4251 : static int
4252 320 : list_equal(list* list1, list* list2)
4253 : {
4254 375 : for (node *n = list1->h; n ; n = n->next) {
4255 328 : sql_exp *e = (sql_exp*) n->data;
4256 328 : if (!exps_find_exp(list2, e))
4257 : return 1;
4258 : }
4259 78 : for (node *n = list2->h; n ; n = n->next) {
4260 47 : sql_exp *e = (sql_exp*) n->data;
4261 47 : if (!exps_find_exp(list1, e))
4262 : return 1;
4263 : }
4264 : return 0;
4265 : }
4266 :
4267 : static list*
4268 26 : lists_cartesian_product_and_distinct(allocator *sa, list *l1, list *l2)
4269 : {
4270 26 : list *res = sa_list(sa);
4271 :
4272 : /* for each list of l2, merge into each list of l1 while removing duplicates */
4273 116 : for (node *n = l1->h ; n ; n = n->next) {
4274 90 : list *sub_list = (list*) n->data;
4275 :
4276 279 : for (node *m = l2->h ; m ; m = m->next) {
4277 189 : list *other = (list*) m->data;
4278 189 : list_append(res, list_distinct(list_merge(list_dup(sub_list, (fdup) NULL), other, (fdup) NULL), (fcmp) list_equal, (fdup) NULL));
4279 : }
4280 : }
4281 26 : return res;
4282 : }
4283 :
4284 : static list*
4285 9801 : rel_groupings(sql_query *query, sql_rel **rel, symbol *groupby, dlist *selection, int f, bool grouping_sets, list **sets)
4286 : {
4287 9801 : mvc *sql = query->sql;
4288 9801 : list *exps = new_exp_list(sql->sa);
4289 :
4290 9801 : if (mvc_highwater(sql))
4291 0 : return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
4292 :
4293 33351 : for (dnode *o = groupby->data.lval->h; o; o = o->next) {
4294 23569 : symbol *grouping = o->data.sym;
4295 23569 : list *next_set = NULL;
4296 :
4297 23569 : if (grouping->token == SQL_GROUPING_SETS) { /* call recursively, and merge the generated sets */
4298 39 : list *other = rel_groupings(query, rel, grouping, selection, f, true, &next_set);
4299 39 : if (!other)
4300 19 : return NULL;
4301 39 : exps = list_distinct(list_merge(exps, other, (fdup) NULL), (fcmp) exp_equal, (fdup) NULL);
4302 : } else {
4303 23530 : dlist *dl = grouping->data.lval;
4304 23530 : if (dl) {
4305 23504 : list *set_cols = new_exp_list(sql->sa); /* columns and combination of columns to be used for the next set */
4306 :
4307 47098 : for (dnode *oo = dl->h; oo; oo = oo->next) {
4308 23612 : symbol *grp = oo->data.sym;
4309 23612 : list *next_tuple = new_exp_list(sql->sa); /* next tuple of columns */
4310 :
4311 23612 : if (grp->token == SQL_COLUMN_GROUP) { /* set of columns */
4312 71 : assert(is_sql_group_totals(f));
4313 172 : for (dnode *ooo = grp->data.lval->h; ooo; ooo = ooo->next) {
4314 101 : symbol *elm = ooo->data.sym;
4315 101 : sql_exp *e = rel_group_column(query, rel, elm, selection, exps, f);
4316 101 : if (!e)
4317 : return NULL;
4318 101 : assert(e->type == e_column);
4319 101 : list_append(next_tuple, e);
4320 101 : list_append(exps, e);
4321 : }
4322 : } else { /* single column or expression */
4323 23541 : sql_exp *e = rel_group_column(query, rel, grp, selection, exps, f);
4324 23541 : if (!e)
4325 : return NULL;
4326 23523 : if (e->type != e_column && !exp_is_atom(e)) { /* store group by expressions in the stack */
4327 140 : if (is_sql_group_totals(f))
4328 0 : return sql_error(sql, 02, SQLSTATE(42000) "GROUP BY: grouping expressions not possible with ROLLUP, CUBE and GROUPING SETS");
4329 140 : if (!exp_has_rel(e) && !frame_push_groupby_expression(sql, grp, e))
4330 : return NULL;
4331 : }
4332 23523 : list_append(next_tuple, e);
4333 23523 : list_append(exps, e);
4334 : }
4335 23594 : list_append(set_cols, next_tuple);
4336 : }
4337 23486 : if (is_sql_group_totals(f)) {
4338 178 : if (grouping->token == SQL_ROLLUP)
4339 61 : next_set = list_rollup(sql->sa, set_cols);
4340 117 : else if (grouping->token == SQL_CUBE)
4341 44 : next_set = list_power_set(sql->sa, set_cols);
4342 : else /* the list of sets is not used in the "GROUP BY a, b, ..." case */
4343 73 : next_set = list_append(new_exp_list(sql->sa), set_cols);
4344 : }
4345 26 : } else if (is_sql_group_totals(f) && grouping_sets) /* The GROUP BY () case is the global aggregate which is always added by ROLLUP and CUBE */
4346 17 : next_set = list_append(new_exp_list(sql->sa), new_exp_list(sql->sa));
4347 : }
4348 23551 : if (is_sql_group_totals(f)) { /* if there are no sets, set the found one, otherwise calculate cartesian product and merge the distinct ones */
4349 235 : if (!next_set)
4350 1 : return sql_error(sql, 02, SQLSTATE(42000) "GROUP BY: GROUPING SETS is empty");
4351 234 : if (!*sets)
4352 157 : *sets = next_set;
4353 : else
4354 77 : *sets = grouping_sets ? list_merge(*sets, next_set, (fdup) NULL) : lists_cartesian_product_and_distinct(sql->sa, *sets, next_set);
4355 : }
4356 : }
4357 : return exps;
4358 : }
4359 :
4360 : static list*
4361 8208 : rel_partition_groupings(sql_query *query, sql_rel **rel, symbol *partitionby, dlist *selection, int f)
4362 : {
4363 8208 : mvc *sql = query->sql;
4364 8208 : dnode *o = partitionby->data.lval->h;
4365 8208 : list *exps = new_exp_list(sql->sa);
4366 :
4367 24650 : for (; o; o = o->next) {
4368 8242 : symbol *grp = o->data.sym;
4369 8242 : exp_kind ek = {type_value, card_value, TRUE};
4370 8242 : sql_exp *e = rel_value_exp2(query, rel, grp, f, ek);
4371 :
4372 8242 : if (!e) {
4373 5 : int status = sql->session->status;
4374 5 : char buf[ERRSIZE], *name;
4375 :
4376 : /* reset error */
4377 5 : sql->session->status = 0;
4378 5 : strcpy(buf, sql->errstr);
4379 5 : sql->errstr[0] = '\0';
4380 :
4381 5 : if ((name = symbol_get_identifier(grp))) {
4382 2 : e = rel_selection_ref(query, rel, name, selection);
4383 2 : if (!e) { /* attempt to find in the existing list of partition by expressions */
4384 3 : for (node *n = exps->h ; n ; n = n->next) {
4385 1 : sql_exp *ge = (sql_exp *) n->data;
4386 1 : const char *gen = exp_name(ge);
4387 :
4388 1 : if (gen && strcmp(name, gen) == 0) {
4389 0 : e = exp_ref(sql, ge);
4390 0 : break;
4391 : }
4392 : }
4393 : }
4394 : }
4395 5 : if (!e) {
4396 5 : if (sql->errstr[0] == 0) {
4397 5 : sql->session->status = status;
4398 5 : strcpy(sql->errstr, buf);
4399 : }
4400 5 : return NULL;
4401 : }
4402 : }
4403 :
4404 8237 : if (exp_has_rel(e))
4405 3 : return sql_error(sql, 02, SQLSTATE(42000) "PARTITION BY: subqueries not allowed in PARTITION BY clause");
4406 :
4407 8234 : if (e->type != e_column) { /* store group by expressions in the stack */
4408 36 : if (!frame_push_groupby_expression(sql, grp, e))
4409 : return NULL;
4410 : }
4411 :
4412 8234 : if (e->card > CARD_AGGR)
4413 8114 : e->card = CARD_AGGR;
4414 8234 : append(exps, e);
4415 : }
4416 : return exps;
4417 : }
4418 :
4419 : /* find selection expressions matching the order by column expression */
4420 : /* complex columns only */
4421 : static sql_exp *
4422 66993 : rel_order_by_column_exp(sql_query *query, sql_rel **R, symbol *column_r, int needs_distinct, int f)
4423 : {
4424 66993 : mvc *sql = query->sql;
4425 66993 : sql_rel *r = *R, *p = NULL;
4426 66993 : sql_exp *e = NULL, *found = NULL;
4427 66993 : exp_kind ek = {type_value, card_column, FALSE};
4428 :
4429 66993 : if (!r)
4430 : return e;
4431 :
4432 66993 : if (is_simple_project(r->op) && r->l && is_processed(r)) {
4433 66931 : p = r;
4434 66931 : r = r->l;
4435 : }
4436 :
4437 66993 : e = rel_value_exp(query, &r, column_r, f, ek);
4438 :
4439 66993 : if (r && !p)
4440 62 : *R = r;
4441 66931 : else if (r)
4442 66931 : p->l = r;
4443 66993 : if (e && p) {
4444 66904 : if (is_project(p->op) && (found = exps_any_match(p->exps, e))) { /* if one of the projections matches, return a reference to it */
4445 59433 : e = exp_ref(sql, found);
4446 : } else {
4447 7471 : if (needs_distinct)
4448 2 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: with DISTINCT ORDER BY expressions must appear in select list");
4449 7469 : e = rel_project_add_exp(sql, p, e);
4450 7469 : if (r) {
4451 121107 : for (node *n = p->exps->h ; n ; n = n->next) {
4452 113640 : sql_exp *ee = n->data;
4453 :
4454 113640 : if (ee->card > r->card) {
4455 2 : if (exp_name(ee) && !has_label(ee))
4456 2 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", exp_name(ee));
4457 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
4458 : }
4459 : }
4460 : }
4461 : }
4462 66900 : return e;
4463 : }
4464 89 : if (e && r && is_project(r->op)) {
4465 28 : sql_exp *found = exps_find_exp(r->exps, e);
4466 :
4467 28 : if (!found) {
4468 8 : if (needs_distinct)
4469 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: with DISTINCT ORDER BY expressions must appear in select list");
4470 8 : if (!is_simple_project(r->op) && !is_groupby(r->op))
4471 1 : *R = r = rel_project(sql->sa, r, rel_projections(sql, r, NULL, 1, 0));
4472 8 : append(r->exps, e);
4473 : } else {
4474 : e = found;
4475 : }
4476 28 : e = exp_ref(sql, e);
4477 : }
4478 : return e;
4479 : }
4480 :
4481 : static dlist *
4482 114755 : simple_selection(symbol *sq)
4483 : {
4484 114755 : if (sq->token == SQL_SELECT) {
4485 13 : SelectNode *sn;
4486 13 : sn = (SelectNode *) sq;
4487 :
4488 13 : if (!sn->from && !sn->where && !sn->distinct && !sn->window && dlist_length(sn->selection) == 1)
4489 7 : return sn->selection;
4490 : }
4491 : return NULL;
4492 : }
4493 :
4494 : static list *
4495 45599 : rel_order_by(sql_query *query, sql_rel **R, symbol *orderby, int needs_distinct, int f)
4496 : {
4497 45599 : mvc *sql = query->sql;
4498 45599 : sql_rel *rel = *R, *or = rel; /* the order by relation */
4499 45599 : list *exps = new_exp_list(sql->sa);
4500 :
4501 45599 : if (!orderby->data.lval) { /* by all */
4502 2 : if (is_sql_orderby(f)) {
4503 2 : assert(is_project(rel->op));
4504 6 : for(node *n = rel->exps->h; n; n = n->next) {
4505 4 : sql_exp *e = n->data;
4506 4 : append(exps, exp_ref(sql, e));
4507 : }
4508 : return exps;
4509 : }
4510 : return NULL;
4511 : }
4512 :
4513 45597 : dnode *o = orderby->data.lval->h;
4514 45597 : dlist *selection = NULL;
4515 :
4516 45597 : if (is_sql_orderby(f)) {
4517 36733 : assert(is_project(rel->op));
4518 36733 : rel = rel->l;
4519 : }
4520 :
4521 160305 : for (; o; o = o->next) {
4522 114755 : symbol *order = o->data.sym;
4523 :
4524 114755 : if (order->token == SQL_COLUMN || order->token == SQL_IDENT) {
4525 114755 : symbol *col = order->data.lval->h->data.sym;
4526 114755 : int direction = order->data.lval->h->next->data.i_val;
4527 114755 : sql_exp *e = NULL;
4528 :
4529 114755 : assert(order->data.lval->h->next->type == type_int);
4530 114755 : if ((selection = simple_selection(col)) != NULL) {
4531 7 : dnode *o = selection->h;
4532 7 : order = o->data.sym;
4533 7 : if (order->data.lval->h->type == type_symbol)
4534 6 : col = order->data.lval->h->data.sym;
4535 : /* remove optional name from selection */
4536 7 : order->data.lval->h->next = NULL;
4537 : }
4538 :
4539 114755 : if (col->token == SQL_COLUMN || col->token == SQL_IDENT || col->token == SQL_ATOM) {
4540 114533 : exp_kind ek = {type_value, card_column, FALSE};
4541 :
4542 114533 : e = rel_value_exp2(query, &rel, col, f, ek);
4543 :
4544 114533 : if (e && e->card <= CARD_ATOM) {
4545 9364 : sql_subtype *tpe = exp_subtype(e);
4546 : /* integer atom on the stack */
4547 9364 : if (!is_sql_window(f) && e->type == e_atom &&
4548 9256 : tpe->type->eclass == EC_NUM) {
4549 9247 : atom *a = e->l;
4550 9247 : int nr = (int)atom_get_int(a);
4551 :
4552 9247 : e = exps_get_exp(rel->exps, nr);
4553 9247 : if (!e)
4554 3 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: the order by column number (%d) is not in the number of projections range (%d)", nr, list_length(rel->exps));
4555 9244 : e = exp_ref(sql, e);
4556 : }
4557 38393 : } else if (e && exp_card(e) > rel->card) {
4558 0 : if (exp_name(e) && !has_label(e))
4559 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", exp_name(e));
4560 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
4561 : }
4562 114530 : if (e && !exp_name(e))
4563 23 : exp_label(sql->sa, e, ++sql->label);
4564 47754 : if (e && rel && is_project(rel->op)) {
4565 39466 : sql_exp *found = exps_find_exp(rel->exps, e);
4566 :
4567 39466 : if (!found) {
4568 33 : if (needs_distinct)
4569 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: with DISTINCT ORDER BY expressions must appear in select list");
4570 33 : if (!is_freevar(e))
4571 16 : append(rel->exps, e);
4572 : } else {
4573 : e = found;
4574 : }
4575 39466 : if (!is_freevar(e))
4576 39449 : e = exp_ref(sql, e);
4577 : }
4578 : }
4579 :
4580 114752 : if (rel && !e && sql->session->status != -ERR_AMBIGUOUS) {
4581 : /* reset error */
4582 66993 : sql->session->status = 0;
4583 66993 : sql->errstr[0] = '\0';
4584 :
4585 66993 : e = rel_order_by_column_exp(query, &rel, col, needs_distinct, sql_sel | sql_orderby | (f & sql_group_totals) | (f & sql_window));
4586 : }
4587 66998 : if (!e)
4588 : return NULL;
4589 114709 : if (!exp_subtype(e))
4590 1 : return sql_error(sql, 01, SQLSTATE(42000) "Cannot have a parameter (?) for order by column");
4591 114708 : set_direction(e, direction);
4592 114708 : list_append(exps, e);
4593 : } else {
4594 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: order not of type SQL_COLUMN");
4595 : }
4596 : }
4597 45550 : if (is_sql_orderby(f) && or != rel)
4598 36693 : or->l = rel;
4599 45550 : if (is_sql_window(f))
4600 8857 : *R = rel;
4601 : return exps;
4602 : }
4603 :
4604 : static int
4605 814 : generate_window_bound(tokens sql_token, bool first_half)
4606 : {
4607 814 : switch (sql_token) {
4608 408 : case SQL_PRECEDING:
4609 408 : return first_half ? BOUND_FIRST_HALF_PRECEDING : BOUND_SECOND_HALF_PRECEDING;
4610 284 : case SQL_FOLLOWING:
4611 284 : return first_half ? BOUND_FIRST_HALF_FOLLOWING : BOUND_SECOND_HALF_FOLLOWING;
4612 122 : case SQL_CURRENT_ROW:
4613 122 : return first_half ? CURRENT_ROW_PRECEDING : CURRENT_ROW_FOLLOWING;
4614 : default:
4615 0 : assert(0);
4616 : }
4617 : return 0;
4618 : }
4619 :
4620 : /* window functions */
4621 : static sql_exp*
4622 407 : generate_window_bound_call(mvc *sql, sql_exp **estart, sql_exp **eend, sql_exp *pe, sql_exp *e,
4623 : sql_exp *start, sql_exp *fend, int frame_type, int excl, tokens t1, tokens t2)
4624 : {
4625 407 : list *rargs1 = sa_list(sql->sa), *rargs2 = sa_list(sql->sa), *targs1 = sa_list(sql->sa), *targs2 = sa_list(sql->sa);
4626 407 : sql_subfunc *dc1, *dc2;
4627 407 : sql_subtype *it = sql_bind_localtype("int");
4628 :
4629 407 : if (pe) {
4630 186 : append(targs1, exp_subtype(pe));
4631 186 : append(targs2, exp_subtype(pe));
4632 186 : append(rargs1, exp_copy(sql, pe));
4633 186 : append(rargs2, exp_copy(sql, pe));
4634 : }
4635 407 : append(rargs1, exp_copy(sql, e));
4636 407 : append(rargs2, exp_copy(sql, e));
4637 407 : append(targs1, exp_subtype(e));
4638 407 : append(targs2, exp_subtype(e));
4639 407 : append(targs1, it);
4640 407 : append(targs2, it);
4641 407 : append(targs1, it);
4642 407 : append(targs2, it);
4643 407 : append(targs1, it);
4644 407 : append(targs2, it);
4645 407 : append(targs1, exp_subtype(start));
4646 407 : append(targs2, exp_subtype(fend));
4647 :
4648 407 : dc1 = sql_bind_func_(sql, "sys", "window_bound", targs1, F_ANALYTIC, true, false);
4649 407 : dc2 = sql_bind_func_(sql, "sys", "window_bound", targs2, F_ANALYTIC, true, false);
4650 407 : if (!dc1 || !dc2)
4651 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: function 'window_bound' not found");
4652 407 : append(rargs1, exp_atom_int(sql->sa, frame_type));
4653 407 : append(rargs2, exp_atom_int(sql->sa, frame_type));
4654 407 : append(rargs1, exp_atom_int(sql->sa, generate_window_bound(t1, true)));
4655 407 : append(rargs2, exp_atom_int(sql->sa, generate_window_bound(t2, false)));
4656 407 : append(rargs1, exp_atom_int(sql->sa, excl));
4657 407 : append(rargs2, exp_atom_int(sql->sa, excl));
4658 407 : append(rargs1, start);
4659 407 : append(rargs2, fend);
4660 :
4661 407 : *estart = exp_op(sql->sa, rargs1, dc1);
4662 407 : *eend = exp_op(sql->sa, rargs2, dc2);
4663 407 : return e; /* return something to say there were no errors */
4664 : }
4665 :
4666 : #define EC_NUMERIC(e) (e==EC_NUM||EC_INTERVAL(e)||e==EC_DEC||e==EC_FLT)
4667 :
4668 : static sql_exp*
4669 601 : calculate_window_bound(sql_query *query, sql_rel *p, tokens token, symbol *bound, sql_exp *ie, int frame_type, int f)
4670 : {
4671 601 : mvc *sql = query->sql;
4672 601 : sql_subtype *bt, *bound_tp = sql_bind_localtype("lng"), *iet = exp_subtype(ie);
4673 601 : sql_exp *res = NULL;
4674 :
4675 792 : if ((bound->token == SQL_PRECEDING || bound->token == SQL_FOLLOWING || bound->token == SQL_CURRENT_ROW) && bound->type == type_int) {
4676 191 : atom *a = NULL;
4677 191 : bt = (frame_type == FRAME_ROWS || frame_type == FRAME_GROUPS) ? bound_tp : iet;
4678 :
4679 191 : if ((bound->data.i_val == UNBOUNDED_PRECEDING_BOUND || bound->data.i_val == UNBOUNDED_FOLLOWING_BOUND)) {
4680 69 : a = atom_max_value(sql->sa, EC_NUMERIC(bt->type->eclass) ? bt : bound_tp);
4681 122 : } else if (bound->data.i_val == CURRENT_ROW_BOUND) {
4682 124 : a = atom_zero_value(sql->sa, EC_NUMERIC(bt->type->eclass) ? bt : bound_tp);
4683 : } else {
4684 0 : assert(0);
4685 : }
4686 191 : res = exp_atom(sql->sa, a);
4687 : } else { /* arbitrary expression case */
4688 410 : exp_kind ek = {type_value, card_column, FALSE};
4689 410 : const char *bound_desc = (token == SQL_PRECEDING) ? "PRECEDING" : "FOLLOWING";
4690 :
4691 410 : assert(token == SQL_PRECEDING || token == SQL_FOLLOWING);
4692 410 : if (!(res = rel_value_exp2(query, &p, bound, f, ek)))
4693 3 : return NULL;
4694 410 : if (!(bt = exp_subtype(res))) { /* frame bound is a parameter */
4695 3 : sql_subtype *t = (frame_type == FRAME_ROWS || frame_type == FRAME_GROUPS) ? bound_tp : iet;
4696 3 : if (rel_set_type_param(sql, t, p, res, 0) < 0) /* workaround */
4697 : return NULL;
4698 3 : bt = exp_subtype(res);
4699 : }
4700 410 : if (exp_is_null_no_value_opt(res))
4701 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s offset must not be NULL", bound_desc);
4702 409 : if ((frame_type == FRAME_ROWS || frame_type == FRAME_GROUPS) && bt->type->eclass != EC_NUM && !(res = exp_check_type(sql, bound_tp, p, res, type_equal)))
4703 : return NULL;
4704 409 : if (frame_type == FRAME_RANGE) {
4705 70 : sql_class iet_class = iet->type->eclass;
4706 :
4707 70 : if (!EC_NUMERIC(iet_class) && !EC_TEMP(iet_class))
4708 1 : return sql_error(sql, 02, SQLSTATE(42000) "Ranges with arbitrary expressions are available to numeric, interval and temporal types only");
4709 12 : if (EC_NUMERIC(iet_class) && !(res = exp_check_type(sql, iet, p, res, type_equal)))
4710 : return NULL;
4711 69 : if ((iet_class == EC_TIME || iet_class == EC_TIME_TZ) && bt->type->eclass != EC_SEC) {
4712 1 : (void) sql_error(sql, 02, SQLSTATE(42000) "For %s input the %s boundary must be an interval type up to the day", subtype2string2(sql->ta, iet), bound_desc);
4713 1 : sa_reset(sql->ta);
4714 1 : return NULL;
4715 : }
4716 68 : if (EC_TEMP(iet->type->eclass) && !EC_INTERVAL(bt->type->eclass)) {
4717 0 : (void) sql_error(sql, 02, SQLSTATE(42000) "For %s input the %s boundary must be an interval type", subtype2string2(sql->ta, iet), bound_desc);
4718 0 : sa_reset(sql->ta);
4719 0 : return NULL;
4720 : }
4721 : }
4722 : }
4723 : return res;
4724 : }
4725 :
4726 : static dlist*
4727 16 : get_window_clauses(mvc *sql, char* ident, symbol **partition_by_clause, symbol **order_by_clause, symbol **frame_clause)
4728 : {
4729 16 : dlist *window_specification = NULL;
4730 16 : char *window_ident;
4731 16 : int pos;
4732 :
4733 16 : if (mvc_highwater(sql))
4734 0 : return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
4735 :
4736 16 : if ((window_specification = frame_get_window_def(sql, ident, &pos)) == NULL)
4737 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: window '%s' not found", ident);
4738 :
4739 : /* avoid infinite lookups */
4740 15 : if (frame_check_var_visited(sql, pos))
4741 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: cyclic references to window '%s' found", ident);
4742 14 : frame_set_var_visited(sql, pos);
4743 :
4744 14 : if (window_specification->h->next->data.sym) {
4745 2 : if (*partition_by_clause)
4746 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: redefinition of PARTITION BY clause from window '%s'", ident);
4747 2 : *partition_by_clause = window_specification->h->next->data.sym;
4748 : }
4749 14 : if (window_specification->h->next->next->data.sym) {
4750 4 : if (*order_by_clause)
4751 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: redefinition of ORDER BY clause from window '%s'", ident);
4752 3 : *order_by_clause = window_specification->h->next->next->data.sym;
4753 : }
4754 13 : if (window_specification->h->next->next->next->data.sym) {
4755 0 : if (*frame_clause)
4756 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: redefinition of frame clause from window '%s'", ident);
4757 0 : *frame_clause = window_specification->h->next->next->next->data.sym;
4758 : }
4759 :
4760 13 : window_ident = window_specification->h->data.sval;
4761 13 : if (window_ident && !get_window_clauses(sql, window_ident, partition_by_clause, order_by_clause, frame_clause))
4762 : return NULL; /* the error was already set */
4763 :
4764 : return window_specification; /* return something to say there were no errors */
4765 : }
4766 :
4767 : /*
4768 : * select x, y, rank_op() over (partition by x order by y) as, ...
4769 : aggr_op(z) over (partition by y order by x) as, ...
4770 : * from table [x,y,z,w,v]
4771 : *
4772 : * project and order by over x,y / y,x
4773 : * a = project( table ) [ x, y, z, w, v ], [ x, y]
4774 : * b = project( table ) [ x, y, z, w, v ], [ y, x]
4775 : *
4776 : * project with order dependent operators, ie combined prev/current value
4777 : * aa = project (a) [ x, y, r = rank_op(diff(x) (marks a new partition), rediff(diff(x), y) (marks diff value with in partition)), z, w, v ]
4778 : * project(aa) [ aa.x, aa.y, aa.r ] -- only keep current output list
4779 : * bb = project (b) [ x, y, a = aggr_op(z, diff(y), rediff(diff(y), x)), z, w, v ]
4780 : * project(bb) [ bb.x, bb.y, bb.a ] -- only keep current output list
4781 : */
4782 : static sql_exp *
4783 17947 : rel_rankop(sql_query *query, sql_rel **rel, symbol *se, int f)
4784 : {
4785 17947 : mvc *sql = query->sql;
4786 17947 : node *n;
4787 17947 : dlist *l = se->data.lval, *window_specification = NULL;
4788 17947 : symbol *window_function = l->h->data.sym, *partition_by_clause = NULL, *order_by_clause = NULL, *frame_clause = NULL;
4789 17947 : char *aname = NULL, *sname = NULL, *window_ident = NULL;
4790 17947 : sql_subfunc *wf = NULL;
4791 17947 : sql_exp *in = NULL, *pe = NULL, *oe = NULL, *call = NULL, *start = NULL, *eend = NULL, *fstart = NULL, *fend = NULL, *ie = NULL;
4792 17947 : sql_rel *p;
4793 17947 : list *gbe = NULL, *obe = NULL, *args = NULL, *types = NULL, *fargs = NULL;
4794 17947 : dnode *dn = window_function->data.lval->h, *dargs = NULL;
4795 17947 : int distinct = 0, frame_type, pos, nf = f, nfargs = 0;
4796 17947 : bool is_nth_value, supports_frames, found = false;
4797 :
4798 17947 : frame_clear_visited_flag(sql); /* clear visited flags before iterating */
4799 :
4800 17947 : if (l->h->next->type == type_list) {
4801 17931 : window_specification = l->h->next->data.lval;
4802 16 : } else if (l->h->next->type == type_string) {
4803 16 : const char* window_alias = l->h->next->data.sval;
4804 16 : if ((window_specification = frame_get_window_def(sql, window_alias, &pos)) == NULL)
4805 1 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: window '%s' not found", window_alias);
4806 15 : frame_set_var_visited(sql, pos);
4807 : } else {
4808 0 : assert(0);
4809 : }
4810 :
4811 17946 : window_ident = window_specification->h->data.sval;
4812 17946 : partition_by_clause = window_specification->h->next->data.sym;
4813 17946 : order_by_clause = window_specification->h->next->next->data.sym;
4814 17946 : frame_clause = window_specification->h->next->next->next->data.sym;
4815 :
4816 17946 : if (window_ident && !get_window_clauses(sql, window_ident, &partition_by_clause, &order_by_clause, &frame_clause))
4817 : return NULL;
4818 :
4819 17943 : frame_type = frame_clause ? frame_clause->data.lval->h->next->next->data.i_val : FRAME_RANGE;
4820 17943 : aname = qname_schema_object(dn->data.lval);
4821 17943 : sname = qname_schema(dn->data.lval);
4822 :
4823 17943 : is_nth_value = !strcmp(aname, "nth_value");
4824 17943 : bool is_value = is_nth_value || !strcmp(aname, "first_value") || !strcmp(aname, "last_value");
4825 17943 : supports_frames = window_function->token != SQL_RANK || is_value;
4826 :
4827 17943 : if (is_sql_update_set(f) || is_sql_psm(f) || is_sql_values(f) || is_sql_join(f) || is_sql_where(f) || is_sql_groupby(f) || is_sql_having(f) || is_psm_call(f) || is_sql_from(f)) {
4828 13 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
4829 13 : const char *clause = is_sql_update_set(f)||is_sql_psm(f)?"in SET, WHILE, IF, ELSE, CASE, WHEN, RETURN, ANALYZE clauses (use subquery)":is_sql_values(f)?"on an unique value":
4830 8 : is_sql_join(f)?"in JOIN conditions":is_sql_where(f)?"in WHERE clause":is_sql_groupby(f)?"in GROUP BY clause":
4831 4 : is_psm_call(f)?"in CALL":is_sql_from(f)?"in functions in FROM":"in HAVING clause";
4832 13 : return sql_error(sql, 02, SQLSTATE(42000) "%s: window function '%s' not allowed %s", toUpperCopy(uaname, aname), aname, clause);
4833 17930 : } else if (is_sql_aggr(f)) {
4834 2 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
4835 2 : return sql_error(sql, 02, SQLSTATE(42000) "%s: window functions not allowed inside aggregation functions", toUpperCopy(uaname, aname));
4836 17928 : } else if (is_sql_window(f)) {
4837 6 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
4838 6 : return sql_error(sql, 02, SQLSTATE(42000) "%s: window functions cannot be nested", toUpperCopy(uaname, aname));
4839 : }
4840 17922 : if (window_function->token == SQL_UNOP || window_function->token == SQL_OP) {
4841 3246 : window_function->token = SQL_NOP;
4842 3246 : dn->next->next->data.lval = dlist_append_symbol(sql->sa, dlist_create( sql->sa ), dn->next->next->data.sym); /* make a list */
4843 : }
4844 17922 : if (window_function->token == SQL_BINOP) {
4845 5149 : window_function->token = SQL_NOP;
4846 5149 : dn->next->next->data.lval = dlist_append_symbol(sql->sa, dlist_append_symbol(sql->sa, dlist_create( sql->sa ), dn->next->next->data.sym), dn->next->next->next->data.sym); /* make a list */
4847 5149 : dn->next->next->next = dn->next->next->next->next; /* skip second arg */
4848 : }
4849 17922 : if (window_function->token == SQL_AGGR)
4850 106 : dn->next->next->data.lval = dlist_append_symbol(sql->sa, dlist_create( sql->sa ), dn->next->next->data.sym); /* make a list */
4851 17922 : if (window_function->token == SQL_NOP)
4852 8397 : window_function->token = SQL_AGGR;
4853 17922 : if (window_function->token != SQL_RANK && window_function->token != SQL_AGGR) {
4854 0 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
4855 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: window function '%s' unknown", toUpperCopy(uaname, aname));
4856 : }
4857 :
4858 : /* window operations are only allowed in the projection */
4859 17922 : if (!is_sql_sel(f))
4860 0 : return sql_error(sql, 02, SQLSTATE(42000) "OVER: only possible within the selection");
4861 :
4862 17922 : p = *rel;
4863 : /* Partition By */
4864 17922 : if (partition_by_clause) {
4865 8208 : gbe = rel_partition_groupings(query, &p, partition_by_clause, NULL /* cannot use (selection) column references, as this result is a selection column */, nf | sql_window);
4866 8208 : if (!gbe)
4867 : return NULL;
4868 16431 : for (n = gbe->h ; n ; n = n->next) {
4869 8231 : sql_exp *en = n->data;
4870 :
4871 8231 : set_ascending(en);
4872 8231 : set_nulls_first(en);
4873 : }
4874 : }
4875 :
4876 : /* Order By */
4877 17914 : if (order_by_clause) {
4878 8864 : obe = rel_order_by(query, &p, order_by_clause, 0, sql_window);
4879 8864 : if (!obe)
4880 : return NULL;
4881 : }
4882 :
4883 17907 : fargs = sa_list(sql->sa);
4884 17907 : if (window_function->token == SQL_RANK) { /* rank function call */
4885 9414 : dlist *dl = dn->next->next->data.lval;
4886 9414 : bool is_lag = !strcmp(aname, "lag"), is_lead = !strcmp(aname, "lead"),
4887 9414 : extra_input = !strcmp(aname, "ntile") || !strcmp(aname, "rank") || !strcmp(aname, "dense_rank") || !strcmp(aname, "row_number") || !strcmp(aname, "percent_rank") || !strcmp(aname, "cume_dist");
4888 :
4889 9414 : distinct = dn->next->data.i_val;
4890 9414 : if (extra_input) { /* pass an input column for analytic functions that don't require it */
4891 9230 : sql_subfunc *star = sql_bind_func(sql, "sys", "star", NULL, NULL, F_FUNC, true, true);
4892 9230 : in = exp_op(sql->sa, NULL, star);
4893 9230 : append(fargs, in);
4894 : }
4895 9414 : if (dl)
4896 593 : for (dargs = dl->h ; dargs ; dargs = dargs->next) {
4897 339 : exp_kind ek = {type_value, card_column, FALSE};
4898 339 : sql_subtype *empty = sql_bind_localtype("void"), *bte = sql_bind_localtype("bte");
4899 :
4900 339 : in = rel_value_exp2(query, &p, dargs->data.sym, f | sql_window | sql_farg, ek);
4901 339 : if (!in)
4902 0 : return NULL;
4903 339 : if (!exp_subtype(in)) { /* we also do not expect parameters here */
4904 0 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
4905 0 : return sql_error(sql, 02, SQLSTATE(42000) "%s: parameters not allowed as arguments to window functions", toUpperCopy(uaname, aname));
4906 : }
4907 339 : if (!exp_name(in))
4908 151 : exp_label(sql->sa, in, ++sql->label);
4909 :
4910 : /* corner case, if the argument is null convert it into something countable such as bte */
4911 339 : if (subtype_cmp(exp_subtype(in), empty) == 0)
4912 20 : in = exp_convert(sql, in, empty, bte);
4913 339 : if ((is_lag || is_lead) && nfargs == 2) { /* lag and lead 3rd arg must have same type as 1st arg */
4914 10 : sql_exp *first = (sql_exp*) fargs->h->data;
4915 10 : if (!(in = exp_check_type(sql, exp_subtype(first), p, in, type_equal)))
4916 : return NULL;
4917 : }
4918 329 : if (!in)
4919 : return NULL;
4920 :
4921 339 : append(fargs, in);
4922 339 : in = exp_ref_save(sql, in);
4923 339 : nfargs++;
4924 : }
4925 : } else { /* aggregation function call */
4926 8493 : distinct = dn->next->data.i_val;
4927 22022 : for (dargs = dn->next->next->data.lval->h ; dargs && dargs->data.sym ; dargs = dargs->next) {
4928 13537 : exp_kind ek = {type_value, card_column, FALSE};
4929 13537 : sql_subtype *empty = sql_bind_localtype("void"), *bte = sql_bind_localtype("bte");
4930 :
4931 13537 : in = rel_value_exp2(query, &p, dargs->data.sym, f | sql_window | sql_farg, ek);
4932 13537 : if (!in)
4933 8 : return NULL;
4934 13530 : if (!exp_subtype(in)) { /* we also do not expect parameters here */
4935 1 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
4936 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: parameters not allowed as arguments to window functions", toUpperCopy(uaname, aname));
4937 : }
4938 13529 : if (!exp_name(in))
4939 10112 : exp_label(sql->sa, in, ++sql->label);
4940 :
4941 : /* corner case, if the argument is null convert it into something countable such as bte */
4942 13529 : if (subtype_cmp(exp_subtype(in), empty) == 0)
4943 46 : in = exp_convert(sql, in, empty, bte);
4944 13529 : if (!in)
4945 : return NULL;
4946 :
4947 13529 : append(fargs, in);
4948 13529 : in = exp_ref_save(sql, in);
4949 13529 : nfargs++;
4950 :
4951 13529 : if (!strcmp(aname, "count"))
4952 86 : append(fargs, exp_atom_bool(sql->sa, 1)); /* ignore nills */
4953 : }
4954 :
4955 8485 : if (!nfargs) { /* count(*) */
4956 109 : if (window_function->token == SQL_AGGR && strcmp(aname, "count") != 0) {
4957 2 : char *uaname = SA_NEW_ARRAY(sql->ta, char, strlen(aname) + 1);
4958 2 : return sql_error(sql, 02, SQLSTATE(42000) "%s: unable to perform '%s(*)'", toUpperCopy(uaname, aname), aname);
4959 : }
4960 107 : sql_subfunc *star = sql_bind_func(sql, "sys", "star", NULL, NULL, F_FUNC, true, true);
4961 107 : in = exp_op(sql->sa, NULL, star);
4962 107 : append(fargs, in);
4963 107 : append(fargs, exp_atom_bool(sql->sa, 0)); /* don't ignore nills */
4964 : }
4965 : }
4966 :
4967 17897 : if (distinct)
4968 4 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: DISTINCT clause is not implemented for window functions");
4969 :
4970 : /* diff for partitions */
4971 17893 : if (gbe) {
4972 8191 : sql_subtype *bt = sql_bind_localtype("bit");
4973 :
4974 16412 : for( n = gbe->h; n; n = n->next) {
4975 8222 : sql_subfunc *df;
4976 8222 : sql_exp *e = n->data;
4977 :
4978 8222 : if (!exp_subtype(e))
4979 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: parameters not allowed at PARTITION BY clause from window functions");
4980 :
4981 8221 : e = exp_copy(sql, e);
4982 8221 : args = sa_list(sql->sa);
4983 8221 : if (pe) {
4984 31 : df = sql_bind_func(sql, "sys", "diff", bt, exp_subtype(e), F_ANALYTIC, true, true);
4985 31 : append(args, pe);
4986 : } else {
4987 8190 : df = sql_bind_func(sql, "sys", "diff", exp_subtype(e), NULL, F_ANALYTIC, true, true);
4988 : }
4989 8221 : if (!df)
4990 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: function 'diff' not found");
4991 8221 : append(args, e);
4992 8221 : pe = exp_op(sql->sa, args, df);
4993 : }
4994 : } else {
4995 9702 : pe = exp_atom_bool(sql->sa, 0);
4996 : }
4997 :
4998 : /* diff for orderby */
4999 17892 : if (obe) {
5000 8855 : sql_subtype *bt = sql_bind_localtype("bit");
5001 :
5002 17756 : for( n = obe->h; n; n = n->next) {
5003 8901 : sql_subfunc *df;
5004 8901 : sql_exp *e = n->data;
5005 :
5006 8901 : if (!exp_subtype(e))
5007 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: parameters not allowed at ORDER BY clause from window functions");
5008 :
5009 8901 : e = exp_copy(sql, e);
5010 8901 : args = sa_list(sql->sa);
5011 8901 : if (oe) {
5012 46 : df = sql_bind_func(sql, "sys", "diff", bt, exp_subtype(e), F_ANALYTIC, true, true);
5013 46 : append(args, oe);
5014 : } else {
5015 8855 : df = sql_bind_func(sql, "sys", "diff", exp_subtype(e), NULL, F_ANALYTIC, true, true);
5016 : }
5017 8901 : if (!df)
5018 0 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: function 'diff' not found");
5019 8901 : append(args, e);
5020 8901 : oe = exp_op(sql->sa, args, df);
5021 : }
5022 : } else {
5023 9037 : oe = exp_atom_bool(sql->sa, 0);
5024 : }
5025 :
5026 17892 : if (frame_clause || supports_frames) {
5027 8596 : if (frame_type == FRAME_RANGE)
5028 8285 : ie = obe ? (sql_exp*) obe->t->data : in;
5029 : else
5030 311 : ie = obe ? oe : in;
5031 : }
5032 17892 : assert(oe && pe);
5033 :
5034 17892 : types = exp_types(sql->sa, fargs);
5035 17892 : wf = bind_func_(sql, sname, aname, types, F_ANALYTIC, false, &found, false);
5036 17892 : if (wf && !list_empty(fargs) && !(fargs = check_arguments_and_find_largest_any_type(sql, NULL, fargs, wf, 0, false)))
5037 : wf = NULL;
5038 17887 : if (!wf) {
5039 5 : char *arg_list = nfargs ? nary_function_arg_types_2str(sql, types, nfargs) : NULL;
5040 10 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: %s window function %s%s%s'%s'(%s)",
5041 5 : found ? "insufficient privileges for" : "no such", sname ? "'":"", sname ? sname : "", sname ? "'.":"", aname, arg_list ? arg_list : "");
5042 : }
5043 :
5044 : /* Frame */
5045 17887 : if (frame_clause) {
5046 410 : dnode *d = frame_clause->data.lval->h;
5047 410 : symbol *wstart = d->data.sym, *wend = d->next->data.sym, *rstart = wstart->data.lval->h->data.sym,
5048 410 : *rend = wend->data.lval->h->data.sym;
5049 410 : int excl = d->next->next->next->data.i_val;
5050 410 : bool shortcut = false;
5051 :
5052 410 : if (!supports_frames)
5053 4 : return sql_error(sql, 02, SQLSTATE(42000) "OVER: frame extend only possible with aggregation and first_value, last_value and nth_value functions");
5054 406 : if (excl != EXCLUDE_NONE)
5055 0 : return sql_error(sql, 02, SQLSTATE(42000) "Only EXCLUDE NO OTHERS exclusion is currently implemented");
5056 406 : if (list_empty(obe) && frame_type == FRAME_GROUPS)
5057 2 : return sql_error(sql, 02, SQLSTATE(42000) "GROUPS frame requires an order by expression");
5058 404 : if (wstart->token == SQL_FOLLOWING && wend->token == SQL_PRECEDING)
5059 1 : return sql_error(sql, 02, SQLSTATE(42000) "FOLLOWING offset must come after PRECEDING offset");
5060 403 : if (wstart->token == SQL_CURRENT_ROW && wend->token == SQL_PRECEDING)
5061 1 : return sql_error(sql, 02, SQLSTATE(42000) "CURRENT ROW offset must come after PRECEDING offset");
5062 402 : if (wstart->token == SQL_FOLLOWING && wend->token == SQL_CURRENT_ROW)
5063 1 : return sql_error(sql, 02, SQLSTATE(42000) "FOLLOWING offset must come after CURRENT ROW offset");
5064 401 : if (wstart->token != SQL_CURRENT_ROW && wend->token != SQL_CURRENT_ROW && wstart->token == wend->token && frame_type != FRAME_ROWS)
5065 4 : return sql_error(sql, 02, SQLSTATE(42000) "Non-centered windows are only supported in row frames");
5066 367 : if (frame_type == FRAME_RANGE) {
5067 97 : if (((wstart->token == SQL_PRECEDING || wstart->token == SQL_FOLLOWING) && rstart->token != SQL_PRECEDING && rstart->token != SQL_CURRENT_ROW && rstart->token != SQL_FOLLOWING) ||
5068 59 : ((wend->token == SQL_PRECEDING || wend->token == SQL_FOLLOWING) && rend->token != SQL_PRECEDING && rend->token != SQL_CURRENT_ROW && rend->token != SQL_FOLLOWING)) {
5069 40 : if (list_empty(obe))
5070 2 : return sql_error(sql, 02, SQLSTATE(42000) "RANGE frame with PRECEDING/FOLLOWING offset requires an order by expression");
5071 38 : if (list_length(obe) > 1)
5072 0 : return sql_error(sql, 02, SQLSTATE(42000) "RANGE with offset PRECEDING/FOLLOWING requires exactly one ORDER BY column");
5073 : }
5074 : }
5075 :
5076 395 : if (list_empty(obe) && frame_type == FRAME_RANGE) { /* window functions are weird */
5077 : frame_type = FRAME_ALL;
5078 : shortcut = true;
5079 383 : } else if (!is_value && (rstart->token == SQL_PRECEDING || rstart->token == SQL_CURRENT_ROW || rstart->token == SQL_FOLLOWING) && rstart->type == type_int &&
5080 150 : (rend->token == SQL_PRECEDING || rend->token == SQL_CURRENT_ROW || rend->token == SQL_FOLLOWING) && rend->type == type_int) {
5081 : /* special cases, don't calculate bounds */
5082 146 : if (frame_type != FRAME_ROWS && rstart->data.i_val == UNBOUNDED_PRECEDING_BOUND && rend->data.i_val == CURRENT_ROW_BOUND) {
5083 : frame_type = FRAME_UNBOUNDED_TILL_CURRENT_ROW;
5084 : shortcut = true;
5085 21 : } else if (frame_type != FRAME_ROWS && rstart->data.i_val == CURRENT_ROW_BOUND && rend->data.i_val == UNBOUNDED_FOLLOWING_BOUND) {
5086 : frame_type = FRAME_CURRENT_ROW_TILL_UNBOUNDED;
5087 : shortcut = true;
5088 86 : } else if (rstart->data.i_val == UNBOUNDED_PRECEDING_BOUND && rend->data.i_val == UNBOUNDED_FOLLOWING_BOUND) {
5089 : frame_type = FRAME_ALL;
5090 : shortcut = true;
5091 76 : } else if (rstart->data.i_val == CURRENT_ROW_BOUND && rend->data.i_val == CURRENT_ROW_BOUND) {
5092 395 : frame_type = FRAME_CURRENT_ROW;
5093 395 : shortcut = true;
5094 : }
5095 : }
5096 395 : if (!shortcut) {
5097 302 : if (!(fstart = calculate_window_bound(query, p, wstart->token, rstart, ie, frame_type, f | sql_window)))
5098 : return NULL;
5099 299 : if (!(fend = calculate_window_bound(query, p, wend->token, rend, ie, frame_type, f | sql_window)))
5100 : return NULL;
5101 471 : if (!generate_window_bound_call(sql, &start, &eend, gbe ? pe : NULL, ie, fstart, fend, frame_type, excl,
5102 : wstart->token, wend->token))
5103 : return NULL;
5104 : }
5105 17477 : } else if (supports_frames) { /* for analytic functions with no frame clause, we use the standard default values */
5106 8183 : if (is_value) {
5107 108 : sql_subtype *bound_tp = sql_bind_localtype("lng"), *bt = (frame_type == FRAME_ROWS || frame_type == FRAME_GROUPS) ? bound_tp : exp_subtype(ie);
5108 108 : unsigned char sclass = bt->type->eclass;
5109 :
5110 135 : fstart = exp_atom(sql->sa, atom_max_value(sql->sa, EC_NUMERIC(sclass) ? bt : bound_tp));
5111 108 : fend = order_by_clause ? exp_atom(sql->sa, atom_zero_value(sql->sa, EC_NUMERIC(sclass) ? bt : bound_tp)) :
5112 33 : exp_atom(sql->sa, atom_max_value(sql->sa, EC_NUMERIC(sclass) ? bt : bound_tp));
5113 :
5114 157 : if (generate_window_bound_call(sql, &start, &eend, gbe ? pe : NULL, ie, fstart, fend, frame_type, EXCLUDE_NONE, SQL_PRECEDING, SQL_FOLLOWING) == NULL)
5115 : return NULL;
5116 : } else {
5117 8075 : frame_type = list_empty(obe) ? FRAME_ALL : FRAME_UNBOUNDED_TILL_CURRENT_ROW;
5118 : }
5119 : }
5120 :
5121 17869 : args = sa_list(sql->sa);
5122 41217 : for (node *n = fargs->h ; n ; n = n->next)
5123 23348 : list_append(args, n->data);
5124 17869 : list_append(args, pe);
5125 17869 : list_append(args, oe);
5126 17869 : if (supports_frames) {
5127 8575 : list_append(args, exp_atom_int(sql->sa, frame_type));
5128 8575 : list_append(args, start ? start : exp_atom_oid(sql->sa, 1));
5129 8575 : list_append(args, eend ? eend : exp_atom_oid(sql->sa, 1));
5130 : }
5131 17869 : call = exp_rank_op(sql->sa, list_empty(args) ? NULL : args, gbe, obe, wf);
5132 17869 : *rel = p;
5133 17869 : return call;
5134 : }
5135 :
5136 : sql_exp *
5137 5858672 : rel_value_exp2(sql_query *query, sql_rel **rel, symbol *se, int f, exp_kind ek)
5138 : {
5139 5858672 : mvc *sql = query->sql;
5140 5858672 : if (!se)
5141 : return NULL;
5142 :
5143 5858672 : if (mvc_highwater(sql))
5144 0 : return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
5145 :
5146 5858673 : if (rel && *rel && (*rel)->card == CARD_AGGR) { /* group by expression case, handle it before */
5147 105569 : sql_exp *exp = NULL;
5148 105569 : if (!is_sql_aggr(f) && !is_sql_window(f))
5149 105111 : exp = frame_get_groupby_expression(sql, se);
5150 105569 : if (sql->errstr[0] != '\0')
5151 : return NULL;
5152 105569 : if (exp) {
5153 78 : sql_exp *res = exp_ref(sql, exp);
5154 78 : res->card = (*rel)->card;
5155 78 : if (se->token == SQL_AGGR) {
5156 0 : dlist *l = se->data.lval;
5157 0 : int distinct = l->h->next->data.i_val;
5158 0 : if (distinct)
5159 0 : set_distinct(res);
5160 : }
5161 78 : if (!query_has_outer(query) && is_groupby((*rel)->op))
5162 74 : res = rel_groupby_add_aggr(sql, *rel, res);
5163 78 : return res;
5164 : }
5165 : }
5166 :
5167 5858595 : switch (se->token) {
5168 1828 : case SQL_OP:
5169 1828 : return rel_op(query, rel, se, f, ek);
5170 77755 : case SQL_UNOP:
5171 77755 : return rel_unop(query, rel, se, f, ek);
5172 374248 : case SQL_BINOP:
5173 374248 : return rel_binop(query, rel, se, f, ek);
5174 85218 : case SQL_NOP:
5175 85218 : return rel_nop(query, rel, se, f, ek);
5176 18727 : case SQL_AGGR:
5177 18727 : return rel_aggr(query, rel, se, f);
5178 17947 : case SQL_WINDOW:
5179 17947 : return rel_rankop(query, rel, se, f);
5180 2326333 : case SQL_IDENT:
5181 : case SQL_COLUMN:
5182 2326333 : return rel_column_ref(query, rel, se, f );
5183 3007 : case SQL_NAME: {
5184 3007 : dlist *l = se->data.lval;
5185 3007 : const char *sname = qname_schema(l);
5186 3007 : const char *vname = qname_schema_object(l);
5187 3007 : return rel_exp_variable_on_scope(sql, sname, vname);
5188 : }
5189 48164 : case SQL_VALUES:
5190 : case SQL_WITH:
5191 : case SQL_SELECT: {
5192 48164 : sql_rel *r = NULL;
5193 :
5194 48164 : if (is_psm_call(f) || is_sql_merge(f))
5195 8 : return sql_error(sql, 02, SQLSTATE(42000) "%s: subqueries not supported inside %s", is_psm_call(f) ? "CALL" : "MERGE", is_psm_call(f) ? "CALL statements" : "MERGE conditions");
5196 48160 : if (rel && *rel)
5197 34135 : query_push_outer(query, *rel, f);
5198 48160 : if (se->token == SQL_WITH) {
5199 30 : r = rel_with_query(query, se);
5200 48130 : } else if (se->token == SQL_VALUES) {
5201 217 : r = rel_values(query, se, NULL);
5202 : } else {
5203 47913 : assert(se->token == SQL_SELECT);
5204 47913 : exp_kind nek = ek;
5205 47913 : nek.aggr = is_sql_aggr(f);
5206 47913 : if (is_sql_no_subquery(f))
5207 3 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: subquery not allowed");
5208 :
5209 47910 : r = rel_subquery(query, se, nek);
5210 47910 : if (r)
5211 47810 : exps_label(sql, r->exps);
5212 : }
5213 48157 : if (rel && *rel) {
5214 34132 : *rel = query_pop_outer(query);
5215 34132 : if (is_sql_join(f) && is_groupby((*rel)->op)) {
5216 0 : return sql_error(sql, 05, SQLSTATE(42000) "SELECT: aggregate functions not allowed in JOIN conditions");
5217 34132 : } else if (is_sql_where(f) && is_groupby((*rel)->op)) {
5218 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: aggregate functions not allowed in WHERE clause");
5219 34132 : } else if ((is_sql_update_set(f) || is_sql_psm(f)) && is_groupby((*rel)->op)) {
5220 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: aggregate functions not allowed in SET, WHILE, IF, ELSE, CASE, WHEN, RETURN, ANALYZE clauses");
5221 : }
5222 : }
5223 48157 : if (!r)
5224 : return NULL;
5225 48054 : if (ek.type == type_value && ek.card <= card_set && is_project(r->op) && list_length(r->exps) > 1)
5226 16 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: subquery must return only one column");
5227 48038 : if (ek.type == type_relation && is_project(r->op) && list_length(r->exps) != ek.type)
5228 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: subquery has too %s columns", list_length(r->exps) < ek.type ? "few" : "many");
5229 48038 : if (ek.type == type_value && list_length(r->exps) == 1 && !is_sql_psm(f)) /* for now don't rename multi attribute results */
5230 35873 : r = rel_zero_or_one(sql, r, ek);
5231 48038 : return exp_rel(sql, r);
5232 : }
5233 215 : case SQL_TABLE: {
5234 : /* turn a subquery into a tabular result */
5235 215 : *rel = rel_selects(query, se->data.sym);
5236 215 : if (*rel)
5237 213 : return lastexp(*rel);
5238 : return NULL;
5239 : }
5240 1612 : case SQL_PARAMETER: {
5241 1612 : assert(se->type == type_int);
5242 1612 : sql_arg *a = sql_bind_paramnr(sql, se->data.i_val);
5243 1612 : if (sql->emode != m_prepare) {
5244 1 : if (a && a->name && a->name[0])
5245 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: named placeholder ('%s') but named values list is missing", a->name);
5246 : else
5247 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: parameters ('?') not allowed in normal queries, use PREPARE");
5248 : }
5249 1611 : return exp_atom_ref(sql->sa, se->data.i_val, a?&a->type:NULL);
5250 : }
5251 106041 : case SQL_NULL:
5252 106041 : return exp_null(sql->sa, sql_bind_localtype("void"));
5253 1584 : case SQL_NEXT:
5254 1584 : return rel_next_value_for(sql, se);
5255 170113 : case SQL_CAST:
5256 170113 : return rel_cast(query, rel, se, f);
5257 104663 : case SQL_CASE:
5258 : case SQL_COALESCE:
5259 : case SQL_NULLIF:
5260 104663 : return rel_case_exp(query, rel, se, f);
5261 1 : case SQL_RANK:
5262 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: window function %s requires an OVER clause", qname_schema_object(se->data.lval->h->data.lval));
5263 25 : case SQL_XMLELEMENT:
5264 : case SQL_XMLFOREST:
5265 : case SQL_XMLCOMMENT:
5266 : case SQL_XMLATTRIBUTE:
5267 : case SQL_XMLCONCAT:
5268 : case SQL_XMLDOCUMENT:
5269 : case SQL_XMLPI:
5270 : case SQL_XMLTEXT:
5271 25 : return rel_xml(query, rel, se, f, ek);
5272 2521114 : default:
5273 2521114 : return rel_logical_value_exp(query, rel, se, f, ek);
5274 : }
5275 : }
5276 :
5277 : static int exps_has_rank(list *exps);
5278 :
5279 : static int
5280 : exp_has_rank(sql_exp *e)
5281 : {
5282 : switch(e->type) {
5283 : case e_convert:
5284 : return exp_has_rank(e->l);
5285 : case e_func:
5286 : if (e->r)
5287 : return 1;
5288 : /* fall through */
5289 : case e_aggr:
5290 : return exps_has_rank(e->l);
5291 : case e_cmp:
5292 : if (e->flag == cmp_or || e->flag == cmp_filter)
5293 : return exps_has_rank(e->l) || exps_has_rank(e->r);
5294 : if (e->flag == cmp_in || e->flag == cmp_notin)
5295 : return exp_has_rank(e->l) || exps_has_rank(e->r);
5296 : return exp_has_rank(e->l) || exp_has_rank(e->r) || (e->f && exp_has_rank(e->f));
5297 : default:
5298 : return 0;
5299 : }
5300 : }
5301 :
5302 : /* TODO create exps_has (list, fptr ) */
5303 : static int
5304 : exps_has_rank(list *exps)
5305 : {
5306 : if (!exps || list_empty(exps))
5307 : return 0;
5308 : for(node *n = exps->h; n; n=n->next){
5309 : sql_exp *e = n->data;
5310 :
5311 : if (exp_has_rank(e))
5312 : return 1;
5313 : }
5314 : return 0;
5315 : }
5316 :
5317 : sql_exp *
5318 4440891 : rel_value_exp(sql_query *query, sql_rel **rel, symbol *se, int f, exp_kind ek)
5319 : {
5320 4440891 : if (!se)
5321 : return NULL;
5322 :
5323 4440891 : if (mvc_highwater(query->sql))
5324 1 : return sql_error(query->sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
5325 :
5326 4440888 : sql_exp *e = rel_value_exp2(query, rel, se, f, ek);
5327 4440883 : if (e && (se->token == SQL_SELECT || se->token == SQL_TABLE) && !exp_is_rel(e)) {
5328 0 : assert(*rel);
5329 0 : return rel_lastexp(query->sql, *rel);
5330 : }
5331 : return e;
5332 : }
5333 :
5334 : static sql_exp *
5335 1314050 : column_exp(sql_query *query, sql_rel **rel, symbol *column_e, int f)
5336 : {
5337 1314050 : dlist *l = column_e->data.lval;
5338 1314050 : exp_kind ek = {type_value, card_column, FALSE};
5339 1314050 : sql_exp *ve;
5340 :
5341 1314050 : if (f == sql_sel && rel && *rel && (*rel)->card < CARD_AGGR)
5342 82418 : ek.card = card_value;
5343 1314050 : ve = rel_value_exp(query, rel, l->h->data.sym, f, ek);
5344 1314045 : if (!ve)
5345 : return NULL;
5346 : /* AS name */
5347 1312924 : if (ve && l->h->next->data.sval)
5348 494756 : exp_setname(query->sql, ve, NULL, l->h->next->data.sval);
5349 : return ve;
5350 : }
5351 :
5352 : static int
5353 823002 : exp_is_not_intern(sql_exp *e)
5354 : {
5355 823002 : return is_intern(e)?-1:0;
5356 : }
5357 :
5358 : static void
5359 124283 : rel_remove_internal_exp(sql_rel *rel)
5360 : {
5361 124283 : if (rel->exps) {
5362 124283 : list *n_exps = list_select(rel->exps, rel, (fcmp)&exp_is_not_intern, (fdup)NULL);
5363 :
5364 124283 : rel->exps = n_exps;
5365 : }
5366 124283 : }
5367 :
5368 : static inline int
5369 16 : exp_key(sql_exp *e)
5370 : {
5371 16 : if (e->alias.name)
5372 16 : return hash_key(e->alias.name);
5373 : return 0;
5374 : }
5375 :
5376 : static list *
5377 5 : group_merge_exps(mvc *sql, list *gexps, list *exps)
5378 : {
5379 5 : int nexps = list_length(gexps) + list_length(exps);
5380 :
5381 5 : sql_hash *ht = hash_new(sql->ta, nexps, (fkeyvalue)&exp_key);
5382 :
5383 9 : for (node *n = gexps->h; n ; n = n->next) { /* first add grouping expressions */
5384 4 : sql_exp *e = n->data;
5385 4 : int key = ht->key(e);
5386 :
5387 4 : hash_add(ht, key, e);
5388 : }
5389 :
5390 17 : for (node *n = exps->h; n ; n = n->next) { /* then test if the new grouping expressions are already there */
5391 12 : sql_exp *e = n->data;
5392 12 : int key = ht->key(e);
5393 12 : sql_hash_e *he = ht->buckets[key&(ht->size-1)];
5394 12 : bool duplicates = false;
5395 :
5396 16 : for (; he && !duplicates; he = he->chain) {
5397 4 : sql_exp *f = he->value;
5398 :
5399 4 : if (!exp_equal(e, f))
5400 4 : duplicates = true;
5401 : }
5402 12 : hash_add(ht, key, e);
5403 12 : if (!duplicates) {
5404 8 : list_append(gexps, e);
5405 8 : n->data = exp_ref(sql, e);
5406 : }
5407 : }
5408 5 : return gexps;
5409 : }
5410 :
5411 : static list *
5412 58161 : rel_table_exp(sql_query *query, sql_rel **rel, symbol *column_e, bool single_exp )
5413 : {
5414 58161 : mvc *sql = query->sql;
5415 58161 : if (column_e->token == SQL_TABLE && column_e->data.lval->h->type == type_symbol) {
5416 0 : sql_rel *r;
5417 :
5418 0 : if (!is_project((*rel)->op))
5419 : return NULL;
5420 0 : r = rel_named_table_function(query, (*rel)->l, column_e, 0, NULL);
5421 0 : if (!r)
5422 : return NULL;
5423 0 : *rel = r;
5424 0 : return sa_list(sql->sa);
5425 58161 : } else if (column_e->token == SQL_TABLE) {
5426 57051 : char *tname = column_e->data.lval->h->data.sval;
5427 57051 : list *exps = NULL;
5428 57051 : sql_rel *project = *rel, *groupby = NULL;
5429 :
5430 : /* if there's a group by relation in the tree, skip it for the '*' case and use the underlying projection */
5431 57051 : if (project) {
5432 66462 : while (is_groupby(project->op) || is_select(project->op)) {
5433 9411 : if (is_groupby(project->op))
5434 5 : groupby = project;
5435 9411 : if (project->l)
5436 9411 : project = project->l;
5437 : }
5438 : assert(project);
5439 : }
5440 :
5441 57051 : if (project->op == op_project && project->l && project == *rel && !tname && !rel_is_ref(project) && !need_distinct(project) && single_exp) {
5442 410 : sql_rel *l = project->l;
5443 410 : if (!l || !is_project(l->op) || list_length(project->exps) == list_length(l->exps)) {
5444 403 : rel_remove_internal_exp(*rel);
5445 403 : exps = project->exps;
5446 403 : *rel = project->l;
5447 : }
5448 : }
5449 57051 : if ((exps || (exps = rel_table_projections(sql, project, tname, 0)) != NULL) && !list_empty(exps)) {
5450 57047 : if (!(exps = check_distinct_exp_names(sql, exps)))
5451 0 : return sql_error(sql, 02, SQLSTATE(42000) "Duplicate column names in table%s%s%s projection list", tname ? " '" : "", tname ? tname : "", tname ? "'" : "");
5452 57047 : if (groupby) {
5453 5 : groupby->exps = group_merge_exps(sql, groupby->exps, exps);
5454 9 : for (node *n = groupby->exps->h ; n ; n = n->next) {
5455 8 : sql_exp *e = n->data;
5456 :
5457 8 : if (e->card > groupby->card) {
5458 4 : if (exp_name(e) && !has_label(e))
5459 4 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", exp_name(e));
5460 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
5461 : }
5462 : }
5463 : }
5464 57043 : return exps;
5465 : }
5466 4 : if (!tname)
5467 2 : return sql_error(sql, 02, SQLSTATE(42000) "Table expression without table name");
5468 2 : return sql_error(sql, 02, SQLSTATE(42000) "Column expression Table '%s' unknown", tname);
5469 : }
5470 : return NULL;
5471 : }
5472 :
5473 : sql_exp *
5474 1371100 : rel_column_exp(sql_query *query, sql_rel **rel, symbol *column_e, int f)
5475 : {
5476 1371100 : if (column_e->token == SQL_COLUMN || column_e->token == SQL_IDENT)
5477 1314049 : return column_exp(query, rel, column_e, f);
5478 : return NULL;
5479 : }
5480 :
5481 : static sql_rel*
5482 370029 : rel_where_groupby_nodes(sql_query *query, sql_rel *rel, SelectNode *sn, int *group_totals)
5483 : {
5484 370029 : mvc *sql = query->sql;
5485 :
5486 370029 : if (sn->where) {
5487 143996 : rel = rel_logical_exp(query, rel, sn->where, sql_where);
5488 143996 : if (!rel) {
5489 73 : if (sql->errstr[0] == 0)
5490 0 : return sql_error(sql, 02, SQLSTATE(42000) "Subquery result missing");
5491 : return NULL;
5492 : }
5493 : }
5494 369956 : query_processed(query);
5495 :
5496 369958 : if (rel && sn->groupby) {
5497 9770 : list *gbe = NULL, *sets = NULL;
5498 9770 : int all = 0;
5499 9770 : if (sn->groupby->data.lval == NULL) { /* ALL */
5500 : all = 1;
5501 : } else {
5502 33104 : for (dnode *o = sn->groupby->data.lval->h; o ; o = o->next) {
5503 23461 : symbol *grouping = o->data.sym;
5504 23461 : if (grouping->token == SQL_ROLLUP || grouping->token == SQL_CUBE || grouping->token == SQL_GROUPING_SETS) {
5505 119 : *group_totals |= sql_group_totals;
5506 119 : break;
5507 : }
5508 : }
5509 9762 : gbe = rel_groupings(query, &rel, sn->groupby, sn->selection, sql_sel | sql_groupby | *group_totals, false, &sets);
5510 9762 : if (!gbe)
5511 19 : return NULL;
5512 : }
5513 9751 : rel = rel_groupby(sql, rel, gbe);
5514 9751 : if (rel && all)
5515 8 : rel->flag = 2;
5516 9751 : if (sets && list_length(sets) > 1) { /* if there is only one combination, there is no reason to generate unions */
5517 114 : prop *p = prop_create(sql->sa, PROP_GROUPINGS, rel->p);
5518 114 : p->value.pval = sets;
5519 114 : rel->p = p;
5520 : }
5521 : }
5522 :
5523 369939 : if (rel && sn->having) {
5524 : /* having implies group by, ie if not supplied do a group by */
5525 1764 : if (rel->op != op_groupby)
5526 128 : rel = rel_groupby(sql, rel, NULL);
5527 : }
5528 369939 : query_processed(query);
5529 369938 : return rel;
5530 : }
5531 :
5532 : static sql_rel*
5533 368814 : rel_having_limits_nodes(sql_query *query, sql_rel *rel, SelectNode *sn, exp_kind ek, int group_totals)
5534 : {
5535 368814 : mvc *sql = query->sql;
5536 368814 : sql_rel *inner = NULL;
5537 368814 : int single_value = 1;
5538 :
5539 368814 : if (is_project(rel->op) && rel->l) {
5540 368814 : inner = rel->l;
5541 368814 : single_value = 0;
5542 : }
5543 :
5544 368814 : if (sn->having) {
5545 1752 : if (inner && is_groupby(inner->op))
5546 1752 : set_processed(inner);
5547 1752 : if (!(inner = rel_logical_exp(query, inner, sn->having, sql_having | group_totals)))
5548 : return NULL;
5549 1713 : if (inner->exps && exps_card(inner->exps) > CARD_AGGR)
5550 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: cannot compare sets with values, probably an aggregate function missing");
5551 1713 : if (!single_value)
5552 1713 : rel->l = inner;
5553 : }
5554 :
5555 368775 : if (rel && sn->distinct)
5556 1027 : rel = rel_distinct(rel);
5557 :
5558 368775 : if (rel && sn->orderby) {
5559 36735 : list *obe = NULL;
5560 36735 : sql_rel *sel = NULL, *l = rel->l;
5561 :
5562 : /* project( select ) */
5563 36735 : if (sn->having && is_select(l->op)) {
5564 52 : sel = l;
5565 52 : rel->l = l->l;
5566 : }
5567 36735 : rel = rel_orderby(sql, rel);
5568 36735 : set_processed(rel);
5569 36735 : obe = rel_order_by(query, &rel, sn->orderby, sn->distinct, sql_orderby | group_totals);
5570 36735 : if (!obe)
5571 : return NULL;
5572 36695 : rel->r = obe;
5573 36695 : if (sel) {
5574 51 : sql_rel *o = rel, *p = o->l;
5575 51 : p->l = sel;
5576 : }
5577 : }
5578 368735 : if (!rel)
5579 : return NULL;
5580 :
5581 368735 : if (sn->limit || sn->offset) {
5582 16570 : sql_subtype *lng = sql_bind_localtype("lng");
5583 16570 : list *exps = new_exp_list(sql->sa);
5584 :
5585 16570 : if (sn->limit) {
5586 16540 : sql_exp *l = rel_value_exp(query, NULL, sn->limit, 0, ek);
5587 :
5588 16540 : if (!l || !(l=exp_check_type(sql, lng, NULL, l, type_equal)))
5589 0 : return NULL;
5590 16540 : if ((ek.card != card_relation && sn->limit) &&
5591 : (ek.card == card_value && sn->limit)) {
5592 11 : sql_subfunc *zero_or_one = sql_bind_func(sql, "sys", "zero_or_one", exp_subtype(l), NULL, F_AGGR, true, true);
5593 11 : l = exp_aggr1(sql->sa, l, zero_or_one, 0, 0, CARD_ATOM, has_nil(l));
5594 : }
5595 16540 : list_append(exps, l);
5596 : } else
5597 30 : list_append(exps, exp_atom(sql->sa, atom_general(sql->sa, lng, NULL, 0)));
5598 16570 : if (sn->offset) {
5599 97 : sql_exp *o = rel_value_exp( query, NULL, sn->offset, 0, ek);
5600 97 : if (!o || !(o=exp_check_type(sql, lng, NULL, o, type_equal)))
5601 0 : return NULL;
5602 97 : list_append(exps, o);
5603 : }
5604 16570 : rel = rel_topn(sql->sa, rel, exps);
5605 : }
5606 :
5607 368735 : if (sn->sample || sn->seed) {
5608 22 : list *exps = new_exp_list(sql->sa);
5609 :
5610 24 : if (sn->sample) {
5611 23 : sql_exp *s = rel_value_exp(query, NULL, sn->sample, 0, ek);
5612 23 : if (!s)
5613 : return NULL;
5614 23 : if (!exp_subtype(s) && rel_set_type_param(sql, sql_bind_localtype("lng"), NULL, s, 0) < 0)
5615 : return NULL;
5616 23 : list_append(exps, s);
5617 : } else {
5618 1 : assert(sn->seed);
5619 1 : return sql_error(sql, 02, SQLSTATE(42000) "SEED: cannot have SEED without SAMPLE");
5620 : }
5621 23 : if (sn->seed) {
5622 12 : sql_exp *e = rel_value_exp(query, NULL, sn->seed, 0, ek);
5623 12 : if (!e || !(e=exp_check_type(sql, sql_bind_localtype("int"), NULL, e, type_equal)))
5624 0 : return NULL;
5625 12 : list_append(exps, e);
5626 : }
5627 23 : rel = rel_sample(sql->sa, rel, exps);
5628 : }
5629 :
5630 : /* after parsing the current query, set the group by relation as processed */
5631 368736 : if (!sn->having && inner && is_groupby(inner->op))
5632 28266 : set_processed(inner);
5633 368736 : if (rel)
5634 368736 : set_processed(rel);
5635 : return rel;
5636 : }
5637 :
5638 : static sql_rel *
5639 60 : join_on_column_name(sql_query *query, sql_rel *rel, sql_rel *t1, sql_rel *t2, int op, int l_nil, int r_nil)
5640 : {
5641 60 : mvc *sql = query->sql;
5642 60 : int found = 0, full = (op == op_full), right = (op == op_right);
5643 60 : list *exps = rel_projections(sql, t1, NULL, 1, 0);
5644 60 : list *r_exps = rel_projections(sql, t2, NULL, 1, 0);
5645 60 : list *outexps = new_exp_list(sql->sa);
5646 :
5647 60 : if (!exps || !r_exps)
5648 : return NULL;
5649 236 : for (node *n = exps->h; n; n = n->next) {
5650 179 : sql_exp *le = n->data;
5651 179 : int multi = 0;
5652 179 : const char *rname = exp_relname(le), *name = exp_name(le);
5653 179 : sql_exp *re = exps_bind_column(r_exps, name, NULL, &multi, 0);
5654 :
5655 179 : if (re) {
5656 136 : if (multi)
5657 3 : return sql_error(sql, ERR_AMBIGUOUS, SQLSTATE(42000) "NATURAL JOIN: common column name '%s' appears more than once in right table", rname);
5658 134 : multi = 0;
5659 134 : le = exps_bind_column(exps, name, NULL, &multi, 0);
5660 134 : if (multi)
5661 0 : return sql_error(sql, ERR_AMBIGUOUS, SQLSTATE(42000) "NATURAL JOIN: common column name '%s' appears more than once in left table", rname);
5662 :
5663 134 : found = 1;
5664 134 : if (!(rel = rel_compare_exp(query, rel, le, re, "=", TRUE, 0, 0, 0, 0)))
5665 : return NULL;
5666 133 : list_remove_data(r_exps, NULL, re);
5667 133 : if (full) {
5668 12 : sql_exp *cond = rel_unop_(sql, rel, le, "sys", "isnull", card_value);
5669 12 : if (!cond)
5670 : return NULL;
5671 12 : set_has_no_nil(cond);
5672 12 : if (rel_convert_types(sql, NULL, NULL, &le, &re, 1, type_equal_no_any) < 0)
5673 : return NULL;
5674 12 : if (!(le = rel_nop_(sql, rel, cond, re, le, NULL, "sys", "ifthenelse", card_value)))
5675 : return NULL;
5676 121 : } else if (right) {
5677 3 : le = re;
5678 : }
5679 133 : exp_setname(sql, le, rname, name);
5680 133 : set_not_unique(le);
5681 133 : append(outexps, le);
5682 : } else {
5683 43 : if (l_nil)
5684 5 : set_has_nil(le);
5685 43 : set_not_unique(le);
5686 43 : append(outexps, le);
5687 : }
5688 : }
5689 57 : if (!found)
5690 2 : return sql_error(sql, 02, SQLSTATE(42000) "JOIN: no columns of tables '%s' and '%s' match", rel_name(t1)?rel_name(t1):"", rel_name(t2)?rel_name(t2):"");
5691 86 : for (node *n = r_exps->h; n; n = n->next) {
5692 31 : sql_exp *re = n->data;
5693 31 : if (r_nil)
5694 3 : set_has_nil(re);
5695 31 : set_not_unique(re);
5696 31 : append(outexps, re);
5697 : }
5698 55 : rel = rel_project(sql->sa, rel, outexps);
5699 55 : return rel;
5700 : }
5701 :
5702 : static sql_rel *
5703 370034 : rel_select_exp(sql_query *query, sql_rel *rel, SelectNode *sn, exp_kind ek)
5704 : {
5705 370034 : mvc *sql = query->sql;
5706 370034 : sql_rel *inner = NULL;
5707 370034 : int group_totals = 0;
5708 370034 : list *pexps = NULL;
5709 :
5710 370034 : assert(sn->s.token == SQL_SELECT);
5711 370034 : if (!sn->selection)
5712 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: the selection or from part is missing");
5713 :
5714 370034 : if (!rel)
5715 72570 : rel = rel_project_exp(sql, exp_atom_bool(sql->sa, 1));
5716 370030 : rel = rel_where_groupby_nodes(query, rel, sn, &group_totals);
5717 370028 : if (sql->session->status) /* rel might be NULL as input, so we have to check for the session status for errors */
5718 : return NULL;
5719 :
5720 369936 : inner = rel;
5721 369936 : pexps = sa_list(sql->sa);
5722 1739881 : for (dnode *n = sn->selection->h; n; n = n->next) {
5723 : /* Here we could get real column expressions
5724 : * (including single atoms) but also table results.
5725 : * Therefore we try both rel_column_exp
5726 : * and rel_table_exp.
5727 : */
5728 1371064 : list *te = NULL;
5729 2742070 : sql_exp *ce = rel_column_exp(query, &inner, n->data.sym, sql_sel | group_totals | (ek.aggr?sql_aggr:0));
5730 :
5731 1371062 : if (ce) {
5732 1312901 : if (inner && inner->flag && is_groupby(inner->op)) {
5733 62 : int found = 0;
5734 62 : list *gbe = inner->r;
5735 : /* flag == 2 just add to group by/ aggrs and ref-to pexps*/
5736 : /* flag == 1 find group by exp referencing this column nr */
5737 62 : if (inner->flag == 2) {
5738 25 : if (ce->card > CARD_AGGR) {
5739 9 : if (!gbe)
5740 8 : inner->r = gbe = sa_list(sql->sa);
5741 9 : append(gbe, ce);
5742 9 : ce = exp_ref(sql, ce);
5743 9 : ce->card = CARD_AGGR;
5744 9 : list_append(inner->exps, ce);
5745 9 : ce = exp_ref(sql, ce);
5746 9 : found = 1;
5747 : }
5748 : } else {
5749 81 : for(node *n = gbe->h; n && !found; n = n->next) {
5750 44 : sql_exp *e = n->data;
5751 44 : if (is_atom(e->type) && !e->alias.name) {
5752 29 : atom *a = e->l;
5753 29 : int nr = (int)atom_get_int(a);
5754 29 : if (nr == (list_length(pexps) + 1)) {
5755 27 : n->data = ce;
5756 27 : ce = exp_ref(sql, ce);
5757 27 : ce->card = CARD_AGGR;
5758 27 : list_append(inner->exps, ce);
5759 27 : ce = exp_ref(sql, ce);
5760 27 : found = 1;
5761 : }
5762 : }
5763 : }
5764 : }
5765 : }
5766 1312901 : pexps = append(pexps, ce);
5767 1312901 : rel = inner;
5768 1312901 : continue;
5769 : } else {
5770 63173 : te = rel_table_exp(query, &rel, n->data.sym, !list_length(pexps) && !n->next);
5771 : }
5772 58161 : if (!ce && !te) {
5773 1118 : if (sql->errstr[0])
5774 : return NULL;
5775 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: subquery result missing");
5776 : }
5777 : /* here we should merge the column expressions we
5778 : * obtained so far with the table expression, ie
5779 : * t1.* or a subquery.
5780 : */
5781 57043 : pexps = list_merge(pexps, te, (fdup)NULL);
5782 : }
5783 368817 : if (rel && is_groupby(rel->op) && rel->flag) {
5784 34 : list *gbe = rel->r;
5785 34 : if (!list_empty(gbe)) {
5786 68 : for (node *n=gbe->h; n; n = n->next) {
5787 37 : sql_exp *e = n->data;
5788 37 : if (rel->flag == 1 && is_atom(e->type) && !e->alias.name) {
5789 1 : atom *a = e->l;
5790 1 : int nr = (int)atom_get_int(a);
5791 1 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: GROUP BY position %d is not in select list", nr);
5792 : }
5793 36 : if (exp_has_aggr(rel, e))
5794 2 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: aggregate functions are not allowed in GROUP BY");
5795 : }
5796 : }
5797 : }
5798 368814 : if (rel && is_groupby(rel->op) && (!sn->groupby || rel->flag) && !is_processed(rel)) {
5799 41670 : for (node *n=pexps->h; n; n = n->next) {
5800 21298 : sql_exp *ce = n->data;
5801 21298 : if (rel->card < ce->card && !exp_is_aggr(rel, ce)) {
5802 0 : if (exp_name(ce) && !has_label(ce))
5803 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column '%s' in query results without an aggregate function", exp_name(ce));
5804 0 : return sql_error(sql, ERR_GROUPBY, SQLSTATE(42000) "SELECT: cannot use non GROUP BY column in query results without an aggregate function");
5805 : }
5806 : }
5807 20372 : set_processed(rel);
5808 : }
5809 368814 : rel = rel_project(sql->sa, rel, pexps);
5810 :
5811 368815 : rel = rel_having_limits_nodes(query, rel, sn, ek, group_totals);
5812 368815 : return rel;
5813 : }
5814 :
5815 : static sql_rel*
5816 123832 : rel_unique_names(mvc *sql, sql_rel *rel)
5817 : {
5818 123832 : list *l;
5819 :
5820 123832 : if (!is_project(rel->op))
5821 : return rel;
5822 123832 : l = sa_list(sql->sa);
5823 944382 : for (node *n = rel->exps->h; n; n = n->next) {
5824 820550 : sql_exp *e = n->data;
5825 820550 : const char *name = exp_name(e);
5826 :
5827 : /* If there are two identical expression names, there will be ambiguity */
5828 820550 : if (!name || exps_bind_column(l, name, NULL, NULL, 0))
5829 57507 : exp_label(sql->sa, e, ++sql->label);
5830 820550 : append(l,e);
5831 : }
5832 123832 : rel->exps = l;
5833 123832 : return rel;
5834 : }
5835 :
5836 : static sql_rel *
5837 370327 : rel_query(sql_query *query, symbol *sq, exp_kind ek)
5838 : {
5839 370327 : mvc *sql = query->sql;
5840 370327 : sql_rel *res = NULL;
5841 370327 : SelectNode *sn = NULL;
5842 :
5843 370327 : if (sq->token != SQL_SELECT)
5844 22 : return table_ref(query, sq, 0, NULL);
5845 :
5846 : /* select ... into is currently not handled here ! */
5847 370305 : sn = (SelectNode *) sq;
5848 370305 : if (sn->into)
5849 : return NULL;
5850 :
5851 370305 : if (ek.card != card_relation && sn->orderby)
5852 0 : return sql_error(sql, 01, SQLSTATE(42000) "SELECT: ORDER BY only allowed on outermost SELECT");
5853 :
5854 370305 : if (sn->window) {
5855 20 : dlist *wl = sn->window->data.lval;
5856 51 : for (dnode *n = wl->h; n ; n = n->next) {
5857 32 : dlist *wd = n->data.sym->data.lval;
5858 32 : const char *name = wd->h->data.sval;
5859 32 : dlist *wdef = wd->h->next->data.lval;
5860 32 : if (frame_get_window_def(sql, name, NULL)) {
5861 1 : return sql_error(sql, 01, SQLSTATE(42000) "SELECT: Redefinition of window '%s'", name);
5862 31 : } else if (!frame_push_window_def(sql, name, wdef)) {
5863 0 : return sql_error(sql, 02, SQLSTATE(HY013) MAL_MALLOC_FAIL);
5864 : }
5865 : }
5866 : }
5867 :
5868 370304 : if (sn->from) {
5869 297734 : dlist *fl = sn->from->data.lval;
5870 297734 : sql_rel *fnd = NULL;
5871 297734 : list *refs = new_exp_list(sql->sa); /* Keep list of relation names in order to test for duplicates */
5872 :
5873 737588 : for (dnode *n = fl->h; n ; n = n->next) {
5874 440124 : int lateral = check_is_lateral(n->data.sym);
5875 :
5876 : /* just used current expression */
5877 440124 : if (lateral && res)
5878 11 : query_push_outer(query, res, sql_from);
5879 440124 : fnd = table_ref(query, n->data.sym, lateral, refs);
5880 440124 : if (lateral && res)
5881 11 : res = query_pop_outer(query);
5882 440124 : if (!fnd)
5883 : break;
5884 439854 : if (res) {
5885 142376 : res = rel_crossproduct(sql->sa, res, fnd, op_join);
5886 142376 : if (lateral)
5887 11 : set_dependent(res);
5888 : } else {
5889 : res = fnd;
5890 : }
5891 : }
5892 297734 : if (!fnd) {
5893 270 : if (res)
5894 14 : rel_destroy(res);
5895 270 : return NULL;
5896 : }
5897 72570 : } else if (!query_has_outer(query) || !res) {/* only on top level query */
5898 72570 : return rel_select_exp(query, NULL, sn, ek);
5899 : }
5900 :
5901 297464 : sql_rel *rel = NULL;
5902 297464 : if (res)
5903 297464 : rel = rel_select_exp(query, res, sn, ek);
5904 297464 : if (!rel && res)
5905 1048 : rel_destroy(res);
5906 : return rel;
5907 : }
5908 :
5909 : /* NOTE: does NOT "set" query but instead generate set ops (union, except, intersect) */
5910 : static sql_rel *
5911 23 : rel_setquery_corresponding(sql_query *query, sql_rel *l, sql_rel *r, dlist *cols, int op, int outer, bool n_ary_op)
5912 : {
5913 23 : mvc *sql = query->sql;
5914 23 : const char *opname = op==SQL_EXCEPT?"EXCEPT":op==SQL_INTERSECT?"INTERSECT":outer?"OUTER UNION":"UNION";
5915 23 : list *lexps = sa_list(query->sql->sa), *rexps = sa_list(query->sql->sa);
5916 23 : if (!lexps || !rexps)
5917 : return NULL;
5918 23 : assert(cols);
5919 23 : if (dlist_length(cols)) {
5920 22 : for (dnode *dn = cols->h; dn; dn = dn ->next) {
5921 13 : char *nm = dn->data.sym->data.lval->h->data.sval;
5922 13 : sql_exp *ls, *rs;
5923 :
5924 13 : if (!(ls = rel_bind_column(sql, l, nm, sql_where | sql_join, 0)) && sql->session->status == -ERR_AMBIGUOUS)
5925 : return NULL;
5926 13 : if (!(rs = rel_bind_column(sql, r, nm, sql_where | sql_join, 0)) && sql->session->status == -ERR_AMBIGUOUS)
5927 : return NULL;
5928 13 : if ((!outer && (!ls || !rs)) || (outer && !ls && !rs))
5929 2 : return sql_error(sql, 02, SQLSTATE(42000) "%s: tables '%s' and '%s' do not have a matching column '%s'", opname, rel_name(l)?rel_name(l):"", rel_name(r)?rel_name(r):"", nm);
5930 11 : if (outer && !ls)
5931 4 : ls = exp_null(sql->sa, exp_subtype(rs));
5932 11 : if (outer && !rs)
5933 4 : rs = exp_null(sql->sa, exp_subtype(ls));
5934 11 : append(lexps, ls);
5935 11 : append(rexps, rs);
5936 : }
5937 : } else {
5938 12 : int found = 0;
5939 12 : list *exps = rel_projections(sql, l, NULL, 1, 0), *r_exps = rel_projections(sql, r, NULL, 1, 0);
5940 12 : if (!exps || !r_exps)
5941 : return NULL;
5942 : /* find cols which exist on both sides */
5943 35 : for (node *n = exps->h; n; n = n->next) {
5944 23 : sql_exp *le = n->data;
5945 23 : int multi = 0;
5946 23 : const char *rname = exp_relname(le), *name = exp_name(le);
5947 23 : sql_exp *re = exps_bind_column(r_exps, name, NULL, &multi, 0);
5948 23 : if (re) {
5949 13 : if (multi)
5950 0 : return sql_error(sql, ERR_AMBIGUOUS, SQLSTATE(42000) "%s: common column name '%s' appears more than once in right table", opname, rname);
5951 13 : multi = 0;
5952 13 : le = exps_bind_column(exps, name, NULL, &multi, 0);
5953 13 : if (multi)
5954 0 : return sql_error(sql, ERR_AMBIGUOUS, SQLSTATE(42000) "%s: common column name '%s' appears more than once in left table", opname, rname);
5955 :
5956 13 : found = 1;
5957 13 : append(lexps, le);
5958 13 : append(rexps, re);
5959 13 : list_remove_data(r_exps, NULL, re);
5960 10 : } else if (outer) {
5961 3 : append(lexps, le);
5962 3 : re = exp_null(sql->sa, exp_subtype(le));
5963 3 : append(rexps, re); /* nils */
5964 : }
5965 : }
5966 12 : if (!found)
5967 0 : return sql_error(sql, 02, SQLSTATE(42000) "%s: no columns of tables '%s' and '%s' match", opname, rel_name(l)?rel_name(l):"", rel_name(r)?rel_name(r):"");
5968 12 : if (outer) {
5969 7 : for (node *n = r_exps->h; n; n = n->next) {
5970 4 : sql_exp *re = n->data, *le;
5971 4 : append(rexps, re);
5972 4 : le = exp_null(sql->sa, exp_subtype(re));
5973 4 : append(lexps, le); /* nils */
5974 : }
5975 : }
5976 : }
5977 21 : return n_ary_op ?
5978 21 : rel_setop_n_ary_check_types(sql, l, r, lexps, rexps, (operator_type)op) :
5979 2 : rel_setop_check_types(sql, l, r, lexps, rexps, (operator_type)op);
5980 : }
5981 :
5982 : static sql_rel *
5983 2481 : rel_setquery_(sql_query *query, sql_rel *l, sql_rel *r, dlist *cols, int op, int outer)
5984 : {
5985 2481 : mvc *sql = query->sql;
5986 2481 : sql_rel *rel;
5987 :
5988 2481 : if (outer && !cols)
5989 0 : return sql_error(sql, 02, SQLSTATE(42000) "UNION: OUTER needs to be combined with CORRESPONDING [ BY ( column list ) ]");
5990 2481 : if (!cols) {
5991 2479 : list *ls, *rs;
5992 :
5993 2479 : l = rel_unique_names(sql, l);
5994 2479 : r = rel_unique_names(sql, r);
5995 2479 : ls = rel_projections(sql, l, NULL, 0, 1);
5996 2479 : rs = rel_projections(sql, r, NULL, 0, 1);
5997 2479 : rel = rel_setop_check_types(sql, l, r, ls, rs, (operator_type)op);
5998 : } else {
5999 2 : rel = rel_setquery_corresponding(query, l, r, cols, op, outer, false);
6000 : }
6001 2481 : if (rel) {
6002 2478 : rel_setop_set_exps(sql, rel, rel_projections(sql, rel, NULL, 0, 1), false);
6003 2478 : set_processed(rel);
6004 : }
6005 : return rel;
6006 : }
6007 :
6008 : /* Generate n-ary set operator */
6009 : static sql_rel *
6010 59458 : rel_setquery_n_ary_(sql_query *query, sql_rel *l, sql_rel *r, dlist *cols, int op, int outer)
6011 : {
6012 : /* even though this is for a general n-ary operators in this phase of the query
6013 : * processing we gonna have only two operands (so technically it's binary). In
6014 : * general this op supports arbitrary number of operands.
6015 : */
6016 : // TODO: for now we support only multi-union
6017 59458 : assert(op == op_munion);
6018 :
6019 59458 : mvc *sql = query->sql;
6020 59458 : sql_rel *rel;
6021 :
6022 59458 : if (outer && !cols)
6023 0 : return sql_error(sql, 02, SQLSTATE(42000) "UNION: OUTER needs to be combined with CORRESPONDING [ BY ( column list ) ]");
6024 59458 : if (!cols) {
6025 : // TODO: make rel_setop_n_ary_check_types to accept a list of rels
6026 : // and a list of lists of exps
6027 59437 : list *ls, *rs;
6028 :
6029 59437 : l = rel_unique_names(sql, l);
6030 59437 : r = rel_unique_names(sql, r);
6031 59437 : ls = rel_projections(sql, l, NULL, 0, 1);
6032 59437 : rs = rel_projections(sql, r, NULL, 0, 1);
6033 59437 : rel = rel_setop_n_ary_check_types(sql, l, r, ls, rs, (operator_type)op);
6034 : } else {
6035 21 : rel = rel_setquery_corresponding(query, l, r, cols, op, outer, true);
6036 : }
6037 :
6038 59458 : if (rel) {
6039 59452 : rel_setop_n_ary_set_exps(sql, rel, rel_projections(sql, rel, NULL, 0, 1), false);
6040 59452 : set_processed(rel);
6041 : }
6042 :
6043 : return rel;
6044 :
6045 : }
6046 :
6047 : static sql_rel *
6048 61946 : rel_setquery(sql_query *query, symbol *q)
6049 : {
6050 61946 : mvc *sql = query->sql;
6051 61946 : sql_rel *res = NULL;
6052 61946 : dnode *n = q->data.lval->h;
6053 61946 : symbol *tab_ref1 = n->data.sym;
6054 61946 : int distinct = n->next->data.i_val;
6055 61946 : dlist *corresponding = n->next->next->data.lval;
6056 61946 : symbol *tab_ref2 = n->next->next->next->data.sym;
6057 61946 : sql_rel *t1, *t2;
6058 :
6059 61946 : assert(n->next->type == type_int);
6060 61946 : t1 = table_ref(query, tab_ref1, 0, NULL);
6061 61946 : if (!t1)
6062 : return NULL;
6063 61942 : t2 = table_ref(query, tab_ref2, 0, NULL);
6064 61942 : if (!t2)
6065 : return NULL;
6066 :
6067 61940 : rel_remove_internal_exp(t1);
6068 61940 : rel_remove_internal_exp(t2);
6069 61940 : if (!corresponding && list_length(t1->exps) != list_length(t2->exps)) {
6070 1 : int t1nrcols = list_length(t1->exps);
6071 1 : int t2nrcols = list_length(t2->exps);
6072 1 : const char *op = "UNION";
6073 1 : if (q->token == SQL_EXCEPT)
6074 : op = "EXCEPT";
6075 0 : else if (q->token == SQL_INTERSECT)
6076 0 : op = "INTERSECT";
6077 1 : rel_destroy(t1);
6078 1 : rel_destroy(t2);
6079 1 : return sql_error(sql, 02, SQLSTATE(42000) "%s: column counts (%d and %d) do not match", op, t1nrcols, t2nrcols);
6080 : }
6081 61939 : if ( q->token == SQL_UNION) {
6082 59458 : int outer = n->next->next->next->next->data.i_val;
6083 : /* For EXCEPT/INTERSECT the group by is always done within the implementation */
6084 : /* TODO add those later in an optimizer ! */
6085 59458 : if (t1 && distinct)
6086 2006 : t1 = rel_distinct(t1);
6087 59458 : if (t2 && distinct)
6088 2006 : t2 = rel_distinct(t2);
6089 : // TODO: this has to be fixed
6090 : /*res = rel_setquery_(query, t1, t2, corresponding, op_union, outer);*/
6091 59458 : res = rel_setquery_n_ary_(query, t1, t2, corresponding, op_munion, outer);
6092 2481 : } else if ( q->token == SQL_EXCEPT)
6093 2023 : res = rel_setquery_(query, t1, t2, corresponding, op_except, 0);
6094 458 : else if ( q->token == SQL_INTERSECT)
6095 458 : res = rel_setquery_(query, t1, t2, corresponding, op_inter, 0);
6096 61939 : if (res) {
6097 61930 : set_processed(res);
6098 61930 : if (distinct)
6099 4361 : res = rel_distinct(res);
6100 : }
6101 : return res;
6102 : }
6103 :
6104 : static sql_rel *
6105 59705 : rel_joinquery_(sql_query *query, symbol *tab1, int natural, jt jointype, symbol *tab2, symbol *js, list *refs)
6106 : {
6107 59705 : mvc *sql = query->sql;
6108 59705 : operator_type op = op_join;
6109 59705 : sql_rel *t1 = NULL, *t2 = NULL, *inner, *rel = NULL;
6110 59705 : int l_nil = 0, r_nil = 0, lateral = 0;
6111 :
6112 59705 : switch(jointype) {
6113 : case jt_inner:
6114 : case jt_cross: op = op_join;
6115 : break;
6116 : case jt_left: op = op_left;
6117 : r_nil = 1;
6118 : break;
6119 : case jt_right: op = op_right;
6120 : l_nil = 1;
6121 : break;
6122 : case jt_full: op = op_full;
6123 : l_nil = 1;
6124 : r_nil = 1;
6125 : break;
6126 : }
6127 :
6128 : /* a dependent join cannot depend on the right side, so disable lateral check for right and full joins */
6129 59705 : lateral = (op == op_join || op == op_left) && check_is_lateral(tab2);
6130 59705 : t1 = table_ref(query, tab1, 0, refs);
6131 59705 : if (t1) {
6132 59700 : if (!lateral) {
6133 59665 : t2 = table_ref(query, tab2, 0, refs);
6134 : } else {
6135 35 : query_processed(query);
6136 35 : query_push_outer(query, t1, sql_from);
6137 35 : t2 = table_ref(query, tab2, 0, refs);
6138 35 : t1 = query_pop_outer(query);
6139 : }
6140 : }
6141 59705 : if (!t1 || !t2)
6142 : return NULL;
6143 :
6144 59682 : query_processed(query);
6145 59682 : if (strcmp(rel_name(t1), rel_name(t2)) == 0) {
6146 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: ERROR: table name '%s' specified more than once", rel_name(t1));
6147 : }
6148 59682 : inner = rel = rel_crossproduct(sql->sa, t1, t2, op);
6149 59682 : if (!rel)
6150 : return NULL;
6151 59682 : if (lateral)
6152 34 : set_dependent(rel);
6153 :
6154 59682 : assert(jointype != jt_cross || (!natural && !js)); /* there are no natural cross joins, or cross joins with conditions */
6155 59682 : if (js && natural)
6156 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: cannot have a NATURAL JOIN with a join specification (ON or USING)");
6157 59682 : if (jointype != jt_cross && !js && !natural)
6158 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: must have NATURAL JOIN or a JOIN with a join specification (ON or USING)");
6159 :
6160 59682 : if (js && js->token != SQL_USING) { /* On sql_logical_exp */
6161 59511 : rel = rel_logical_exp(query, rel, js, sql_where | sql_join);
6162 171 : } else if (js) { /* using */
6163 20 : char rname[16], *rnme;
6164 20 : dnode *n = js->data.lval->h;
6165 20 : list *outexps = new_exp_list(sql->sa), *exps;
6166 20 : node *m;
6167 :
6168 20 : rnme = sa_strdup(sql->sa, number2name(rname, sizeof(rname), ++sql->label));
6169 46 : for (; n; n = n->next) {
6170 26 : char *nm = n->data.sval;
6171 26 : sql_exp *cond, *ls, *rs;
6172 :
6173 26 : if (!(ls = rel_bind_column(sql, t1, nm, sql_where | sql_join, 0)) && sql->session->status == -ERR_AMBIGUOUS)
6174 0 : return NULL;
6175 26 : if (!(rs = rel_bind_column(sql, t2, nm, sql_where | sql_join, 0)) && sql->session->status == -ERR_AMBIGUOUS)
6176 : return NULL;
6177 26 : if (!ls || !rs)
6178 0 : return sql_error(sql, 02, SQLSTATE(42000) "JOIN: tables '%s' and '%s' do not have a matching column '%s'", rel_name(t1)?rel_name(t1):"", rel_name(t2)?rel_name(t2):"", nm);
6179 26 : if (!(rel = rel_compare_exp(query, rel, ls, rs, "=", TRUE, 0, 0, 0, 0)))
6180 : return NULL;
6181 26 : if (op != op_join) {
6182 12 : if (!(cond = rel_unop_(sql, rel, ls, "sys", "isnull", card_value)))
6183 : return NULL;
6184 12 : set_has_no_nil(cond);
6185 12 : if (rel_convert_types(sql, t1, t2, &ls, &rs, 1, type_equal) < 0)
6186 : return NULL;
6187 12 : if (!(ls = rel_nop_(sql, rel, cond, rs, ls, NULL, "sys", "ifthenelse", card_value)))
6188 : return NULL;
6189 : }
6190 26 : exp_setname(sql, ls, rnme, nm);
6191 26 : append(outexps, ls);
6192 26 : if (!rel)
6193 : return NULL;
6194 : }
6195 20 : exps = rel_projections(sql, t1, NULL, 1, 1);
6196 199 : for (m = exps->h; m; m = m->next) {
6197 179 : const char *nm = exp_name(m->data);
6198 179 : int fnd = 0;
6199 :
6200 429 : for (n = js->data.lval->h; n; n = n->next) {
6201 276 : if (strcmp(nm, n->data.sval) == 0) {
6202 : fnd = 1;
6203 : break;
6204 : }
6205 : }
6206 179 : if (!fnd) {
6207 153 : sql_exp *ls = m->data;
6208 153 : if (l_nil)
6209 18 : set_has_nil(ls);
6210 153 : set_not_unique(ls);
6211 153 : append(outexps, ls);
6212 : }
6213 : }
6214 20 : exps = rel_projections(sql, t2, NULL, 1, 1);
6215 100 : for (m = exps->h; m; m = m->next) {
6216 80 : const char *nm = exp_name(m->data);
6217 80 : int fnd = 0;
6218 :
6219 230 : for (n = js->data.lval->h; n; n = n->next) {
6220 176 : if (strcmp(nm, n->data.sval) == 0) {
6221 : fnd = 1;
6222 : break;
6223 : }
6224 : }
6225 80 : if (!fnd) {
6226 54 : sql_exp *rs = m->data;
6227 54 : if (r_nil)
6228 14 : set_has_nil(rs);
6229 54 : set_not_unique(rs);
6230 54 : append(outexps, rs);
6231 : }
6232 : }
6233 20 : rel = rel_project(sql->sa, rel, outexps);
6234 151 : } else if (jointype != jt_cross) { /* ! js -> natural join */
6235 60 : rel = join_on_column_name(query, rel, t1, t2, op, l_nil, r_nil);
6236 : }
6237 59682 : if (!rel)
6238 : return NULL;
6239 59664 : if (inner && is_outerjoin(inner->op))
6240 21881 : set_processed(inner);
6241 59664 : set_processed(rel);
6242 59664 : query_processed(query);
6243 59664 : return rel;
6244 : }
6245 :
6246 : static sql_rel *
6247 59705 : rel_joinquery(sql_query *query, symbol *q, list *refs)
6248 : {
6249 59705 : dnode *n = q->data.lval->h;
6250 59705 : symbol *tab_ref1 = n->data.sym;
6251 59705 : int natural = n->next->data.i_val;
6252 59705 : jt jointype = (jt) n->next->next->data.i_val;
6253 59705 : symbol *tab_ref2 = n->next->next->next->data.sym;
6254 59705 : symbol *joinspec = n->next->next->next->next->data.sym;
6255 :
6256 59705 : assert(n->next->type == type_int);
6257 59705 : assert(n->next->next->type == type_int);
6258 59705 : return rel_joinquery_(query, tab_ref1, natural, jointype, tab_ref2, joinspec, refs);
6259 : }
6260 :
6261 : sql_rel *
6262 370327 : rel_subquery(sql_query *query, symbol *sq, exp_kind ek)
6263 : {
6264 370327 : mvc *sql = query->sql;
6265 :
6266 370327 : query_processed(query);
6267 370327 : if (!stack_push_frame(sql, NULL))
6268 0 : return sql_error(sql, 02, SQLSTATE(HY013) MAL_MALLOC_FAIL);
6269 370326 : sql_rel *rel = rel_query(query, sq, ek);
6270 370327 : stack_pop_frame(sql);
6271 370327 : if (!query_has_outer(query))
6272 334285 : query_processed(query);
6273 370327 : if (rel && ek.type == type_relation && ek.card < card_set && rel->card >= CARD_AGGR)
6274 15 : return rel_zero_or_one(sql, rel, ek);
6275 : return rel;
6276 : }
6277 :
6278 : sql_rel *
6279 238342 : rel_selects(sql_query *query, symbol *s)
6280 : {
6281 238342 : mvc *sql = query->sql;
6282 238342 : sql_rel *ret = NULL;
6283 :
6284 238342 : switch (s->token) {
6285 5663 : case SQL_WITH:
6286 5663 : ret = rel_with_query(query, s);
6287 5663 : sql->type = Q_TABLE;
6288 5663 : break;
6289 2177 : case SQL_VALUES:
6290 2177 : ret = rel_values(query, s, NULL);
6291 2177 : sql->type = Q_TABLE;
6292 2177 : break;
6293 211324 : case SQL_SELECT: {
6294 211324 : exp_kind ek = {type_value, card_relation, TRUE};
6295 211324 : SelectNode *sn = (SelectNode *) s;
6296 :
6297 211324 : if (sn->into) {
6298 1 : sql->type = Q_SCHEMA;
6299 1 : ret = rel_select_with_into(query, s);
6300 : } else {
6301 211323 : ret = rel_subquery(query, s, ek);
6302 211323 : sql->type = Q_TABLE;
6303 : }
6304 211324 : } break;
6305 0 : case SQL_JOIN:
6306 0 : ret = rel_joinquery(query, s, NULL);
6307 0 : sql->type = Q_TABLE;
6308 0 : break;
6309 19178 : case SQL_UNION:
6310 : case SQL_EXCEPT:
6311 : case SQL_INTERSECT:
6312 19178 : ret = rel_setquery(query, s);
6313 19178 : sql->type = Q_TABLE;
6314 19178 : break;
6315 : default:
6316 : return NULL;
6317 : }
6318 238342 : if (!ret && sql->errstr[0] == 0)
6319 0 : (void) sql_error(sql, 02, SQLSTATE(42000) "relational query without result");
6320 : return ret;
6321 : }
6322 :
6323 : sql_rel *
6324 79123 : schema_selects(sql_query *query, sql_schema *schema, symbol *s)
6325 : {
6326 79123 : mvc *sql = query->sql;
6327 79123 : sql_rel *res;
6328 79123 : sql_schema *os = cur_schema(sql);
6329 :
6330 79123 : sql->session->schema = schema;
6331 79123 : res = rel_selects(query, s);
6332 79123 : sql->session->schema = os;
6333 79123 : return res;
6334 : }
6335 :
6336 : sql_rel *
6337 26 : rel_loader_function(sql_query *query, symbol* fcall, list *fexps, sql_subfunc **loader_function)
6338 : {
6339 26 : mvc *sql = query->sql;
6340 26 : sql_rel *sq = NULL;
6341 26 : dnode *l = fcall->data.lval->h;
6342 26 : char *sname = qname_schema(l->data.lval);
6343 26 : char *fname = qname_schema_object(l->data.lval);
6344 :
6345 26 : list *tl = sa_list(sql->sa);
6346 26 : list *exps = sa_list(sql->sa);
6347 26 : if (l->next)
6348 26 : l = l->next; /* skip distinct */
6349 26 : if (l->next) { /* table call with subquery */
6350 22 : if (l->next->type == type_symbol || l->next->type == type_list) {
6351 22 : int count = 0;
6352 22 : symbol *subquery = NULL;
6353 22 : dnode *n = NULL;
6354 :
6355 22 : if (l->next->type == type_symbol)
6356 : n = l->next;
6357 : else
6358 1 : n = l->next->data.lval->h;
6359 :
6360 66 : for (dnode *m = n; m; m = m->next) {
6361 44 : if (m->type == type_symbol && m->data.sym->token == SQL_SELECT)
6362 44 : subquery = m->data.sym;
6363 44 : count++;
6364 : }
6365 22 : if (subquery && count > 1)
6366 0 : return sql_error(sql, 02, SQLSTATE(42000) "SELECT: The input for the loader function '%s' must be either a single sub query, or a list of values", fname);
6367 :
6368 22 : if (subquery) {
6369 0 : exp_kind ek = { type_value, card_relation, TRUE };
6370 0 : if (!(sq = rel_subquery(query, subquery, ek)))
6371 0 : return NULL;
6372 : } else {
6373 22 : exp_kind ek = { type_value, card_column, TRUE };
6374 22 : list *exps = sa_list(sql->sa);
6375 88 : for ( ; n; n = n->next) {
6376 44 : sql_exp *e = rel_value_exp(query, NULL, n->data.sym, sql_sel | sql_from, ek);
6377 :
6378 44 : if (!e)
6379 0 : return NULL;
6380 44 : append(exps, e);
6381 : }
6382 22 : sq = rel_project(sql->sa, NULL, exps);
6383 : }
6384 : }
6385 22 : if (!sq)
6386 0 : return sql_error(sql, ERR_NOTFOUND, SQLSTATE(42000) "SELECT: no such loader function %s%s%s'%s'", sname ? "'":"", sname ? sname : "", sname ? "'.":"", fname);
6387 66 : for (node *en = sq->exps->h; en; en = en->next) {
6388 44 : sql_exp *e = en->data;
6389 :
6390 44 : append(exps, e = exp_ref(sql, e));
6391 44 : append(tl, exp_subtype(e));
6392 : }
6393 : }
6394 :
6395 26 : sql_exp *e = NULL;
6396 26 : if (!(e = find_table_function(sql, sname, fname, exps, tl, F_LOADER)))
6397 : return NULL;
6398 25 : sql_subfunc *sf = e->f;
6399 25 : if (sq) {
6400 66 : for (node *n = sq->exps->h, *m = sf->func->ops->h ; n && m ; n = n->next, m = m->next) {
6401 44 : sql_exp *e = (sql_exp*) n->data;
6402 44 : sql_arg *a = (sql_arg*) m->data;
6403 44 : if (!exp_subtype(e) && rel_set_type_param(sql, &(a->type), sq, e, 0) < 0)
6404 : return NULL;
6405 : }
6406 : }
6407 :
6408 25 : if (loader_function)
6409 25 : *loader_function = sf;
6410 :
6411 28 : return rel_table_func(sql->sa, sq, e, fexps, (sq)?TABLE_FROM_RELATION:TABLE_PROD_FUNC);
6412 : }
|