LCOV - code coverage report
Current view: top level - sql/server - rel_exp.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 1947 2230 87.3 %
Date: 2025-03-24 21:28:01 Functions: 181 197 91.9 %

          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, 2025 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 "sql_relation.h"
      15             : #include "sql_semantic.h"
      16             : #include "sql_decimal.h"
      17             : #include "rel_exp.h"
      18             : #include "rel_rel.h"
      19             : #include "rel_basetable.h"
      20             : #include "rel_prop.h"
      21             : 
      22             : comp_type
      23      832496 : compare_str2type(const char *compare_op)
      24             : {
      25      832496 :         comp_type type = cmp_filter;
      26             : 
      27      832496 :         if (compare_op[0] == '=') {
      28             :                 type = cmp_equal;
      29      148460 :         } else if (compare_op[0] == '<') {
      30       90995 :                 type = cmp_lt;
      31       90995 :                 if (compare_op[1] == '>')
      32             :                         type = cmp_notequal;
      33       23587 :                 else if (compare_op[1] == '=')
      34        4177 :                         type = cmp_lte;
      35       57465 :         } else if (compare_op[0] == '>') {
      36       57465 :                 type = cmp_gt;
      37       57465 :                 if (compare_op[1] == '=')
      38        3355 :                         type = cmp_gte;
      39             :         }
      40      832496 :         return type;
      41             : }
      42             : 
      43             : comp_type
      44       52363 : swap_compare( comp_type t )
      45             : {
      46       52363 :         switch(t) {
      47             :         case cmp_equal:
      48             :                 return cmp_equal;
      49             :         case cmp_lt:
      50             :                 return cmp_gt;
      51             :         case cmp_lte:
      52             :                 return cmp_gte;
      53             :         case cmp_gte:
      54             :                 return cmp_lte;
      55             :         case cmp_gt:
      56             :                 return cmp_lt;
      57             :         case cmp_notequal:
      58             :                 return cmp_notequal;
      59             :         default:
      60             :                 return cmp_equal;
      61             :         }
      62             : }
      63             : 
      64             : comp_type
      65           0 : negate_compare( comp_type t )
      66             : {
      67           0 :         switch(t) {
      68             :         case cmp_equal:
      69             :                 return cmp_notequal;
      70           0 :         case cmp_notequal:
      71           0 :                 return cmp_equal;
      72           0 :         case cmp_lt:
      73           0 :                 return cmp_gte;
      74           0 :         case cmp_lte:
      75           0 :                 return cmp_gt;
      76           0 :         case cmp_gte:
      77           0 :                 return cmp_lt;
      78           0 :         case cmp_gt:
      79           0 :                 return cmp_lte;
      80             : 
      81           0 :         case cmp_in:
      82           0 :                 return cmp_notin;
      83           0 :         case cmp_notin:
      84           0 :                 return cmp_in;
      85             : 
      86           0 :         default:
      87           0 :                 return t;
      88             :         }
      89             : }
      90             : 
      91             : comp_type
      92        3190 : range2lcompare( int r )
      93             : {
      94        3190 :         if (r&1) {
      95             :                 return cmp_gte;
      96             :         } else {
      97        1216 :                 return cmp_gt;
      98             :         }
      99             : }
     100             : 
     101             : comp_type
     102        3247 : range2rcompare( int r )
     103             : {
     104        3247 :         if (r&2) {
     105             :                 return cmp_lte;
     106             :         } else {
     107        1253 :                 return cmp_lt;
     108             :         }
     109             : }
     110             : 
     111             : int
     112        1913 : compare2range( int l, int r )
     113             : {
     114        1913 :         if (l == cmp_gt) {
     115        1790 :                 if (r == cmp_lt)
     116             :                         return 0;
     117          23 :                 else if (r == cmp_lte)
     118          23 :                         return 2;
     119         123 :         } else if (l == cmp_gte) {
     120         123 :                 if (r == cmp_lt)
     121             :                         return 1;
     122          85 :                 else if (r == cmp_lte)
     123          85 :                         return 3;
     124             :         }
     125             :         return -1;
     126             : }
     127             : 
     128             : int
     129          99 : compare_funcs2range(const char *l_op, const char *r_op)
     130             : {
     131          99 :         assert(l_op[0] == '>' && r_op[0] == '<');
     132          99 :         if (!l_op[1] && !r_op[1])
     133             :                 return 0;
     134          97 :         if (!l_op[1] && r_op[1] == '=')
     135             :                 return 2;
     136          97 :         if (l_op[1] == '=' && !r_op[1])
     137             :                 return 1;
     138           5 :         if (l_op[1] == '=' && r_op[1] == '=')
     139             :                 return 3;
     140           0 :         assert(0);
     141             :         return 0;
     142             : }
     143             : 
     144             : static sql_exp *
     145    21869904 : exp_create(allocator *sa, int type)
     146             : {
     147    21869904 :         sql_exp *e = SA_NEW(sa, sql_exp);
     148             : 
     149    21870280 :         if (!e)
     150             :                 return NULL;
     151    21870280 :         *e = (sql_exp) {
     152    21870280 :                 .type = (expression_type) type,
     153             :         };
     154    21870280 :         return e;
     155             : }
     156             : 
     157             : sql_exp *
     158      489375 : exp_compare(allocator *sa, sql_exp *l, sql_exp *r, int cmptype)
     159             : {
     160      489375 :         sql_exp *e = exp_create(sa, e_cmp);
     161      489375 :         if (e == NULL)
     162             :                 return NULL;
     163      489375 :         e->card = MAX(l->card,r->card);
     164      489375 :         e->l = l;
     165      489375 :         e->r = r;
     166      489375 :         e->flag = cmptype;
     167      489375 :         if (!has_nil(l) && !has_nil(r))
     168      351532 :                 set_has_no_nil(e);
     169             :         return e;
     170             : }
     171             : 
     172             : sql_exp *
     173        6613 : exp_compare2(allocator *sa, sql_exp *l, sql_exp *r, sql_exp *f, int cmptype, int symmetric)
     174             : {
     175        6613 :         sql_exp *e = exp_create(sa, e_cmp);
     176        6613 :         if (e == NULL)
     177             :                 return NULL;
     178        6613 :         assert(f);
     179        6613 :         e->card = MAX(MAX(l->card,r->card),f->card);
     180        6613 :         e->l = l;
     181        6613 :         e->r = r;
     182        6613 :         e->f = f;
     183        6613 :         e->flag = cmptype;
     184        6613 :         if (symmetric)
     185          76 :                 set_symmetric(e);
     186        6613 :         if (!has_nil(l) && !has_nil(r) && !has_nil(f))
     187        1628 :                 set_has_no_nil(e);
     188             :         return e;
     189             : }
     190             : 
     191             : sql_exp *
     192        8238 : exp_filter(allocator *sa, list *l, list *r, sql_subfunc *f, int anti)
     193             : {
     194        8238 :         sql_exp *e = exp_create(sa, e_cmp);
     195             : 
     196        8238 :         if (e == NULL)
     197             :                 return NULL;
     198        8238 :         e->card = MAX(exps_card(l),exps_card(r));
     199        8238 :         if (!r) { /* split l */
     200        1590 :                 list *nl = sa_list(sa), *nr = sa_list(sa);
     201        1590 :                 node *n = l->h;
     202        1590 :                 append(nl, n->data); /* split 1, 3 */
     203        1590 :                 if (list_length(l) > 4) {
     204           4 :                         n = n->next;
     205           4 :                         append(nl, n->data); /* split 2, 3 */
     206             :                 }
     207        4059 :                 for(n = n->next; n; n = n->next)
     208        2469 :                         append(nr, n->data);
     209             :                 l = nl;
     210             :                 r = nr;
     211             :         }
     212        8238 :         e->l = l;
     213        8238 :         e->r = r;
     214        8238 :         e->f = f;
     215        8238 :         e->flag = cmp_filter;
     216        8238 :         if (anti)
     217        1674 :                 set_anti(e);
     218        8238 :         if (!have_nil(l) && !have_nil(r))
     219        5079 :                 set_has_no_nil(e);
     220             :         return e;
     221             : }
     222             : 
     223             : sql_exp *
     224       46858 : exp_or(allocator *sa, list *l, list *r, int anti)
     225             : {
     226       46858 :         sql_exp *e = exp_create(sa, e_cmp);
     227             : 
     228       46858 :         if (e == NULL)
     229             :                 return NULL;
     230       46858 :         e->card = MAX(exps_card(l),exps_card(r));
     231       46858 :         e->l = l;
     232       46858 :         e->r = r;
     233       46858 :         e->flag = cmp_or;
     234       46858 :         if (anti)
     235           2 :                 set_anti(e);
     236       46858 :         if (!have_nil(l) && !have_nil(r))
     237       30367 :                 set_has_no_nil(e);
     238             :         return e;
     239             : }
     240             : 
     241             : sql_exp *
     242       29021 : exp_in(allocator *sa, sql_exp *l, list *r, int cmptype)
     243             : {
     244       29021 :         sql_exp *e = exp_create(sa, e_cmp);
     245       29021 :         unsigned int exps_card = CARD_ATOM;
     246             : 
     247       29021 :         if (e == NULL)
     248             :                 return NULL;
     249             : 
     250             :         /* ignore the cardinalites of sub-relations */
     251      139136 :         for (node *n = r->h; n ; n = n->next) {
     252      110115 :                 sql_exp *next = n->data;
     253             : 
     254      110115 :                 if (!exp_is_rel(next) && exps_card < next->card)
     255      110115 :                         exps_card = next->card;
     256             :         }
     257       29021 :         e->card = MAX(l->card, exps_card);
     258       29021 :         e->l = l;
     259       29021 :         e->r = r;
     260       29021 :         assert( cmptype == cmp_in || cmptype == cmp_notin);
     261       29021 :         e->flag = cmptype;
     262       29021 :         if (!has_nil(l) && !have_nil(r))
     263       21869 :                 set_has_no_nil(e);
     264             :         return e;
     265             : }
     266             : 
     267             : sql_exp *
     268       37110 : exp_in_func(mvc *sql, sql_exp *le, sql_exp *vals, int anyequal, int is_tuple)
     269             : {
     270       37110 :         sql_subfunc *a_func = NULL;
     271       37110 :         sql_exp *e = le;
     272             : 
     273       37110 :         if (is_tuple) {
     274        4212 :                 list *l = exp_get_values(e);
     275        4212 :                 e = l->h->data;
     276             :         }
     277       43272 :         if (!(a_func = sql_bind_func(sql, "sys", anyequal ? "sql_anyequal" : "sql_not_anyequal", exp_subtype(e), exp_subtype(e), F_FUNC, true, true)))
     278           0 :                 return sql_error(sql, 02, SQLSTATE(42000) "(NOT) IN operator on type %s missing", exp_subtype(e) ? exp_subtype(e)->type->base.name : "unknown");
     279       37110 :         e = exp_binop(sql->sa, le, vals, a_func);
     280       37110 :         if (e) {
     281       37110 :                 unsigned int exps_card = CARD_ATOM;
     282             : 
     283             :                 /* ignore the cardinalites of sub-relations */
     284       37110 :                 if (vals->type == e_atom && vals->f) {
     285      181503 :                         for (node *n = ((list*)vals->f)->h ; n ; n = n->next) {
     286      144393 :                                 sql_exp *next = n->data;
     287             : 
     288      144393 :                                 if (!exp_is_rel(next) && exps_card < next->card)
     289      144393 :                                         exps_card = next->card;
     290             :                         }
     291           0 :                 } else if (!exp_is_rel(vals))
     292           0 :                         exps_card = vals->card;
     293             : 
     294       37110 :                 e->card = MAX(le->card, exps_card);
     295       37110 :                 if (!has_nil(le) && !has_nil(vals))
     296           0 :                         set_has_no_nil(e);
     297             :         }
     298             :         return e;
     299             : }
     300             : 
     301             : sql_exp *
     302        5658 : exp_in_aggr(mvc *sql, sql_exp *le, sql_exp *vals, int anyequal, int is_tuple)
     303             : {
     304        5658 :         sql_subfunc *a_func = NULL;
     305        5658 :         sql_exp *e = le;
     306             : 
     307        5658 :         if (is_tuple) {
     308           0 :                 list *l = exp_get_values(e);
     309           0 :                 e = l->h->data;
     310             :         }
     311        5667 :         if (!(a_func = sql_bind_func(sql, "sys", anyequal ? "anyequal" : "allnotequal", exp_subtype(e), exp_subtype(e), F_AGGR, true, true)))
     312           0 :                 return sql_error(sql, 02, SQLSTATE(42000) "(NOT) IN operator on type %s missing", exp_subtype(e) ? exp_subtype(e)->type->base.name : "unknown");
     313        5658 :         e = exp_aggr2(sql->sa, le, vals, a_func, need_distinct(e), need_no_nil(e), e->card, has_nil(e));
     314        5658 :         if (e) {
     315        5658 :                 unsigned int exps_card = CARD_ATOM;
     316             : 
     317             :                 /* ignore the cardinalites of sub-relations */
     318        5658 :                 if (vals->type == e_atom && vals->f) {
     319       32016 :                         for (node *n = ((list*)vals->f)->h ; n ; n = n->next) {
     320       26358 :                                 sql_exp *next = n->data;
     321             : 
     322       26358 :                                 if (!exp_is_rel(next) && exps_card < next->card)
     323       26358 :                                         exps_card = next->card;
     324             :                         }
     325           0 :                 } else if (!exp_is_rel(vals))
     326           0 :                         exps_card = vals->card;
     327             : 
     328        5658 :                 e->card = MAX(le->card, exps_card);
     329        5658 :                 if (!has_nil(le) && !has_nil(vals))
     330           0 :                         set_has_no_nil(e);
     331             :         }
     332             :         return e;
     333             : }
     334             : 
     335             : sql_exp *
     336      132217 : exp_compare_func(mvc *sql, sql_exp *le, sql_exp *re, const char *compareop, int quantifier)
     337             : {
     338      132217 :         sql_subfunc *cmp_func = sql_bind_func(sql, "sys", compareop, exp_subtype(le), exp_subtype(le), F_FUNC, true, true);
     339      132217 :         sql_exp *e = NULL;
     340             : 
     341      132217 :         if (cmp_func == NULL)
     342             :                 return NULL;
     343             : 
     344      132217 :         e = exp_binop(sql->sa, le, re, cmp_func);
     345      132217 :         if (e) {
     346      132217 :                 e->flag = quantifier;
     347             :                 /* At ANY and ALL operators, the cardinality on the right side is ignored if it is a sub-relation */
     348      132217 :                 e->card = quantifier && exp_is_rel(re) ? le->card : MAX(le->card, re->card);
     349      132217 :                 if (!has_nil(le) && !has_nil(re))
     350       87353 :                         set_has_no_nil(e);
     351             :         }
     352             :         return e;
     353             : }
     354             : 
     355             : static sql_subtype*
     356      888901 : dup_subtype(allocator *sa, sql_subtype *st)
     357             : {
     358      888901 :         sql_subtype *res = SA_NEW(sa, sql_subtype);
     359             : 
     360      888901 :         if (res == NULL)
     361             :                 return NULL;
     362      888901 :         *res = *st;
     363      888901 :         return res;
     364             : }
     365             : 
     366             : static list *
     367          90 : nested_exps(mvc *sql, sql_subtype *t, sql_alias *p, const char *name)
     368             : {
     369          90 :         sql_alias *atname = name?a_create(sql->sa, name):NULL;
     370          28 :         if (atname)
     371          28 :                 atname->parent = p;
     372          90 :         list *nested = sa_list(sql->sa);
     373          90 :         if (t->type->composite) {
     374         165 :                 for(node *n = t->type->d.fields->h; n; n = n->next) {
     375         111 :                         sql_arg *f = n->data;
     376             : 
     377         111 :             sql_exp *e = exp_alias(sql, atname, f->name, atname, f->name, &f->type, CARD_MULTI, true, false, 1);
     378         111 :                         if (f->type.multiset || f->type.type->composite)
     379          28 :                                 e->f = nested_exps(sql, &f->type, atname, f->name);
     380         111 :                         append(nested, e);
     381             :                 }
     382             :         } else {
     383          36 :         sql_exp *e = exp_alias(sql, atname, MSEL_NAME, atname, MSEL_NAME, t, CARD_MULTI, true, false, 1);
     384          36 :                 append(nested, e);
     385             :         }
     386          90 :         sql_subtype *it = sql_bind_localtype(MSID_TYPENAME);
     387          90 :         if (t->multiset) {
     388          66 :                 sql_exp *e = exp_alias(sql, atname, MSID_NAME, atname, MSID_NAME, it, CARD_MULTI, true, false, 1);
     389          66 :                 set_intern(e);
     390          66 :                 append(nested, e);
     391             :         }
     392          90 :         if (t->multiset == MS_ARRAY) {
     393          66 :                 sql_subtype *it = sql_bind_localtype(MSNR_TYPENAME);
     394          66 :                 sql_exp *e = exp_alias(sql, atname, MSNR_NAME, atname, MSNR_NAME, it, CARD_MULTI, true, false, 1);
     395          66 :                 set_intern(e);
     396          66 :                 append(nested, e);
     397             :         }
     398          90 :         if (t->multiset) {
     399          66 :                 sql_exp *e = exp_alias(sql, atname, "rowid", atname, "rowid", it, CARD_MULTI, true, false, 1);
     400          66 :                 set_intern(e);
     401          66 :                 append(nested, e);
     402             :         }
     403          90 :         return nested;
     404             : }
     405             : 
     406             : sql_exp *
     407      444451 : exp_convert(mvc *sql, sql_exp *exp, sql_subtype *fromtype, sql_subtype *totype )
     408             : {
     409      444451 :         sql_exp *e = exp_create(sql->sa, e_convert);
     410      444451 :         if (e == NULL)
     411             :                 return NULL;
     412      444451 :         e->card = exp->card;
     413      444451 :         e->l = exp;
     414      444451 :         totype = dup_subtype(sql->sa, totype);
     415      444451 :         e->r = append(append(sa_list(sql->sa), dup_subtype(sql->sa, fromtype)),totype);
     416      444450 :         e->tpe = *totype;
     417      444450 :         e->alias = exp->alias;
     418      444450 :         if (e->alias.label)
     419      289163 :                 e->alias.label = -(sql->nid++);
     420      444450 :         if (!has_nil(exp))
     421      174302 :                 set_has_no_nil(e);
     422      444450 :         if (totype->multiset || totype->type->composite) {
     423          62 :                 e->f = nested_exps(sql, totype, NULL, NULL);
     424             :         }
     425             :         return e;
     426             : }
     427             : 
     428             : sql_exp *
     429     1201832 : exp_op( allocator *sa, list *l, sql_subfunc *f )
     430             : {
     431     1201832 :         if (f->func->type == F_FILT)
     432        1590 :                 return exp_filter(sa, l, NULL, f, false);
     433     1200242 :         sql_exp *e = exp_create(sa, e_func);
     434     1200285 :         if (e == NULL)
     435             :                 return NULL;
     436     1200285 :         e->card = exps_card(l);
     437     1200340 :         e->l = l;
     438     1200340 :         e->f = f;
     439     1200340 :         e->semantics = f->func->semantics;
     440     1200340 :         if (!is_semantics(e) && !is_any(e) && l && !have_nil(l))
     441      283930 :                 set_has_no_nil(e);
     442             :         return e;
     443             : }
     444             : 
     445             : sql_exp *
     446       12761 : exp_rank_op( allocator *sa, list *l, list *gbe, list *obe, sql_subfunc *f )
     447             : {
     448       12761 :         sql_exp *e = exp_create(sa, e_func);
     449       12761 :         if (e == NULL)
     450             :                 return NULL;
     451       12761 :         e->card = list_empty(l)?CARD_MULTI:exps_card(l);
     452       12761 :         e->l = l;
     453       12761 :         e->r = append(append(sa_list(sa), gbe), obe);
     454       12761 :         e->f = f;
     455       12761 :         if (!f->func->s && strcmp(f->func->base.name, "count") == 0)
     456         180 :                 set_has_no_nil(e);
     457       12761 :         e->semantics = f->func->semantics;
     458       12761 :         return e;
     459             : }
     460             : 
     461             : sql_exp *
     462       65325 : exp_aggr( allocator *sa, list *l, sql_subfunc *a, int distinct, int no_nils, unsigned int card, int has_nils )
     463             : {
     464       65325 :         sql_exp *e = exp_create(sa, e_aggr);
     465       65325 :         if (e == NULL)
     466             :                 return NULL;
     467       65325 :         e->card = card;
     468       65325 :         e->l = l;
     469       65325 :         e->f = a;
     470       65325 :         e->semantics = a->func->semantics;
     471       65325 :         if (distinct)
     472         374 :                 set_distinct(e);
     473       65325 :         if (no_nils)
     474       28514 :                 set_no_nil(e);
     475       65325 :         if ((!a->func->semantics && !has_nils) || (!a->func->s && strcmp(a->func->base.name, "count") == 0))
     476       26681 :                 set_has_no_nil(e);
     477             :         return e;
     478             : }
     479             : 
     480             : sql_exp *
     481     5208544 : exp_atom(allocator *sa, atom *a)
     482             : {
     483     5208544 :         sql_exp *e = exp_create(sa, e_atom);
     484     5207730 :         if (e == NULL)
     485             :                 return NULL;
     486     5207730 :         e->card = CARD_ATOM;
     487     5207730 :         e->tpe = a->tpe;
     488     5207730 :         e->l = a;
     489     5207730 :         if (!a->isnull)
     490     4923511 :                 set_has_no_nil(e);
     491             :         return e;
     492             : }
     493             : 
     494             : sql_exp *
     495           0 : exp_atom_max(allocator *sa, sql_subtype *tpe)
     496             : {
     497           0 :         if (tpe->type->localtype == TYPE_bte) {
     498           0 :                 return exp_atom_bte(sa, GDK_bte_max);
     499             :         } else if (tpe->type->localtype == TYPE_sht) {
     500           0 :                 return exp_atom_sht(sa, GDK_sht_max);
     501             :         } else if (tpe->type->localtype == TYPE_int) {
     502           0 :                 return exp_atom_int(sa, GDK_int_max);
     503             :         } else if (tpe->type->localtype == TYPE_lng) {
     504           0 :                 return exp_atom_lng(sa, GDK_lng_max);
     505             : #ifdef HAVE_HGE
     506             :         } else if (tpe->type->localtype == TYPE_hge) {
     507           0 :                 return exp_atom_hge(sa, GDK_hge_max);
     508             : #endif
     509             :         }
     510             :         return NULL;
     511             : }
     512             : 
     513             : sql_exp *
     514      156614 : exp_atom_bool(allocator *sa, int b)
     515             : {
     516      156614 :         sql_subtype bt;
     517             : 
     518      156614 :         sql_find_subtype(&bt, "boolean", 0, 0);
     519      156652 :         if (b)
     520       99965 :                 return exp_atom(sa, atom_bool(sa, &bt, TRUE ));
     521             :         else
     522       56687 :                 return exp_atom(sa, atom_bool(sa, &bt, FALSE ));
     523             : }
     524             : 
     525             : sql_exp *
     526           0 : exp_atom_bte(allocator *sa, bte i)
     527             : {
     528           0 :         sql_subtype it;
     529             : 
     530           0 :         sql_find_subtype(&it, "tinyint", 3, 0);
     531           0 :         return exp_atom(sa, atom_int(sa, &it, i ));
     532             : }
     533             : 
     534             : sql_exp *
     535           0 : exp_atom_sht(allocator *sa, sht i)
     536             : {
     537           0 :         sql_subtype it;
     538             : 
     539           0 :         sql_find_subtype(&it, "smallint", 5, 0);
     540           0 :         return exp_atom(sa, atom_int(sa, &it, i ));
     541             : }
     542             : 
     543             : sql_exp *
     544      880578 : exp_atom_int(allocator *sa, int i)
     545             : {
     546      880578 :         sql_subtype it;
     547             : 
     548      880578 :         sql_find_subtype(&it, "int", 9, 0);
     549      880685 :         return exp_atom(sa, atom_int(sa, &it, i ));
     550             : }
     551             : 
     552             : sql_exp *
     553       16576 : exp_atom_lng(allocator *sa, lng i)
     554             : {
     555       16576 :         sql_subtype it;
     556             : 
     557             : #ifdef HAVE_HGE
     558       16576 :         sql_find_subtype(&it, "bigint", 18, 0);
     559             : #else
     560             :         sql_find_subtype(&it, "bigint", 19, 0);
     561             : #endif
     562       16587 :         return exp_atom(sa, atom_int(sa, &it, i ));
     563             : }
     564             : 
     565             : sql_exp *
     566        4598 : exp_atom_oid(allocator *sa, oid i)
     567             : {
     568        4598 :         sql_subtype it;
     569             : 
     570             : #if SIZEOF_OID == SIZEOF_INT
     571             :         sql_find_subtype(&it, "oid", 31, 0);
     572             : #else
     573        4598 :         sql_find_subtype(&it, "oid", 63, 0);
     574             : #endif
     575        4598 :         return exp_atom(sa, atom_int(sa, &it, i ));
     576             : }
     577             : 
     578             : #ifdef HAVE_HGE
     579             : sql_exp *
     580           1 : exp_atom_hge(allocator *sa, hge i)
     581             : {
     582           1 :         sql_subtype it;
     583             : 
     584           1 :         sql_find_subtype(&it, "hugeint", 39, 0);
     585           1 :         return exp_atom(sa, atom_int(sa, &it, i ));
     586             : }
     587             : #endif
     588             : 
     589             : sql_exp *
     590           0 : exp_atom_flt(allocator *sa, flt f)
     591             : {
     592           0 :         sql_subtype it;
     593             : 
     594           0 :         sql_find_subtype(&it, "real", 24, 0);
     595           0 :         return exp_atom(sa, atom_float(sa, &it, (dbl)f ));
     596             : }
     597             : 
     598             : sql_exp *
     599           0 : exp_atom_dbl(allocator *sa, dbl f)
     600             : {
     601           0 :         sql_subtype it;
     602             : 
     603           0 :         sql_find_subtype(&it, "double", 53, 0);
     604           0 :         return exp_atom(sa, atom_float(sa, &it, (dbl)f ));
     605             : }
     606             : 
     607             : sql_exp *
     608       87008 : exp_atom_str(allocator *sa, const char *s, sql_subtype *st)
     609             : {
     610      169385 :         return exp_atom(sa, atom_string(sa, st, s?sa_strdup(sa, s):NULL));
     611             : }
     612             : 
     613             : sql_exp *
     614      766664 : exp_atom_clob(allocator *sa, const char *s)
     615             : {
     616      766664 :         sql_subtype clob;
     617             : 
     618      766664 :         sql_find_subtype(&clob, "varchar", 0, 0);
     619     1531721 :         return exp_atom(sa, atom_string(sa, &clob, s?sa_strdup(sa, s):NULL));
     620             : }
     621             : 
     622             : sql_exp *
     623      276064 : exp_atom_ptr(allocator *sa, void *s)
     624             : {
     625      276064 :         sql_subtype *t = sql_bind_localtype("ptr");
     626      276065 :         return exp_atom(sa, atom_ptr(sa, t, s));
     627             : }
     628             : 
     629             : sql_exp *
     630        2159 : exp_atom_ref(allocator *sa, int i, sql_subtype *tpe)
     631             : {
     632        2159 :         sql_exp *e = exp_create(sa, e_atom);
     633        2159 :         if (e == NULL)
     634             :                 return NULL;
     635        2159 :         e->card = CARD_ATOM;
     636        2159 :         e->flag = i;
     637        2159 :         if (tpe)
     638        2159 :                 e->tpe = *tpe;
     639             :         return e;
     640             : }
     641             : 
     642             : sql_exp *
     643      112399 : exp_null(allocator *sa, sql_subtype *tpe)
     644             : {
     645      112399 :         atom *a = atom_general(sa, tpe, NULL, 0);
     646      112399 :         return exp_atom(sa, a);
     647             : }
     648             : 
     649             : sql_exp *
     650           2 : exp_zero(allocator *sa, sql_subtype *tpe)
     651             : {
     652           2 :         atom *a = atom_zero_value(sa, tpe);
     653           2 :         return exp_atom(sa, a);
     654             : }
     655             : 
     656             : atom *
     657         385 : exp_value(mvc *sql, sql_exp *e)
     658             : {
     659         385 :         if (!e || e->type != e_atom)
     660             :                 return NULL;
     661         380 :         if (e->l) { /* literal */
     662             :                 return e->l;
     663           0 :         } else if (e->r) { /* param (ie not set) */
     664           0 :                 sql_var_name *vname = (sql_var_name*) e->r;
     665             : 
     666           0 :                 assert(e->flag != 0 || vname->sname); /* global variables must have a schema */
     667           0 :                 sql_var *var = e->flag == 0 ? find_global_var(sql, mvc_bind_schema(sql, vname->sname), vname->name) :
     668           0 :                                                                           stack_find_var_at_level(sql, vname->name, e->flag);
     669           0 :                 if (var)
     670           0 :                         return &(var->var);
     671             :         }
     672             :         return NULL;
     673             : }
     674             : 
     675             : sql_exp *
     676      126554 : exp_param_or_declared(allocator *sa, const char *sname, const char *name, sql_subtype *tpe, int frame)
     677             : {
     678      126554 :         sql_var_name *vname;
     679      126554 :         sql_exp *e = exp_create(sa, e_atom);
     680      126554 :         if (e == NULL)
     681             :                 return NULL;
     682             : 
     683      126554 :         e->r = sa_alloc(sa, sizeof(sql_var_name));
     684      126554 :         vname = (sql_var_name*) e->r;
     685      126554 :         vname->sname = sname;
     686      126554 :         vname->name = name;
     687      126554 :         e->card = CARD_ATOM;
     688      126554 :         e->flag = frame;
     689      126554 :         if (tpe)
     690      126554 :                 e->tpe = *tpe;
     691             :         return e;
     692             : }
     693             : 
     694             : sql_exp *
     695      216595 : exp_values(allocator *sa, list *exps)
     696             : {
     697      216595 :         sql_exp *e = exp_create(sa, e_atom);
     698      216666 :         if (e == NULL)
     699             :                 return NULL;
     700      216666 :         e->card = exps_card(exps);
     701      216821 :         e->f = exps;
     702      216821 :         return e;
     703             : }
     704             : 
     705             : list *
     706      308155 : exp_get_values(sql_exp *e)
     707             : {
     708      308155 :         if (is_atom(e->type) && e->f)
     709             :                 return e->f;
     710             :         return NULL;
     711             : }
     712             : 
     713             : list *
     714       50261 : exp_types(allocator *sa, list *exps)
     715             : {
     716       50261 :         list *l = sa_list(sa);
     717             : 
     718       50261 :         if (exps)
     719      102441 :                 for (node *n = exps->h; n; n = n->next)
     720       52180 :                         list_append(l, exp_subtype(n->data));
     721       50261 :         return l;
     722             : }
     723             : 
     724             : int
     725     1091934 : have_nil(list *exps)
     726             : {
     727     1091934 :         int has_nil = 0;
     728             : 
     729     1091934 :         if (exps)
     730     2764600 :                 for (node *n = exps->h; n && !has_nil; n = n->next) {
     731     1672666 :                         sql_exp *e = n->data;
     732     1672666 :                         has_nil |= has_nil(e);
     733             :                 }
     734     1091934 :         return has_nil;
     735             : }
     736             : 
     737             : int
     738         226 : have_semantics(list *exps)
     739             : {
     740         226 :         int has_semantics = 0;
     741             : 
     742         226 :         if (exps)
     743          65 :                 for (node *n = exps->h; n && !has_semantics; n = n->next) {
     744          33 :                         sql_exp *e = n->data;
     745          66 :                         has_semantics |= is_compare(e->type) && is_semantics(e);
     746             :                 }
     747         226 :         return has_semantics;
     748             : }
     749             : 
     750             : sql_exp *
     751     7106269 : exp_column(allocator *sa, sql_alias *parent, const char *cname, sql_subtype *t, unsigned int card, int has_nils, int unique, int intern)
     752             : {
     753     7106269 :         sql_exp *e = exp_create(sa, e_column);
     754             : 
     755     7106276 :         if (e == NULL)
     756             :                 return NULL;
     757     7106276 :         assert(cname);
     758     7106276 :         e->card = card;
     759     7106276 :         e->alias.name = cname;
     760     7106276 :         e->alias.parent = parent;
     761     7106276 :         e->r = (char*)e->alias.name;
     762     7106276 :         e->l = e->alias.parent;
     763     7106276 :         if (t)
     764     7105876 :                 e->tpe = *t;
     765     7106276 :         if (!has_nils)
     766     1951591 :                 set_has_no_nil(e);
     767     7106276 :         if (unique)
     768      942493 :                 set_unique(e);
     769     7106276 :         if (intern)
     770      603745 :                 set_intern(e);
     771             :         return e;
     772             : }
     773             : 
     774             : sql_exp *
     775    10127785 : exp_propagate(allocator *sa, sql_exp *ne, sql_exp *oe)
     776             : {
     777    10127785 :         if (has_label(oe) &&
     778      510931 :            (oe->alias.parent == ne->alias.parent || (oe->alias.parent && ne->alias.parent && a_match(oe->alias.parent, ne->alias.parent))) &&
     779      498578 :            (oe->alias.name == ne->alias.name || (oe->alias.name && ne->alias.name && strcmp(oe->alias.name, ne->alias.name) == 0)))
     780      498578 :                 ne->alias.label = oe->alias.label;
     781    10127785 :         if (is_intern(oe))
     782      307222 :                 set_intern(ne);
     783    10127785 :         if (is_anti(oe))
     784        3255 :                 set_anti(ne);
     785    10127785 :         if (is_semantics(oe))
     786      659899 :                 set_semantics(ne);
     787    10127785 :         if (is_any(oe))
     788          34 :                 set_any(ne);
     789    10127785 :         if (is_symmetric(oe))
     790          13 :                 set_symmetric(ne);
     791    10127785 :         if (is_partitioning(oe))
     792        1525 :                 set_partitioning(ne);
     793    10127785 :         if (is_ascending(oe))
     794        8938 :                 set_ascending(ne);
     795    10127785 :         if (nulls_last(oe))
     796        1818 :                 set_nulls_last(ne);
     797    10127785 :         if (need_distinct(oe))
     798         628 :                 set_distinct(ne);
     799    10127785 :         if (zero_if_empty(oe))
     800           0 :                 set_zero_if_empty(ne);
     801    10127785 :         if (need_no_nil(oe))
     802       97085 :                 set_no_nil(ne);
     803    10127785 :         if (!has_nil(oe))
     804     6010159 :                 set_has_no_nil(ne);
     805    10127785 :         if (has_nil(oe))
     806     4117626 :                 set_has_nil(ne);
     807    10127785 :         if (is_unique(oe))
     808     1138829 :                 set_unique(ne);
     809    10127785 :         if (is_basecol(oe))
     810     8275512 :                 set_basecol(ne);
     811    10127785 :         if (oe->virt)
     812           0 :                 ne->virt = 1;
     813    10127785 :         ne->p = prop_copy(sa, oe->p);
     814    10127791 :         return ne;
     815             : }
     816             : 
     817             : static sql_exp *
     818     6762878 : exp_ref_by_label(mvc *sql, sql_exp *o)
     819             : {
     820     6762878 :         allocator *sa = sql->sa;
     821     6762878 :         sql_exp *e = exp_create(sa, e_column);
     822             : 
     823     6762888 :         if (e == NULL)
     824             :                 return NULL;
     825     6762888 :         e->card = o->card;
     826     6762888 :         e->alias = o->alias;
     827     6762888 :         assert(e->alias.label);
     828     6762888 :         e->r = (char*)e->alias.name;
     829     6762888 :         e->l = e->alias.parent;
     830     6762888 :         e->nid = o->alias.label;
     831     6762888 :         assert(e->nid);
     832     6762888 :         sql_subtype *t = exp_subtype(o);
     833     6762884 :         if (t)
     834     6762744 :                 e->tpe = *t;
     835     6762884 :         if (!has_nil(o))
     836     4199540 :                 set_has_no_nil(e);
     837     6762884 :         if (has_nil(o))
     838     2563348 :                 set_has_nil(e);
     839     6762884 :         if (is_unique(o))
     840      903715 :                 set_unique(e);
     841     6762884 :         if (is_intern(o))
     842      273059 :                 set_intern(e);
     843     6762884 :         if (o->virt)
     844           0 :                 e->virt = 1;
     845     6762884 :         if ((o->type == e_column || o->type == e_convert) && o->f)
     846         118 :                 e->f = o->f;
     847     6762884 :         return exp_propagate(sa, e, o);
     848             : }
     849             : 
     850             : sql_exp *
     851     6762877 : exp_ref(mvc *sql, sql_exp *e)
     852             : {
     853     6762877 :         if (!has_label(e) && !exp_name(e))
     854        2297 :                 exp_label(sql->sa, e, ++sql->label);
     855     6762878 :         if (e->alias.label)
     856     6762878 :                 return exp_ref_by_label(sql, e);
     857           0 :         sql_exp *ne = exp_propagate(sql->sa, exp_column(sql->sa, exp_relname(e), exp_name(e), exp_subtype(e), exp_card(e), has_nil(e), is_unique(e), is_intern(e)), e);
     858           0 :         if (ne) {
     859           0 :                 ne->nid = e->alias.label;
     860           0 :                 assert(ne->nid);
     861           0 :                 assert(!ne->nid || ne->alias.name);
     862           0 :                 ne->alias.label = ne->nid;
     863             :         }
     864             :         return ne;
     865             : }
     866             : 
     867             : sql_exp *
     868        3923 : exp_ref_save(mvc *sql, sql_exp *e)
     869             : {
     870        3923 :         if (e->type == e_column)
     871             :                 return e;
     872        2122 :         if (is_atom(e->type))
     873        1119 :                 return exp_copy(sql, e);
     874        1003 :         if (!e->alias.label || !exp_name(e))
     875           8 :                 exp_label(sql->sa, e, ++sql->label);
     876        1003 :         if (e->type != e_column) /* ref as referenced within the (same) rank expression */
     877        1003 :                 e->ref = 1;
     878        1003 :         sql_exp *ne = exp_ref(sql, e);
     879        1003 :         if (ne && is_freevar(e))
     880           0 :                 set_freevar(ne, is_freevar(e)-1);
     881             :         return ne;
     882             : }
     883             : 
     884             : sql_exp *
     885     2264564 : exp_alias(mvc *sql, sql_alias *arname, const char *acname, sql_alias *org_rname, const char *org_cname, sql_subtype *t, unsigned int card, int has_nils, int unique, int intern)
     886             : {
     887     2264564 :         sql_exp *e = exp_column(sql->sa, org_rname, org_cname, t, card, has_nils, unique, intern);
     888             : 
     889     2264657 :         if (e == NULL)
     890             :                 return NULL;
     891     2264657 :         assert(acname && org_cname);
     892     2264657 :         exp_setname(sql, e, arname?arname:org_rname, acname);
     893     2264657 :         return e;
     894             : }
     895             : 
     896             : sql_exp *
     897           2 : exp_alias_ref(mvc *sql, sql_exp *e)
     898             : {
     899           2 :         sql_alias *tname = exp_relname(e);
     900           2 :         const char *cname = exp_name(e);
     901             : 
     902           2 :         if (!has_label(e))
     903           2 :                 exp_label(sql->sa, e, ++sql->label);
     904           2 :         sql_exp *ne = exp_ref(sql, e);
     905           2 :         if (ne == NULL)
     906             :                 return NULL;
     907           2 :         exp_setname(sql, ne, tname, cname);
     908           2 :         return ne;
     909             : }
     910             : 
     911             : sql_exp *
     912       16416 : exp_set(allocator *sa, const char *sname, const char *name, sql_exp *val, int level)
     913             : {
     914       16416 :         sql_exp *e = exp_create(sa, e_psm);
     915             : 
     916       16416 :         if (e == NULL)
     917             :                 return NULL;
     918       16416 :         e->alias.parent = sname?a_create(sa, sname):NULL;
     919       16416 :         e->alias.name = name;
     920       16416 :         e->l = val;
     921       16416 :         e->flag = PSM_SET + SET_PSM_LEVEL(level);
     922       16416 :         return e;
     923             : }
     924             : 
     925             : sql_exp *
     926        9657 : exp_var(allocator *sa, const char *sname, const char *name, sql_subtype *type, int level)
     927             : {
     928        9657 :         sql_exp *e = exp_create(sa, e_psm);
     929             : 
     930        9657 :         if (e == NULL)
     931             :                 return NULL;
     932        9657 :         e->alias.parent = sname?a_create(sa, sname):NULL;
     933        9657 :         e->alias.name = name;
     934        9657 :         e->tpe = *type;
     935        9657 :         e->flag = PSM_VAR + SET_PSM_LEVEL(level);
     936        9657 :         return e;
     937             : }
     938             : 
     939             : sql_exp *
     940         119 : exp_table(allocator *sa, const char *name, sql_table *t, int level)
     941             : {
     942         119 :         sql_exp *e = exp_create(sa, e_psm);
     943             : 
     944         119 :         if (e == NULL)
     945             :                 return NULL;
     946         119 :         e->alias.parent = NULL;
     947         119 :         e->alias.name = name;
     948         119 :         e->f = t;
     949         119 :         e->flag = PSM_VAR + SET_PSM_LEVEL(level);
     950         119 :         return e;
     951             : }
     952             : 
     953             : sql_exp *
     954       24730 : exp_return(allocator *sa, sql_exp *val, int level)
     955             : {
     956       24730 :         sql_exp *e = exp_create(sa, e_psm);
     957             : 
     958       24730 :         if (e == NULL)
     959             :                 return NULL;
     960       24730 :         e->l = val;
     961       24730 :         e->flag = PSM_RETURN + SET_PSM_LEVEL(level);
     962       24730 :         return e;
     963             : }
     964             : 
     965             : sql_exp *
     966        1035 : exp_while(allocator *sa, sql_exp *cond, list *stmts)
     967             : {
     968        1035 :         sql_exp *e = exp_create(sa, e_psm);
     969             : 
     970        1035 :         if (e == NULL)
     971             :                 return NULL;
     972        1035 :         e->l = cond;
     973        1035 :         e->r = stmts;
     974        1035 :         e->flag = PSM_WHILE;
     975        1035 :         return e;
     976             : }
     977             : 
     978             : sql_exp *
     979       11885 : exp_if(allocator *sa, sql_exp *cond, list *if_stmts, list *else_stmts)
     980             : {
     981       11885 :         sql_exp *e = exp_create(sa, e_psm);
     982             : 
     983       11885 :         if (e == NULL)
     984             :                 return NULL;
     985       11885 :         e->l = cond;
     986       11885 :         e->r = if_stmts;
     987       11885 :         e->f = else_stmts;
     988       11885 :         e->flag = PSM_IF;
     989       11885 :         return e;
     990             : }
     991             : 
     992             : sql_exp *
     993       82534 : exp_rel(mvc *sql, sql_rel *rel)
     994             : {
     995       82534 :         sql_exp *e = exp_create(sql->sa, e_psm);
     996             : 
     997       82534 :         if (e == NULL)
     998             :                 return NULL;
     999       82534 :         e->l = rel;
    1000       82534 :         e->flag = PSM_REL;
    1001       82534 :         e->card = is_single(rel)?CARD_ATOM:rel->card;
    1002       82534 :         assert(rel);
    1003       82534 :         if (is_topn(rel->op))
    1004           4 :                 rel = rel->l;
    1005       82534 :         if (is_project(rel->op)) {
    1006       63049 :                 sql_exp *last = rel->exps->t->data;
    1007       63049 :                 sql_subtype *t = exp_subtype(last);
    1008       63049 :                 e->tpe = t ? *t : (sql_subtype) {0};
    1009             :         }
    1010             :         return e;
    1011             : }
    1012             : 
    1013             : sql_exp *
    1014         157 : exp_exception(allocator *sa, sql_exp *cond, const char *error_message)
    1015             : {
    1016         157 :         sql_exp *e = exp_create(sa, e_psm);
    1017             : 
    1018         157 :         if (e == NULL)
    1019             :                 return NULL;
    1020         157 :         e->l = cond;
    1021         157 :         e->r = sa_strdup(sa, error_message);
    1022         157 :         e->flag = PSM_EXCEPTION;
    1023         157 :         return e;
    1024             : }
    1025             : 
    1026             : static void
    1027           0 : exps_setname(mvc *sql, list *exps, sql_alias *p, const char *name)
    1028             : {
    1029           0 :         sql_alias *ta = a_create(sql->sa, name);
    1030           0 :         ta->parent = p;
    1031           0 :         if (!list_empty(exps)) {
    1032           0 :                 for(node *n = exps->h; n; n = n->next) {
    1033           0 :                         sql_exp *e = n->data;
    1034           0 :                         exp_setname(sql, e, ta, exp_name(e));
    1035             :                 }
    1036             :         }
    1037           0 : }
    1038             : 
    1039             : /* Set a name (alias) for the expression, such that we can refer
    1040             :    to this expression by this simple name.
    1041             :  */
    1042             : void
    1043     3843839 : exp_setname(mvc *sql, sql_exp *e, sql_alias *p, const char *name )
    1044             : {
    1045     3843839 :         assert(name || p);
    1046     3843839 :         e->alias.label = -(sql->nid++);
    1047             :         //e->alias.label = 0;
    1048     3843839 :         if (name)
    1049     3684884 :                 e->alias.name = name;
    1050     3843839 :         e->alias.parent = p;
    1051     3843839 :         if (is_nested(e))
    1052           0 :                 exps_setname(sql, e->f, p, name);
    1053     3843839 : }
    1054             : 
    1055             : void
    1056      159083 : noninternexp_setname(mvc *sql, sql_exp *e, sql_alias *rname, const char *name )
    1057             : {
    1058      159083 :         if (!is_intern(e))
    1059      159081 :                 exp_setname(sql, e, rname, name);
    1060      159083 : }
    1061             : 
    1062             : void
    1063      114697 : noninternexp_settname(mvc *sql, sql_exp *e, sql_alias *rname)
    1064             : {
    1065      114697 :         char *name = NULL;
    1066             : 
    1067      114697 :         if (!e->alias.label && e->type == e_psm && e->l) {
    1068           5 :                 sql_rel *r = e->l;
    1069           5 :                 if (is_project(r->op)) {
    1070           5 :                         sql_exp *ie = r->exps->t->data;
    1071           5 :                         e->alias = ie->alias;
    1072           5 :                         e->alias.parent = rname;
    1073           5 :                         return;
    1074             :                 }
    1075             :         }
    1076      114692 :         if (!exp_name(e))
    1077         109 :                 name = make_label(sql->sa, ++sql->label);
    1078      114692 :         noninternexp_setname(sql, e, rname, name);
    1079             : }
    1080             : 
    1081             : void
    1082      697491 : exp_setalias(sql_exp *e, int label, sql_alias *p, const char *name )
    1083             : {
    1084      697491 :         e->alias.label = label;
    1085      697491 :         assert(e->alias.label);
    1086      697491 :         e->alias.name = name;
    1087      697491 :         e->alias.parent = p;
    1088      697491 : }
    1089             : 
    1090             : void
    1091     4269211 : exp_prop_alias(allocator *sa, sql_exp *e, sql_exp *oe )
    1092             : {
    1093     4269211 :         e->ref = oe->ref;
    1094     4269211 :         if (oe->alias.name == NULL && exp_has_rel(oe)) {
    1095        8180 :                 sql_rel *r = exp_rel_get_rel(sa, oe);
    1096        8180 :                 if (!is_project(r->op))
    1097             :                         return ;
    1098        8180 :                 oe = r->exps->t->data;
    1099             :         }
    1100     4269211 :         e->alias = oe->alias;
    1101             : }
    1102             : 
    1103             : str
    1104     2155578 : number2name(str s, int len, int i)
    1105             : {
    1106     2155578 :         s[--len] = 0;
    1107     6490271 :         while(i>0) {
    1108     4334693 :                 s[--len] = '0' + (i & 7);
    1109     4334693 :                 i >>= 3;
    1110             :         }
    1111     2155578 :         s[--len] = '%';
    1112     2155578 :         return s + len;
    1113             : }
    1114             : 
    1115             : void
    1116           0 : exp_setrelname(allocator *sa, sql_exp *e, int nr)
    1117             : {
    1118           0 :         char name[16], *nme;
    1119             : 
    1120           0 :         nme = number2name(name, sizeof(name), nr);
    1121           0 :         e->alias.label = 0;
    1122           0 :         e->alias.parent = a_create(sa, sa_strdup(sa, nme));
    1123           0 : }
    1124             : 
    1125             : char *
    1126     2093805 : make_label(allocator *sa, int nr)
    1127             : {
    1128     2093805 :         char name[16], *nme;
    1129             : 
    1130     2093805 :         nme = number2name(name, sizeof(name), nr);
    1131     2094372 :         return sa_strdup(sa, nme);
    1132             : }
    1133             : 
    1134             : sql_exp*
    1135     2083888 : exp_label(allocator *sa, sql_exp *e, int nr)
    1136             : {
    1137     2083888 :         assert(nr > 0);
    1138             :         //assert (e->alias.label == 0);
    1139     2083888 :         e->alias.label = nr;
    1140     2083888 :         e->alias.name = make_label(sa, nr);
    1141     2085312 :         e->alias.parent = a_create(sa, e->alias.name);
    1142     2084669 :         return e;
    1143             : }
    1144             : 
    1145             : list*
    1146       55193 : exps_label(mvc *sql, list *exps)
    1147             : {
    1148       55193 :         if (!exps)
    1149             :                 return NULL;
    1150             : 
    1151       55193 :         int nr = sql->label+1;
    1152       55193 :         sql->label += list_length(exps);
    1153      126411 :         for (node *n = exps->h; n; n = n->next)
    1154       71218 :                 n->data = exp_label(sql->sa, n->data, nr++);
    1155       55193 :         list_hash_clear(exps);
    1156       55193 :         return exps;
    1157             : }
    1158             : 
    1159             : void
    1160       21254 : exp_swap( sql_exp *e )
    1161             : {
    1162       21254 :         sql_exp *s = e->l;
    1163             : 
    1164       21254 :         e->l = e->r;
    1165       21254 :         e->r = s;
    1166       21254 :         e->flag = swap_compare((comp_type)e->flag);
    1167       21254 :         assert(!e->f);
    1168       21254 : }
    1169             : 
    1170             : sql_subtype *
    1171    34746317 : exp_subtype( sql_exp *e )
    1172             : {
    1173    34748369 :         switch(e->type) {
    1174     8355997 :         case e_atom: {
    1175     8355997 :                 if (e->l) {
    1176     7506087 :                         atom *a = e->l;
    1177     7506087 :                         return atom_type(a);
    1178      849910 :                 } else if (e->tpe.type) { /* atom reference */
    1179      846066 :                         return &e->tpe;
    1180        3844 :                 } else if (e->f) {
    1181        2052 :                         list *vals = exp_get_values(e);
    1182        2052 :                         if (!list_empty(vals))
    1183        2052 :                                 return exp_subtype(vals->h->data);
    1184             :                 }
    1185             :                 break;
    1186             :         }
    1187    21609017 :         case e_convert:
    1188             :         case e_column:
    1189    21609017 :                 if (e->tpe.type)
    1190    21608883 :                         return &e->tpe;
    1191             :                 break;
    1192     4648858 :         case e_aggr:
    1193             :         case e_func: {
    1194     4648858 :                 if (e->f) {
    1195     4648858 :                         sql_subfunc *f = e->f;
    1196     4648858 :                         if (f->res && list_length(f->res) == 1)
    1197     4605497 :                                 return f->res->h->data;
    1198             :                 }
    1199             :                 return NULL;
    1200             :         }
    1201        7471 :         case e_cmp:
    1202        7471 :                 return sql_bind_localtype("bit");
    1203      127026 :         case e_psm:
    1204      127026 :                 if (e->tpe.type)
    1205      127011 :                         return &e->tpe;
    1206             :                 /* fall through */
    1207             :         default:
    1208             :                 return NULL;
    1209             :         }
    1210             :         return NULL;
    1211             : }
    1212             : 
    1213             : const char *
    1214    35223759 : exp_name( sql_exp *e )
    1215             : {
    1216    35238190 :         if (e->alias.name)
    1217             :                 return e->alias.name;
    1218     1643962 :         if (e->type == e_convert && e->l)
    1219             :                 return exp_name(e->l);
    1220     1639894 :         if (e->type == e_psm && e->l) { /* subquery return name of last expression */
    1221       10363 :                 sql_rel *r = e->l;
    1222       10363 :                 if (is_project(r->op))
    1223       10363 :                         return exp_name(r->exps->t->data);
    1224             :         }
    1225             :         return NULL;
    1226             : }
    1227             : 
    1228             : sql_alias *
    1229     4023586 : exp_relname( sql_exp *e )
    1230             : {
    1231     4023597 :         if (e->alias.parent)
    1232             :                 return a_parent(&e->alias);
    1233      478657 :         if (!e->alias.name && e->type == e_convert && e->l)
    1234             :                 return exp_relname(e->l);
    1235      478646 :         if (!e->alias.name && e->type == e_psm && e->l) { /* subquery return name of last expression */
    1236           0 :                 sql_rel *r = e->l;
    1237           0 :                 if (is_project(r->op))
    1238           0 :                         return exp_relname(r->exps->t->data);
    1239             :         }
    1240             :         return NULL;
    1241             : }
    1242             : 
    1243             : sql_alias *
    1244       17064 : exp_find_rel_name(sql_exp *e)
    1245             : {
    1246       17064 :         if (e->alias.parent)
    1247             :                 return e->alias.parent;
    1248         555 :         switch(e->type) {
    1249             :         case e_column:
    1250             :                 break;
    1251           0 :         case e_convert:
    1252           0 :                 return exp_find_rel_name(e->l);
    1253             :         default:
    1254             :                 return NULL;
    1255             :         }
    1256             :         return NULL;
    1257             : }
    1258             : 
    1259             : unsigned int
    1260     1001748 : exp_card( sql_exp *e )
    1261             : {
    1262     1001748 :         return e->card;
    1263             : }
    1264             : 
    1265             : unsigned int
    1266     1674751 : exp_get_label( sql_exp *e )
    1267             : {
    1268     1674762 :         if (e->alias.label)
    1269     1674751 :                 return e->alias.label;
    1270          11 :         if (e->type == e_convert && e->l)
    1271             :                 return exp_get_label(e->l);
    1272           0 :         if (e->type == e_psm && e->l) { /* subquery return name of last expression */
    1273           0 :                 sql_rel *r = e->l;
    1274           0 :                 if (is_project(r->op))
    1275           0 :                         return exp_get_label(r->exps->t->data);
    1276             :         }
    1277             :         return 0;
    1278             : }
    1279             : 
    1280             : 
    1281             : const char *
    1282           0 : exp_func_name( sql_exp *e )
    1283             : {
    1284           0 :         if (e->type == e_func && e->f) {
    1285           0 :                 sql_subfunc *f = e->f;
    1286           0 :                 return f->func->base.name;
    1287             :         }
    1288           0 :         if (e->alias.name)
    1289             :                 return e->alias.name;
    1290           0 :         if (e->type == e_convert && e->l)
    1291           0 :                 return exp_name(e->l);
    1292             :         return NULL;
    1293             : }
    1294             : 
    1295             : int
    1296    45058598 : exp_cmp( sql_exp *e1, sql_exp *e2)
    1297             : {
    1298    45058598 :         return (e1 == e2)?0:-1;
    1299             : }
    1300             : 
    1301             : int
    1302      318369 : exp_equal( sql_exp *e1, sql_exp *e2)
    1303             : {
    1304      318369 :         if (e1 == e2)
    1305             :                 return 0;
    1306      318369 :         if (e1->alias.label && e1->alias.label == e2->alias.label)
    1307        8675 :                 return 0;
    1308             :         return -1;
    1309             : }
    1310             : 
    1311             : int
    1312       25790 : is_conflict( sql_exp *e1, sql_exp *e2)
    1313             : {
    1314       25790 :         if (e1->alias.label && e1->alias.label == e2->alias.label &&
    1315        2731 :                 e1->nid && e1->nid != e2->nid)
    1316           3 :                 return 0;
    1317             :         return -1;
    1318             : }
    1319             : 
    1320             : int
    1321    45058478 : exp_match( sql_exp *e1, sql_exp *e2)
    1322             : {
    1323    45058478 :         if (exp_cmp(e1, e2) == 0)
    1324             :                 return 1;
    1325    44814782 :         if (e1->type == e2->type && e1->type == e_column) {
    1326    20424652 :                 if (e1->nid && e1->nid == e2->nid)
    1327             :                         return 1;
    1328    19170036 :                 if (e1->alias.label != e2->alias.label || !e1->alias.label || !e2->alias.label)
    1329             :                         return 0;
    1330             :                 return 1;
    1331             :         }
    1332    24390130 :         if (e1->type == e2->type && e1->type == e_func) {
    1333     8710851 :                 if (is_identity(e1, NULL) && is_identity(e2, NULL)) {
    1334           0 :                         list *args1 = e1->l;
    1335           0 :                         list *args2 = e2->l;
    1336             : 
    1337           0 :                         if (list_length(args1) == list_length(args2) && list_length(args1) == 1) {
    1338           0 :                                 sql_exp *ne1 = args1->h->data;
    1339           0 :                                 sql_exp *ne2 = args2->h->data;
    1340             : 
    1341           0 :                                 if (exp_match(ne1,ne2))
    1342             :                                         return 1;
    1343             :                         }
    1344             :                 }
    1345             :         }
    1346             :         return 0;
    1347             : }
    1348             : 
    1349             : /* list already contains matching expression */
    1350             : sql_exp*
    1351      182086 : exps_find_exp( list *l, sql_exp *e)
    1352             : {
    1353      182086 :         node *n;
    1354             : 
    1355      182086 :         if (!l || !l->h)
    1356             :                 return NULL;
    1357             : 
    1358      419212 :         for(n=l->h; n; n = n->next) {
    1359      368377 :                 if (exp_match(n->data, e) || exp_refers(n->data, e))
    1360      112699 :                         return n->data;
    1361             :         }
    1362             :         return NULL;
    1363             : }
    1364             : 
    1365             : /* c refers to the parent p */
    1366             : int
    1367     3556224 : exp_refers( sql_exp *p, sql_exp *c)
    1368             : {
    1369     3556224 :         if (c->type == e_column && c->nid)
    1370      358511 :                 return c->nid == p->alias.label;
    1371             :         return 0;
    1372             : }
    1373             : 
    1374             : sql_exp*
    1375         216 : exps_refers(sql_exp *p, list *l)
    1376             : {
    1377         216 :         node *n;
    1378             : 
    1379         216 :         if (!l || !l->h)
    1380             :                 return NULL;
    1381             : 
    1382         528 :         for(n=l->h; n; n = n->next) {
    1383         316 :                 if (exp_refers(p, n->data))
    1384           4 :                         return n->data;
    1385             :         }
    1386             :         return NULL;
    1387             : }
    1388             : 
    1389             : int
    1390           0 : exp_match_col_exps( sql_exp *e, list *l)
    1391             : {
    1392           0 :         node *n;
    1393             : 
    1394           0 :         for(n=l->h; n; n = n->next) {
    1395           0 :                 sql_exp *re = n->data;
    1396           0 :                 sql_exp *re_r = re->r;
    1397             : 
    1398           0 :                 if (re->type == e_cmp && re->flag == cmp_or)
    1399           0 :                         return exp_match_col_exps(e, re->l) &&
    1400           0 :                                exp_match_col_exps(e, re->r);
    1401             : 
    1402           0 :                 if (re->type != e_cmp || !re_r || re_r->card != 1 || !exp_match_exp(e, re->l))
    1403           0 :                         return 0;
    1404             :         }
    1405             :         return 1;
    1406             : }
    1407             : 
    1408             : int
    1409        8919 : exps_match_col_exps( sql_exp *e1, sql_exp *e2)
    1410             : {
    1411        8919 :         sql_exp *e1_r = e1->r;
    1412        8919 :         sql_exp *e2_r = e2->r;
    1413             : 
    1414        8919 :         if (e1->type != e_cmp || e2->type != e_cmp)
    1415             :                 return 0;
    1416             : 
    1417        8848 :         if (!is_complex_exp(e1->flag) && e1_r && e1_r->card == CARD_ATOM &&
    1418        3650 :             !is_complex_exp(e2->flag) && e2_r && e2_r->card == CARD_ATOM)
    1419        2837 :                 return exp_match_exp(e1->l, e2->l);
    1420             : 
    1421        6011 :         if (!is_complex_exp(e1->flag) && e1_r && e1_r->card == CARD_ATOM &&
    1422         813 :             (e2->flag == cmp_in || e2->flag == cmp_notin))
    1423         729 :                 return exp_match_exp(e1->l, e2->l);
    1424        5282 :         if ((e1->flag == cmp_in || e1->flag == cmp_notin) &&
    1425        2777 :             !is_complex_exp(e2->flag) && e2_r && e2_r->card == CARD_ATOM)
    1426        1934 :                 return exp_match_exp(e1->l, e2->l);
    1427             : 
    1428        3348 :         if ((e1->flag == cmp_in || e1->flag == cmp_notin) &&
    1429         843 :             (e2->flag == cmp_in || e2->flag == cmp_notin))
    1430         843 :                 return exp_match_exp(e1->l, e2->l);
    1431             : 
    1432        2505 :         if (!is_complex_exp(e1->flag) && e1_r && e1_r->card == CARD_ATOM &&
    1433          84 :             e2->flag == cmp_or)
    1434           0 :                 return exp_match_col_exps(e1->l, e2->l) &&
    1435           0 :                        exp_match_col_exps(e1->l, e2->r);
    1436             : 
    1437        2505 :         if (e1->flag == cmp_or &&
    1438           0 :             !is_complex_exp(e2->flag) && e2_r && e2_r->card == CARD_ATOM)
    1439           0 :                 return exp_match_col_exps(e2->l, e1->l) &&
    1440           0 :                        exp_match_col_exps(e2->l, e1->r);
    1441             : 
    1442        2505 :         if (e1->flag == cmp_or && e2->flag == cmp_or) {
    1443           0 :                 list *l = e1->l, *r = e1->r;
    1444           0 :                 sql_exp *el = l->h->data;
    1445           0 :                 sql_exp *er = r->h->data;
    1446             : 
    1447           0 :                 return list_length(l) == 1 && list_length(r) == 1 &&
    1448           0 :                        exps_match_col_exps(el, e2) &&
    1449           0 :                        exps_match_col_exps(er, e2);
    1450             :         }
    1451             :         return 0;
    1452             : }
    1453             : 
    1454             : int
    1455       45086 : exp_match_list( list *l, list *r)
    1456             : {
    1457       45086 :         node *n, *m;
    1458       45086 :         char *lu, *ru;
    1459       45086 :         int lc = 0, rc = 0, match = 0;
    1460             : 
    1461       45086 :         if (!l || !r)
    1462           0 :                 return l == r;
    1463       45086 :         if (list_length(l) != list_length(r) || list_length(l) == 0 || list_length(r) == 0)
    1464         231 :                 return 0;
    1465       44855 :         if (list_length(l) > 10 || list_length(r) > 10)
    1466           5 :                 return 0;/* to expensive */
    1467             : 
    1468       44850 :         lu = ZNEW_ARRAY(char, list_length(l));
    1469       44850 :         ru = ZNEW_ARRAY(char, list_length(r));
    1470       44850 :         if (!lu || !ru) {
    1471           0 :                 _DELETE(lu);
    1472           0 :                 _DELETE(ru);
    1473           0 :                 return 0;
    1474             :         }
    1475      133538 :         for (n = l->h, lc = 0; n; n = n->next, lc++) {
    1476       88688 :                 sql_exp *le = n->data;
    1477             : 
    1478      265684 :                 for ( m = r->h, rc = 0; m; m = m->next, rc++) {
    1479      176996 :                         sql_exp *re = m->data;
    1480             : 
    1481      176996 :                         if (!ru[rc] && exp_match_exp(le,re)) {
    1482        6685 :                                 lu[lc] = 1;
    1483        6685 :                                 ru[rc] = 1;
    1484        6685 :                                 match = 1;
    1485             :                         }
    1486             :                 }
    1487             :         }
    1488       51967 :         for (n = l->h, lc = 0; n && match; n = n->next, lc++)
    1489        7117 :                 if (!lu[lc])
    1490        1246 :                         match = 0;
    1491       50258 :         for (n = r->h, rc = 0; n && match; n = n->next, rc++)
    1492        5408 :                 if (!ru[rc])
    1493           0 :                         match = 0;
    1494       44850 :         _DELETE(lu);
    1495       44850 :         _DELETE(ru);
    1496       44850 :         return match;
    1497             : }
    1498             : 
    1499             : static int
    1500     2452243 : exps_equal( list *l, list *r)
    1501             : {
    1502     2452243 :         node *n, *m;
    1503             : 
    1504     2452243 :         if (!l || !r)
    1505       52364 :                 return l == r;
    1506     2399879 :         if (list_length(l) != list_length(r))
    1507             :                 return 0;
    1508     3530618 :         for (n = l->h, m = r->h; n && m; n = n->next, m = m->next) {
    1509     3482212 :                 sql_exp *le = n->data, *re = m->data;
    1510             : 
    1511     3482212 :                 if (!exp_match_exp(le,re))
    1512             :                         return 0;
    1513             :         }
    1514             :         return 1;
    1515             : }
    1516             : 
    1517             : int
    1518    41443410 : exp_match_exp_semantics( sql_exp *e1, sql_exp *e2, bool semantics)
    1519             : {
    1520    41443410 :         if (exp_match(e1, e2))
    1521             :                 return 1;
    1522             : 
    1523    40198261 :         if (is_ascending(e1) != is_ascending(e2) ||
    1524    40185853 :                 nulls_last(e1) != nulls_last(e2) ||
    1525    40185853 :                 zero_if_empty(e1) != zero_if_empty(e2) ||
    1526    40037218 :                 need_no_nil(e1) != need_no_nil(e2) ||
    1527    40037218 :                 is_anti(e1) != is_anti(e2) ||
    1528    40034193 :                 (semantics && is_semantics(e1) != is_semantics(e2)) ||
    1529    29497129 :                 (semantics && is_any(e1) != is_any(e2)) ||
    1530    29497221 :                 is_symmetric(e1) != is_symmetric(e2) ||
    1531    29497209 :                 is_unique(e1) != is_unique(e2) ||
    1532             :                 need_distinct(e1) != need_distinct(e2))
    1533             :                 return 0;
    1534             : 
    1535    29104699 :         if (e1->type == e2->type) {
    1536    20828734 :                 switch(e1->type) {
    1537      227978 :                 case e_cmp:
    1538      406544 :                         if (e1->flag == e2->flag && !is_complex_exp(e1->flag) &&
    1539      180846 :                             exp_match_exp(e1->l, e2->l) && exp_match_exp(e1->r, e2->r) &&
    1540         254 :                             ((!e1->f && !e2->f) || (e1->f && e2->f && exp_match_exp(e1->f, e2->f))))
    1541         247 :                                 return 1;
    1542      228945 :                         else if (e1->flag == e2->flag && e1->flag == cmp_or &&
    1543        1226 :                             exp_match_list(e1->l, e2->l) && exp_match_list(e1->r, e2->r))
    1544             :                                 return 1;
    1545      227725 :                         else if (e1->flag == e2->flag &&
    1546      184038 :                                 (e1->flag == cmp_in || e1->flag == cmp_notin) &&
    1547        1958 :                             exp_match_exp(e1->l, e2->l) && exp_match_list(e1->r, e2->r))
    1548             :                                 return 1;
    1549      403700 :                         else if (e1->flag == e2->flag && (e1->flag == cmp_equal || e1->flag == cmp_notequal) &&
    1550      176014 :                                 exp_match_exp(e1->l, e2->r) && exp_match_exp(e1->r, e2->l))
    1551             :                                 return 1; /* = and <> operations are reflective, so exp_match_exp can be called crossed */
    1552             :                         break;
    1553      296374 :                 case e_convert:
    1554      357702 :                         if (!subtype_cmp(exp_totype(e1), exp_totype(e2)) &&
    1555       91492 :                             !subtype_cmp(exp_fromtype(e1), exp_fromtype(e2)) &&
    1556       30164 :                             exp_match_exp(e1->l, e2->l))
    1557             :                                 return 1;
    1558             :                         break;
    1559       47086 :                 case e_aggr:
    1560       81455 :                         if (!subfunc_cmp(e1->f, e2->f) && /* equal aggregation*/
    1561       34369 :                             exps_equal(e1->l, e2->l))
    1562             :                                 return 1;
    1563             :                         break;
    1564     4444955 :                 case e_func: {
    1565     4444955 :                         sql_subfunc *e1f = (sql_subfunc*) e1->f;
    1566     4444955 :                         const char *sname = e1f->func->s ? e1f->func->s->base.name : NULL;
    1567     4444955 :                         int (*comp)(list*, list*) = is_commutative(sname, e1f->func->base.name) ? exp_match_list : exps_equal;
    1568             : 
    1569     8889910 :                         if (!e1f->func->side_effect &&
    1570     6855669 :                                 !subfunc_cmp(e1f, e2->f) && /* equal functions */
    1571     2461521 :                                 comp(e1->l, e2->l) &&
    1572             :                                 /* optional order by expressions */
    1573       50807 :                                 exps_equal(e1->r, e2->r))
    1574             :                                         return 1;
    1575             :                         } break;
    1576     1086464 :                 case e_atom:
    1577     1086464 :                         if (e1->l && e2->l && !atom_cmp(e1->l, e2->l))
    1578             :                                 return 1;
    1579     1044254 :                         if (e1->f && e2->f && exps_equal(e1->f, e2->f))
    1580             :                                 return 1;
    1581     1044253 :                         if (e1->r && e2->r && e1->flag == e2->flag && !subtype_cmp(&e1->tpe, &e2->tpe)) {
    1582          54 :                                 sql_var_name *v1 = (sql_var_name*) e1->r, *v2 = (sql_var_name*) e2->r;
    1583          54 :                                 if (((!v1->sname && !v2->sname) || (v1->sname && v2->sname && strcmp(v1->sname, v2->sname) == 0)) &&
    1584          54 :                                         ((!v1->name && !v2->name) || (v1->name && v2->name && strcmp(v1->name, v2->name) == 0)))
    1585             :                                         return 1;
    1586             :                         }
    1587     1044253 :                         if (!e1->l && !e1->r && !e1->f && !e2->l && !e2->r && !e2->f && e1->flag == e2->flag && !subtype_cmp(&e1->tpe, &e2->tpe))
    1588             :                                 return 1;
    1589             :                         break;
    1590             :                 default:
    1591             :                         break;
    1592             :                 }
    1593             :         }
    1594             :         return 0;
    1595             : }
    1596             : 
    1597             : int
    1598    41250325 : exp_match_exp( sql_exp *e1, sql_exp *e2)
    1599             : {
    1600    41250325 :         return exp_match_exp_semantics( e1, e2, true);
    1601             : }
    1602             : 
    1603             : sql_exp *
    1604      166874 : exps_any_match(list *l, sql_exp *e)
    1605             : {
    1606      166874 :         if (!l)
    1607             :                 return NULL;
    1608      629163 :         for (node *n = l->h; n ; n = n->next) {
    1609      569324 :                 sql_exp *ne = (sql_exp *) n->data;
    1610      569324 :                 if (exp_match_exp(ne, e))
    1611      107035 :                         return ne;
    1612             :         }
    1613             :         return NULL;
    1614             : }
    1615             : 
    1616             : static int
    1617          24 : exps_are_joins( list *l )
    1618             : {
    1619          24 :         if (l)
    1620          52 :                 for (node *n = l->h; n; n = n->next) {
    1621          28 :                         sql_exp *e = n->data;
    1622             : 
    1623          28 :                         if (exp_is_join_exp(e))
    1624             :                                 return -1;
    1625             :                 }
    1626             :         return 0;
    1627             : }
    1628             : 
    1629             : int
    1630         202 : exp_is_join_exp(sql_exp *e)
    1631             : {
    1632         202 :         if (exp_is_join(e, NULL) == 0)
    1633             :                 return 0;
    1634          26 :         if (e->type == e_cmp && e->flag == cmp_or && e->card >= CARD_AGGR)
    1635          12 :                 if (exps_are_joins(e->l) == 0 && exps_are_joins(e->r) == 0)
    1636             :                         return 0;
    1637             :         return -1;
    1638             : }
    1639             : 
    1640             : static int
    1641      781281 : exp_is_complex_select( sql_exp *e )
    1642             : {
    1643      802993 :         switch (e->type) {
    1644         429 :         case e_atom: {
    1645         429 :                 if (e->f) {
    1646           0 :                         int r = (e->card == CARD_ATOM);
    1647           0 :                         list *l = e->f;
    1648             : 
    1649           0 :                         if (r)
    1650           0 :                                 for (node *n = l->h; n && !r; n = n->next)
    1651           0 :                                         r |= exp_is_complex_select(n->data);
    1652           0 :                         return r;
    1653             :                 }
    1654             :                 return 0;
    1655             :         }
    1656       21712 :         case e_convert:
    1657       21712 :                 return exp_is_complex_select(e->l);
    1658        2046 :         case e_func:
    1659             :         case e_aggr:
    1660             :         {
    1661        2046 :                 int r = (e->card == CARD_ATOM);
    1662        2046 :                 list *l = e->l;
    1663             : 
    1664        2046 :                 if (r && l)
    1665          37 :                         for (node *n = l->h; n && !r; n = n->next)
    1666           0 :                                 r |= exp_is_complex_select(n->data);
    1667             :                 return r;
    1668             :         }
    1669             :         case e_psm:
    1670             :                 return 1;
    1671             :         case e_column:
    1672             :         case e_cmp:
    1673             :         default:
    1674             :                 return 0;
    1675             :         }
    1676             : }
    1677             : 
    1678             : static int
    1679      390646 : complex_select(sql_exp *e)
    1680             : {
    1681      390646 :         sql_exp *l = e->l, *r = e->r;
    1682             : 
    1683      390646 :         if (exp_is_complex_select(l) || exp_is_complex_select(r))
    1684          37 :                 return 1;
    1685             :         return 0;
    1686             : }
    1687             : 
    1688             : static int
    1689         909 : distinct_rel(sql_exp *e, sql_alias **rname)
    1690             : {
    1691        1049 :         sql_alias *e_rname = NULL;
    1692             : 
    1693        1049 :         switch(e->type) {
    1694         637 :         case e_column:
    1695         637 :                 e_rname = exp_relname(e);
    1696             : 
    1697         637 :                 if (*rname && e_rname && a_match(e_rname, *rname))
    1698             :                         return 1;
    1699         492 :                 if (!*rname) {
    1700         313 :                         *rname = e_rname;
    1701         313 :                         return 1;
    1702             :                 }
    1703             :                 break;
    1704         141 :         case e_aggr:
    1705             :         case e_func:
    1706         141 :                 if (e->l) {
    1707         141 :                         int m = 1;
    1708         141 :                         list *l = e->l;
    1709         141 :                         node *n;
    1710             : 
    1711         426 :                         for(n=l->h; n && m; n = n->next) {
    1712         285 :                                 sql_exp *ae = n->data;
    1713             : 
    1714         285 :                                 m = distinct_rel(ae, rname);
    1715             :                         }
    1716         141 :                         return m;
    1717             :                 }
    1718             :                 return 0;
    1719             :         case e_atom:
    1720             :                 return 1;
    1721         140 :         case e_convert:
    1722         140 :                 return distinct_rel(e->l, rname);
    1723             :         default:
    1724             :                 return 0;
    1725             :         }
    1726             :         return 0;
    1727             : }
    1728             : 
    1729             : int
    1730    20477426 : rel_has_exp(sql_rel *rel, sql_exp *e, bool subexp)
    1731             : {
    1732    20477426 :         if (rel_find_exp_and_corresponding_rel(rel, e, subexp, NULL, NULL))
    1733     4526500 :                 return 0;
    1734             :         return -1;
    1735             : }
    1736             : 
    1737             : int
    1738           0 : rel_has_exps(sql_rel *rel, list *exps, bool subexp)
    1739             : {
    1740           0 :         if (list_empty(exps))
    1741             :                 return 0;
    1742           0 :         for (node *n = exps->h; n; n = n->next)
    1743           0 :                 if (rel_has_exp(rel, n->data, subexp) >= 0)
    1744             :                         return 0;
    1745             :         return -1;
    1746             : }
    1747             : 
    1748             : int
    1749           0 : rel_has_all_exps(sql_rel *rel, list *exps)
    1750             : {
    1751           0 :         if (list_empty(exps))
    1752             :                 return 1;
    1753           0 :         for (node *n = exps->h; n; n = n->next)
    1754           0 :                 if (rel_has_exp(rel, n->data, false) < 0)
    1755             :                         return 0;
    1756             :         return 1;
    1757             : }
    1758             : 
    1759             : static int
    1760    15460974 : rel_has_exp2(sql_rel *rel, sql_exp *e)
    1761             : {
    1762    15460974 :         return rel_has_exp(rel, e, false);
    1763             : }
    1764             : 
    1765             : sql_rel *
    1766     5882732 : find_rel(list *rels, sql_exp *e)
    1767             : {
    1768     5882732 :         node *n = list_find(rels, e, (fcmp)&rel_has_exp2);
    1769     5882732 :         if (n)
    1770     3366684 :                 return n->data;
    1771             :         return NULL;
    1772             : }
    1773             : 
    1774             : sql_rel *
    1775           0 : find_one_rel(list *rels, sql_exp *e)
    1776             : {
    1777           0 :         node *n;
    1778           0 :         sql_rel *fnd = NULL;
    1779             : 
    1780           0 :         for(n = rels->h; n; n = n->next) {
    1781           0 :                 if (rel_has_exp(n->data, e, false) == 0) {
    1782           0 :                         if (fnd)
    1783             :                                 return NULL;
    1784           0 :                         fnd = n->data;
    1785             :                 }
    1786             :         }
    1787             :         return fnd;
    1788             : }
    1789             : 
    1790             : static int
    1791         318 : exp_is_rangejoin(sql_exp *e, list *rels)
    1792             : {
    1793             :         /* assume e is a e_cmp with 3 args
    1794             :          * Need to check e->r and e->f only touch one table.
    1795             :          */
    1796         318 :         sql_alias *rname = NULL;
    1797             : 
    1798         318 :         if (distinct_rel(e->r, &rname) && distinct_rel(e->f, &rname))
    1799             :                 return 0;
    1800         179 :         if (rels) {
    1801         137 :                 sql_rel *r = find_rel(rels, e->r);
    1802         137 :                 sql_rel *f = find_rel(rels, e->f);
    1803         137 :                 if (r && f && r == f)
    1804             :                         return 0;
    1805             :         }
    1806             :         return -1;
    1807             : }
    1808             : 
    1809             : int
    1810      392366 : exp_is_join(sql_exp *e, list *rels)
    1811             : {
    1812             :         /* only simple compare expressions, ie not or lists
    1813             :                 or range expressions (e->f)
    1814             :          */
    1815      392366 :         if (e->type == e_cmp && !is_complex_exp(e->flag) && e->l && e->r && !e->f && e->card >= CARD_AGGR && !complex_select(e))
    1816             :                 return 0;
    1817        2075 :         if (e->type == e_cmp && e->flag == cmp_filter && e->l && e->r && e->card >= CARD_AGGR)
    1818             :                 return 0;
    1819             :         /* range expression */
    1820        1930 :         if (e->type == e_cmp && !is_complex_exp(e->flag) && e->l && e->r && e->f && e->card >= CARD_AGGR && !complex_select(e))
    1821         318 :                 return exp_is_rangejoin(e, rels);
    1822             :         return -1;
    1823             : }
    1824             : 
    1825             : int
    1826      386106 : exp_is_eqjoin(sql_exp *e)
    1827             : {
    1828      386106 :         if (e->flag == cmp_equal) {
    1829      376355 :                 sql_exp *l = e->l;
    1830      376355 :                 sql_exp *r = e->r;
    1831             : 
    1832      376355 :                 if (!is_func(l->type) && !is_func(r->type))
    1833      375231 :                         return 0;
    1834             :         }
    1835             :         return -1;
    1836             : }
    1837             : 
    1838             : sql_exp *
    1839      123697 : exps_find_prop(list *exps, rel_prop kind)
    1840             : {
    1841      123697 :         if (list_empty(exps))
    1842             :                 return NULL;
    1843      246911 :         for (node *n = exps->h ; n ; n = n->next) {
    1844      123697 :                 sql_exp *e = n->data;
    1845             : 
    1846      123697 :                 if (find_prop(e->p, kind))
    1847         483 :                         return e;
    1848             :         }
    1849             :         return NULL;
    1850             : }
    1851             : 
    1852             : /* check is one of the exps can be found in this relation */
    1853             : static sql_exp* rel_find_exp_and_corresponding_rel_(sql_rel *rel, sql_exp *e, bool subexp, sql_rel **res);
    1854             : 
    1855             : static bool
    1856      611255 : rel_find_exps_and_corresponding_rel_(sql_rel *rel, list *l, bool subexp, sql_rel **res)
    1857             : {
    1858      611255 :         int all = 1;
    1859             : 
    1860      611255 :         if (list_empty(l))
    1861             :                 return true;
    1862     1628410 :         for(node *n = l->h; n && (subexp || all); n = n->next) {
    1863     1037144 :                 sql_exp *ne = rel_find_exp_and_corresponding_rel_(rel, n->data, subexp, res);
    1864     1037144 :                 if (subexp && ne)
    1865             :                         return true;
    1866     1021367 :                 all &= (ne?1:0);
    1867             :         }
    1868      591266 :         if (all)
    1869             :                 return true;
    1870             :         return false;
    1871             : }
    1872             : 
    1873             : static sql_exp *
    1874    64632433 : rel_find_exp_and_corresponding_rel_(sql_rel *rel, sql_exp *e, bool subexp, sql_rel **res)
    1875             : {
    1876    64632433 :         sql_exp *ne = NULL;
    1877             : 
    1878    64632433 :         if (!rel)
    1879             :                 return NULL;
    1880    64632319 :         switch(e->type) {
    1881    62322878 :         case e_column:
    1882    62322878 :                 if (is_basetable(rel->op) && !rel->exps) {
    1883       26713 :                         assert(e->nid);
    1884       26713 :                         if (rel_base_has_nid(rel, e->nid))
    1885    62322842 :                                 ne = e;
    1886    75839077 :                 } else if ((!list_empty(rel->exps) && (is_project(rel->op) || is_base(rel->op))) ||
    1887    13808745 :                                         (!list_empty(rel->attr) && is_join(rel->op))) {
    1888    49019064 :                         list *l = rel->attr ? rel->attr : rel->exps;
    1889    49019064 :                         assert(e->nid);
    1890    49019064 :                         ne = exps_bind_nid(l, e->nid);
    1891             :                 }
    1892    62322842 :                 if (ne && res)
    1893       50882 :                         *res = rel;
    1894             :                 return ne;
    1895     1091191 :         case e_convert:
    1896     1091191 :                 return rel_find_exp_and_corresponding_rel_(rel, e->l, subexp, res);
    1897      611237 :         case e_aggr:
    1898             :         case e_func:
    1899      611237 :                 if (e->l)
    1900      611237 :                         if (rel_find_exps_and_corresponding_rel_(rel, e->l, subexp, res))
    1901             :                                 return e;
    1902             :                 return NULL;
    1903         401 :         case e_cmp:
    1904         401 :                 if (!subexp)
    1905             :                         return NULL;
    1906             : 
    1907          34 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    1908          16 :                         if (rel_find_exps_and_corresponding_rel_(rel, e->l, subexp, res) ||
    1909           4 :                                 rel_find_exps_and_corresponding_rel_(rel, e->r, subexp, res))
    1910          12 :                                 return e;
    1911          22 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    1912           4 :                         if (rel_find_exp_and_corresponding_rel_(rel, e->l, subexp, res) ||
    1913           2 :                                 rel_find_exps_and_corresponding_rel_(rel, e->r, subexp, res))
    1914           2 :                                 return e;
    1915          26 :                 } else if (rel_find_exp_and_corresponding_rel_(rel, e->l, subexp, res) ||
    1916           6 :                             rel_find_exp_and_corresponding_rel_(rel, e->r, subexp, res) ||
    1917           2 :                             (!e->f || rel_find_exp_and_corresponding_rel_(rel, e->f, subexp, res))) {
    1918          18 :                                 return e;
    1919             :                 }
    1920             :                 return NULL;
    1921             :         case e_psm:
    1922             :                 return NULL;
    1923      606552 :         case e_atom:
    1924      606552 :                 if (e->f) { /* values */
    1925          12 :                         list *l = e->f;
    1926          12 :                         node *n = l->h;
    1927             : 
    1928          12 :                         ne = n->data;
    1929          31 :                         while ((subexp || ne != NULL) && n != NULL) {
    1930          19 :                                 ne = rel_find_exp_and_corresponding_rel_(rel, n->data, subexp, res);
    1931          19 :                                 if (subexp && ne)
    1932             :                                         break;
    1933          19 :                                 n = n->next;
    1934             :                         }
    1935          12 :                         return ne;
    1936             :                 }
    1937             :                 return e;
    1938             :         }
    1939             :         return ne;
    1940             : }
    1941             : 
    1942             : sql_exp *
    1943    62503993 : rel_find_exp_and_corresponding_rel(sql_rel *rel, sql_exp *e, bool subexp, sql_rel **res, bool *under_join)
    1944             : {
    1945    62503993 :         sql_exp *ne = rel_find_exp_and_corresponding_rel_(rel, e, subexp, res);
    1946             : 
    1947    62504023 :         if (rel && !ne) {
    1948    45810875 :                 switch(rel->op) {
    1949     9033628 :                 case op_left:
    1950             :                 case op_right:
    1951             :                 case op_full:
    1952             :                 case op_join:
    1953             :                 case op_semi:
    1954             :                 case op_anti:
    1955     9033628 :                         ne = rel_find_exp_and_corresponding_rel(rel->l, e, subexp, res, under_join);
    1956     9033628 :                         if (!ne && is_join(rel->op))
    1957     5974631 :                                 ne = rel_find_exp_and_corresponding_rel(rel->r, e, subexp, res, under_join);
    1958             :                         break;
    1959             :                 case op_table:
    1960             :                 case op_basetable:
    1961             :                         break;
    1962      546246 :                 case op_munion:
    1963     1994114 :                         for (node* n = ((list*)rel->l)->h; n && !ne; n = n->next)
    1964     1447868 :                                 ne = rel_find_exp_and_corresponding_rel(n->data, e, subexp, res, under_join);
    1965             :                         break;
    1966    12146605 :                 default:
    1967    12146605 :                         if (!is_project(rel->op) && rel->l)
    1968     4488229 :                                 ne = rel_find_exp_and_corresponding_rel(rel->l, e, subexp, res, under_join);
    1969             :                 }
    1970             :         }
    1971    62504023 :         if (ne && under_join && is_join(rel->op))
    1972     2154968 :                 *under_join = true;
    1973    62504023 :         return ne;
    1974             : }
    1975             : 
    1976             : sql_exp *
    1977    17694939 : rel_find_exp(sql_rel *rel, sql_exp *e)
    1978             : {
    1979    17694939 :         return rel_find_exp_and_corresponding_rel(rel, e, false, NULL, NULL);
    1980             : }
    1981             : 
    1982             : bool
    1983       66133 : rel_find_nid(sql_rel *rel, int nid)
    1984             : {
    1985       66548 :         if (rel) {
    1986       66064 :                 switch(rel->op) {
    1987        5627 :                 case op_left:
    1988             :                 case op_right:
    1989             :                 case op_full:
    1990             :                 case op_join:
    1991             :                 case op_semi:
    1992             :                 case op_anti:
    1993        5627 :                         if (rel_find_nid(rel->l, nid))
    1994             :                                 return true;
    1995         499 :                         if (is_join(rel->op))
    1996         415 :                                 return rel_find_nid(rel->r, nid);
    1997             :                         break;
    1998       57060 :                 case op_table:
    1999             :                 case op_basetable:
    2000             :                 case op_munion:
    2001             :                 case op_union:
    2002             :                 case op_inter:
    2003             :                 case op_except:
    2004             :                 case op_project:
    2005             :                 case op_groupby:
    2006       57060 :                         if (rel->exps) {
    2007       57060 :                                 if (exps_bind_nid(rel->exps, nid))
    2008             :                                         return true;
    2009           0 :                         } else if (rel->op == op_basetable)
    2010           0 :                                 return rel_base_has_nid(rel, nid);
    2011             :                         break;
    2012        3377 :                 case op_select:
    2013             :                 case op_topn:
    2014             :                 case op_sample:
    2015        3377 :                         if (rel_find_nid(rel->l, nid))
    2016             :                                 return true;
    2017             :                         break;
    2018             :                 case op_ddl:
    2019             :                 case op_insert:
    2020             :                 case op_update:
    2021             :                 case op_delete:
    2022             :                 case op_truncate:
    2023             :                 case op_merge:
    2024             :                         return false;
    2025             : 
    2026             :                 }
    2027             :         }
    2028             :         return false;
    2029             : }
    2030             : 
    2031             : int
    2032     2423117 : exp_is_true(sql_exp *e)
    2033             : {
    2034     2423117 :         if (e->type == e_atom && e->l)
    2035       51114 :                 return atom_is_true(e->l);
    2036     2372003 :         if (e->type == e_cmp && e->flag == cmp_equal)
    2037     1893682 :                 return (exp_is_true(e->l) && exp_is_true(e->r) && exp_match_exp(e->l, e->r));
    2038             :         return 0;
    2039             : }
    2040             : 
    2041             : static inline bool
    2042      112020 : exp_is_cmp_exp_is_false(sql_exp* e)
    2043             : {
    2044      112020 :         sql_exp *l = e->l;
    2045      112020 :         sql_exp *r = e->r;
    2046      112020 :         assert(e->type == e_cmp && e->f == NULL && l && r);
    2047             : 
    2048             :         /* Handle 'v is x' and 'v is not x' expressions.
    2049             :         * Other cases in is-semantics are unspecified.
    2050             :         */
    2051      112020 :         if (e->flag != cmp_equal && e->flag != cmp_notequal)
    2052             :                 return false;
    2053      112020 :         if (e->flag == cmp_equal && !is_anti(e))
    2054      164926 :                 return ((exp_is_null(l) && exp_is_not_null(r)) || (exp_is_not_null(l) && exp_is_null(r)));
    2055       29557 :         if ((e->flag == cmp_notequal && !is_anti(e)) || (e->flag == cmp_equal && is_anti(e)))
    2056       58977 :                 return exp_is_null(l) && exp_is_null(r);
    2057             :         return false;
    2058             : }
    2059             : 
    2060             : static inline bool
    2061     4726751 : exp_single_bound_cmp_exp_is_false(sql_exp* e)
    2062             : {
    2063     4726751 :     assert(e->type == e_cmp);
    2064     4726751 :     sql_exp* l = e->l;
    2065     4726751 :     sql_exp* r = e->r;
    2066     4726751 :     assert(e->f == NULL);
    2067     4726751 :     assert (l && r);
    2068             : 
    2069     4726751 :     return exp_is_null(l) || exp_is_null(r);
    2070             : }
    2071             : 
    2072             : static inline bool
    2073       63153 : exp_two_sided_bound_cmp_exp_is_false(sql_exp* e)
    2074             : {
    2075       63153 :     assert(e->type == e_cmp);
    2076       63153 :     sql_exp* v = e->l;
    2077       63153 :     sql_exp* l = e->r;
    2078       63153 :     sql_exp* h = e->f;
    2079       63153 :     assert (v && l && h);
    2080             : 
    2081       63153 :     return is_anti(e) ? exp_is_null(v) || (exp_is_null(l) && exp_is_null(h)) : false;
    2082             : }
    2083             : 
    2084             : static inline bool
    2085     4914906 : exp_regular_cmp_exp_is_false(sql_exp* e)
    2086             : {
    2087     4914906 :     assert(e->type == e_cmp);
    2088             : 
    2089     4914906 :     if (is_semantics(e) && !is_any(e)) return exp_is_cmp_exp_is_false(e);
    2090     4802886 :         if (is_any(e)) return false;
    2091     4789904 :     if (e -> f)         return exp_two_sided_bound_cmp_exp_is_false(e);
    2092     4726751 :     else                return exp_single_bound_cmp_exp_is_false(e);
    2093             : }
    2094             : 
    2095             : static inline bool
    2096      424842 : exp_or_exp_is_false(sql_exp* e)
    2097             : {
    2098      424842 :     assert(e->type == e_cmp && e->flag == cmp_or);
    2099             : 
    2100      424842 :         list* left = e->l;
    2101      424842 :         list* right = e->r;
    2102             : 
    2103      424842 :         bool left_is_false = false;
    2104      894648 :         for(node* n = left->h; n; n=n->next) {
    2105      470420 :                 if (exp_is_false(n->data)) {
    2106             :                         left_is_false=true;
    2107             :                         break;
    2108             :                 }
    2109             :         }
    2110             : 
    2111      424842 :         if (!left_is_false) {
    2112             :                 return false;
    2113             :         }
    2114             : 
    2115        1176 :         for(node* n = right->h; n; n=n->next) {
    2116         643 :                 if (exp_is_false(n->data)) {
    2117             :                         return true;
    2118             :                 }
    2119             :         }
    2120             : 
    2121             :     return false;
    2122             : }
    2123             : 
    2124             : static inline bool
    2125     5636948 : exp_cmp_exp_is_false(sql_exp* e)
    2126             : {
    2127     5636948 :     assert(e->type == e_cmp);
    2128             : 
    2129     5636948 :     switch (e->flag) {
    2130     4914906 :     case cmp_gt:
    2131             :     case cmp_gte:
    2132             :     case cmp_lte:
    2133             :     case cmp_lt:
    2134             :     case cmp_equal:
    2135             :     case cmp_notequal:
    2136     4914906 :                 return exp_regular_cmp_exp_is_false(e);
    2137      424842 :     case cmp_or:
    2138      424842 :                 return exp_or_exp_is_false(e);
    2139             :     default:
    2140             :                 return false;
    2141             :         }
    2142             : }
    2143             : 
    2144             : int
    2145     5741156 : exp_is_false(sql_exp *e)
    2146             : {
    2147     5741156 :         if (e->type == e_atom && e->l)
    2148       57461 :                 return atom_is_false(e->l);
    2149     5683695 :         else if (e->type == e_cmp)
    2150     5636948 :                 return exp_cmp_exp_is_false(e);
    2151             :         return 0;
    2152             : }
    2153             : 
    2154             : int
    2155       17823 : exp_is_zero(sql_exp *e)
    2156             : {
    2157       17823 :         if (e->type == e_atom && e->l)
    2158       17592 :                 return atom_is_zero(e->l);
    2159             :         return 0;
    2160             : }
    2161             : 
    2162             : int
    2163      236826 : exp_is_not_null(sql_exp *e)
    2164             : {
    2165      237013 :         if (!has_nil(e))
    2166             :                 return true;
    2167             : 
    2168       83534 :         switch (e->type) {
    2169        3082 :         case e_atom:
    2170        3082 :                 if (e->f) /* values list */
    2171             :                         return false;
    2172        3082 :                 if (e->l)
    2173        2801 :                         return !(atom_null(e->l));
    2174             :                 return false;
    2175         187 :         case e_convert:
    2176         187 :                 return exp_is_not_null(e->l);
    2177        2512 :         case e_func:
    2178        2512 :                 if (!is_semantics(e) && e->l) {
    2179         264 :                         list *l = e->l;
    2180         311 :                         for (node *n = l->h; n; n=n->next) {
    2181         308 :                                 sql_exp *p = n->data;
    2182         308 :                                 if (!exp_is_not_null(p))
    2183             :                                         return false;
    2184             :                         }
    2185             :                         return true;
    2186             :                 }
    2187             :                 return false;
    2188             :         case e_aggr:
    2189             :         case e_column:
    2190             :         case e_cmp:
    2191             :         case e_psm:
    2192             :                 return false;
    2193             :         }
    2194             :         return false;
    2195             : }
    2196             : 
    2197             : static int
    2198        7371 : exps_have_null(list *l)
    2199             : {
    2200        7371 :         if (!l)
    2201             :                 return false;
    2202       15721 :         for(node *n = l->h; n; n = n->next)
    2203        8354 :                 if (exp_is_null(n->data))
    2204             :                         return true;
    2205             :         return false;
    2206             : }
    2207             : 
    2208             : int
    2209    10397412 : exp_is_null(sql_exp *e )
    2210             : {
    2211    10440507 :         if (!has_nil(e))
    2212             :                 return false;
    2213             : 
    2214     1393643 :         switch (e->type) {
    2215      108391 :         case e_atom:
    2216      108391 :                 if (e->f) /* values list */
    2217             :                         return 0;
    2218      108280 :                 if (e->l)
    2219       32921 :                         return (atom_null(e->l));
    2220             :                 return 0;
    2221       43095 :         case e_convert:
    2222       43095 :                 return exp_is_null(e->l);
    2223       90806 :         case e_func:
    2224       90806 :                 if (!is_semantics(e) && e->l) {
    2225             :                         /* This is a call to a function with no-nil semantics.
    2226             :                          * If one of the parameters is null the expression itself is null
    2227             :                          */
    2228       56366 :                         list* l = e->l;
    2229      168221 :                         for(node* n = l->h; n; n=n->next) {
    2230      112044 :                                 sql_exp* p = n->data;
    2231      112044 :                                 if (exp_is_null(p)) {
    2232             :                                         return true;
    2233             :                                 }
    2234             :                         }
    2235             :                 }
    2236             :                 return 0;
    2237       60265 :         case e_cmp:
    2238       60265 :                 if (!is_semantics(e)) {
    2239       57654 :                         if (e->flag == cmp_or || e->flag == cmp_filter) {
    2240       13038 :                                 return (exps_have_null(e->l) && exps_have_null(e->r));
    2241       51135 :                         } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2242        3789 :                                 return ((e->flag == cmp_in && exp_is_null(e->l)) ||
    2243        3787 :                                                 (e->flag == cmp_notin && (exp_is_null(e->l) || exps_have_null(e->r))));
    2244       47346 :                         } else if (e->f) {
    2245        6519 :                                 return exp_is_null(e->l) && exp_is_null(e->r) && exp_is_null(e->f);
    2246             :                         } else {
    2247       44088 :                                 return exp_is_null(e->l) || exp_is_null(e->r);
    2248             :                         }
    2249             :                 }
    2250             :                 return 0;
    2251             :         case e_aggr:
    2252             :         case e_column:
    2253             :         case e_psm:
    2254             :                 return 0;
    2255             :         }
    2256             :         return 0;
    2257             : }
    2258             : 
    2259             : int
    2260     1856257 : exp_is_rel( sql_exp *e )
    2261             : {
    2262     1866182 :         if (e) {
    2263     1866182 :                 switch(e->type){
    2264        9925 :                 case e_convert:
    2265        9925 :                         return exp_is_rel(e->l);
    2266      319915 :                 case e_psm:
    2267      319915 :                         return e->flag == PSM_REL && e->l;
    2268             :                 default:
    2269             :                         return 0;
    2270             :                 }
    2271             :         }
    2272             :         return 0;
    2273             : }
    2274             : 
    2275             : int
    2276        8101 : exps_one_is_rel(list *exps)
    2277             : {
    2278        8101 :         if (list_empty(exps))
    2279             :                 return 0;
    2280       24279 :         for(node *n = exps->h ; n ; n = n->next)
    2281       16187 :                 if (exp_is_rel(n->data))
    2282             :                         return 1;
    2283             :         return 0;
    2284             : }
    2285             : 
    2286             : int
    2287     8428138 : exp_is_atom( sql_exp *e )
    2288             : {
    2289     8769025 :         switch (e->type) {
    2290     1667529 :         case e_atom:
    2291     1667529 :                 if (e->f) /* values list */
    2292        8664 :                         return exps_are_atoms(e->f);
    2293             :                 return 1;
    2294      340887 :         case e_convert:
    2295      340887 :                 return exp_is_atom(e->l);
    2296      927708 :         case e_func:
    2297             :         case e_aggr:
    2298      927708 :                 return e->card == CARD_ATOM && exps_are_atoms(e->l);
    2299        2729 :         case e_cmp:
    2300        2729 :                 if (e->card != CARD_ATOM)
    2301             :                         return 0;
    2302         146 :                 if (e->flag == cmp_or || e->flag == cmp_filter)
    2303          77 :                         return exps_are_atoms(e->l) && exps_are_atoms(e->r);
    2304          73 :                 if (e->flag == cmp_in || e->flag == cmp_notin)
    2305           0 :                         return exp_is_atom(e->l) && exps_are_atoms(e->r);
    2306          73 :                 return exp_is_atom(e->l) && exp_is_atom(e->r) && (!e->f || exp_is_atom(e->f));
    2307             :         case e_column:
    2308             :         case e_psm:
    2309             :                 return 0;
    2310             :         }
    2311             :         return 0;
    2312             : }
    2313             : 
    2314             : static int
    2315           1 : exps_are_aggr(sql_rel *r, list *exps)
    2316             : {
    2317           1 :         int aggr = 1;
    2318           1 :         if (!list_empty(exps))
    2319           3 :                 for(node *n=exps->h; n && aggr; n=n->next)
    2320           2 :                         aggr &= exp_is_aggr(r, n->data);
    2321           1 :         return aggr;
    2322             : }
    2323             : 
    2324             : /* is expression e an aggregated result of r */
    2325             : int
    2326          11 : exp_is_aggr(sql_rel *r, sql_exp *e)
    2327             : {
    2328          11 :         sql_exp *ne = NULL;
    2329             : 
    2330          11 :         switch (e->type) {
    2331             :         case e_atom:
    2332             :                 return true;
    2333           0 :         case e_convert:
    2334           0 :                 return exp_is_aggr(r, e->l);
    2335           1 :         case e_func:
    2336           1 :                 return exps_are_aggr(r, e->l);
    2337             :         case e_aggr:
    2338             :                 return true;
    2339           0 :         case e_cmp:
    2340           0 :                 if (e->card != CARD_ATOM)
    2341             :                         return false;
    2342           0 :                 if (e->flag == cmp_or || e->flag == cmp_filter)
    2343           0 :                         return exps_are_aggr(r, e->l) && exps_are_aggr(r, e->r);
    2344           0 :                 if (e->flag == cmp_in || e->flag == cmp_notin)
    2345           0 :                         return exp_is_aggr(r, e->l) && exps_are_aggr(r, e->r);
    2346           0 :                 return exp_is_aggr(r, e->l) && exp_is_aggr(r, e->r) && (!e->f || exp_is_aggr(r, e->f));
    2347           9 :         case e_column:
    2348           9 :                 if (e->freevar)
    2349             :                         return true;
    2350           9 :                 ne = rel_find_exp(r, e);
    2351           9 :                 if (ne) /* found local */
    2352             :                         return true;
    2353             :                 else
    2354             :                         return false;
    2355             :         case e_psm:
    2356             :                 return false;
    2357             :         }
    2358             :         return false;
    2359             : }
    2360             : 
    2361             : static int
    2362          19 : exps_have_aggr(sql_rel *r, list *exps)
    2363             : {
    2364          19 :         int aggr = 0;
    2365          19 :         if (!list_empty(exps))
    2366          63 :                 for(node *n=exps->h; n && !aggr; n=n->next)
    2367          44 :                         aggr |= exp_has_aggr(r, n->data);
    2368          19 :         return aggr;
    2369             : }
    2370             : 
    2371             : int
    2372          80 : exp_has_aggr(sql_rel *r, sql_exp *e )
    2373             : {
    2374          87 :         sql_exp *ne = NULL;
    2375             : 
    2376          87 :         switch (e->type) {
    2377             :         case e_atom:
    2378             :                 return false;
    2379           7 :         case e_convert:
    2380           7 :                 return exp_has_aggr(r, e->l);
    2381          19 :         case e_func:
    2382          19 :                 return exps_have_aggr(r, e->l);
    2383             :         case e_aggr:
    2384             :                 return true;
    2385           0 :         case e_cmp:
    2386           0 :                 if (e->card != CARD_ATOM)
    2387             :                         return false;
    2388           0 :                 if (e->flag == cmp_or || e->flag == cmp_filter)
    2389           0 :                         return exps_have_aggr(r, e->l) && exps_have_aggr(r, e->r);
    2390           0 :                 if (e->flag == cmp_in || e->flag == cmp_notin)
    2391           0 :                         return exp_has_aggr(r, e->l) && exps_have_aggr(r, e->r);
    2392           0 :                 return exp_has_aggr(r, e->l) && exp_has_aggr(r, e->r) && (!e->f || exp_has_aggr(r, e->f));
    2393          34 :         case e_column:
    2394          34 :                 if (e->freevar)
    2395             :                         return false;
    2396          21 :                 ne = rel_find_exp(r->l, e);
    2397          21 :                 if (ne) /* found lower */
    2398             :                         return false;
    2399             :                 else
    2400             :                         return true;
    2401             :         case e_psm:
    2402             :                 return false;
    2403             :         }
    2404             :         return false;
    2405             : }
    2406             : 
    2407             : int
    2408    20586366 : exp_has_rel( sql_exp *e )
    2409             : {
    2410    20968126 :         if (!e)
    2411             :                 return 0;
    2412    20968126 :         switch(e->type){
    2413     2308473 :         case e_func:
    2414             :         case e_aggr:
    2415     2308473 :                 return exps_have_rel_exp(e->l);
    2416      557322 :         case e_cmp:
    2417      557322 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2418       61470 :                         return (exps_have_rel_exp(e->l) || exps_have_rel_exp(e->r));
    2419      496304 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2420       37304 :                         return (exp_has_rel(e->l) || exps_have_rel_exp(e->r));
    2421             :                 } else {
    2422      918000 :                         return (exp_has_rel(e->l) || exp_has_rel(e->r) || (e->f && exp_has_rel(e->f)));
    2423             :                 }
    2424      381760 :         case e_convert:
    2425      381760 :                 return exp_has_rel(e->l);
    2426      128943 :         case e_psm:
    2427      128943 :                 return exp_is_rel(e);
    2428    10019174 :         case e_atom:
    2429    10019174 :                 return (e->f && exps_have_rel_exp(e->f));
    2430             :         case e_column:
    2431             :                 return 0;
    2432             :         }
    2433             :         return 0;
    2434             : }
    2435             : 
    2436             : int
    2437     2975980 : exps_have_rel_exp( list *exps)
    2438             : {
    2439     2975980 :         if (list_empty(exps))
    2440             :                 return 0;
    2441    10485461 :         for(node *n=exps->h; n; n=n->next) {
    2442     7599019 :                 sql_exp *e = n->data;
    2443             : 
    2444     7599019 :                 if (exp_has_rel(e))
    2445             :                         return 1;
    2446             :         }
    2447             :         return 0;
    2448             : }
    2449             : 
    2450             : static sql_rel *
    2451         579 : exps_rel_get_rel(allocator *sa, list *exps )
    2452             : {
    2453         579 :         sql_rel *r = NULL, *xp = NULL;
    2454             : 
    2455         579 :         if (list_empty(exps))
    2456             :                 return NULL;
    2457        1700 :         for (node *n = exps->h; n; n=n->next){
    2458        1121 :                 sql_exp *e = n->data;
    2459             : 
    2460        1121 :                 if (exp_has_rel(e)) {
    2461         585 :                         if (!(r = exp_rel_get_rel(sa, e)))
    2462             :                                 return NULL;
    2463         585 :                         if (xp) {
    2464           6 :                                 xp = rel_crossproduct(sa, xp, r, op_full);
    2465           6 :                                 set_processed(xp);
    2466             :                         } else {
    2467             :                                 xp = r;
    2468             :                         }
    2469             :                 }
    2470             :         }
    2471             :         return xp;
    2472             : }
    2473             : 
    2474             : int
    2475          62 : exp_rel_depth(sql_exp *e)
    2476             : {
    2477          62 :         if (!e)
    2478             :                 return 0;
    2479          62 :         switch(e->type){
    2480             :         case e_func:
    2481             :         case e_aggr:
    2482             :         case e_cmp:
    2483             :                 return 1;
    2484             :         case e_convert:
    2485             :                 return 0;
    2486          41 :         case e_psm:
    2487          41 :                 if (exp_is_rel(e))
    2488             :                         return 0;
    2489             :                 return 1;
    2490             :         case e_atom:
    2491             :         case e_column:
    2492             :                 return 0;
    2493             :         }
    2494             :         return 0;
    2495             : }
    2496             : 
    2497             : sql_rel *
    2498       81005 : exp_rel_get_rel(allocator *sa, sql_exp *e)
    2499             : {
    2500       82114 :         if (!e)
    2501             :                 return NULL;
    2502             : 
    2503       82114 :         switch(e->type){
    2504         551 :         case e_func:
    2505             :         case e_aggr:
    2506         551 :                 return exps_rel_get_rel(sa, e->l);
    2507          38 :         case e_cmp: {
    2508          38 :                 sql_rel *r = NULL, *xp = NULL;
    2509             : 
    2510          38 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2511          11 :                         if (exps_have_rel_exp(e->l))
    2512           7 :                                 xp = exps_rel_get_rel(sa, e->l);
    2513          11 :                         if (exps_have_rel_exp(e->r)) {
    2514           6 :                                 if (!(r = exps_rel_get_rel(sa, e->r)))
    2515             :                                         return NULL;
    2516           6 :                                 if (xp) {
    2517           2 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2518           2 :                                         set_processed(xp);
    2519             :                                 } else {
    2520             :                                         xp = r;
    2521             :                                 }
    2522             :                         }
    2523          27 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2524           0 :                         if (exp_has_rel(e->l))
    2525           0 :                                 xp = exp_rel_get_rel(sa, e->l);
    2526           0 :                         if (exps_have_rel_exp(e->r)) {
    2527           0 :                                 if (!(r = exps_rel_get_rel(sa, e->r)))
    2528             :                                         return NULL;
    2529           0 :                                 if (xp) {
    2530           0 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2531           0 :                                         set_processed(xp);
    2532             :                                 } else {
    2533             :                                         xp = r;
    2534             :                                 }
    2535             :                         }
    2536             :                 } else {
    2537          27 :                         if (exp_has_rel(e->l))
    2538          25 :                                 xp = exp_rel_get_rel(sa, e->l);
    2539          27 :                         if (exp_has_rel(e->r)) {
    2540           7 :                                 if (!(r = exp_rel_get_rel(sa, e->r)))
    2541             :                                         return NULL;
    2542           7 :                                 if (xp) {
    2543           5 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2544           5 :                                         set_processed(xp);
    2545             :                                 } else {
    2546             :                                         xp = r;
    2547             :                                 }
    2548             :                         }
    2549          27 :                         if (e->f && exp_has_rel(e->f)) {
    2550           0 :                                 if (!(r = exp_rel_get_rel(sa, e->f)))
    2551             :                                         return NULL;
    2552           0 :                                 if (xp) {
    2553           0 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2554           0 :                                         set_processed(xp);
    2555             :                                 } else {
    2556             :                                         xp = r;
    2557             :                                 }
    2558             :                         }
    2559             :                 }
    2560             :                 return xp;
    2561             :         }
    2562        1109 :         case e_convert:
    2563        1109 :                 return exp_rel_get_rel(sa, e->l);
    2564       80401 :         case e_psm:
    2565       80401 :                 if (exp_is_rel(e))
    2566       80401 :                         return e->l;
    2567             :                 return NULL;
    2568          15 :         case e_atom:
    2569          15 :                 if (e->f && exps_have_rel_exp(e->f))
    2570          15 :                         return exps_rel_get_rel(sa, e->f);
    2571             :                 return NULL;
    2572             :         case e_column:
    2573             :                 return NULL;
    2574             :         }
    2575             :         return NULL;
    2576             : }
    2577             : 
    2578             : static void exp_rel_update_set_freevar(sql_exp *e);
    2579             : 
    2580             : static void
    2581         938 : exps_rel_update_set_freevar(list *exps)
    2582             : {
    2583         938 :         if (!list_empty(exps))
    2584        3057 :                 for (node *n=exps->h; n ; n=n->next)
    2585        2119 :                         exp_rel_update_set_freevar(n->data);
    2586         938 : }
    2587             : 
    2588             : static void
    2589        2413 : exp_rel_update_set_freevar(sql_exp *e)
    2590             : {
    2591        2425 :         if (!e)
    2592             :                 return ;
    2593             : 
    2594        2425 :         switch(e->type){
    2595         936 :         case e_func:
    2596             :         case e_aggr:
    2597         936 :                 exps_rel_update_set_freevar(e->l);
    2598         936 :                 break;
    2599           8 :         case e_cmp:
    2600           8 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2601           0 :                         exps_rel_update_set_freevar(e->l);
    2602           0 :                         exps_rel_update_set_freevar(e->r);
    2603           8 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2604           0 :                         exp_rel_update_set_freevar(e->l);
    2605           0 :                         exps_rel_update_set_freevar(e->r);
    2606             :                 } else {
    2607           8 :                         exp_rel_update_set_freevar(e->l);
    2608           8 :                         exp_rel_update_set_freevar(e->r);
    2609           8 :                         if (e->f)
    2610             :                                 exp_rel_update_set_freevar(e->f);
    2611             :                 }
    2612             :                 break;
    2613           9 :         case e_convert:
    2614           9 :                 exp_rel_update_set_freevar(e->l);
    2615           9 :                 break;
    2616        1186 :         case e_atom:
    2617        1186 :                 if (e->f)
    2618           2 :                         exps_rel_update_set_freevar(e->f);
    2619             :                 break;
    2620         286 :         case e_column:
    2621         286 :                 set_freevar(e, 1);
    2622         286 :                 break;
    2623             :         case e_psm:
    2624             :                 break;
    2625             :         }
    2626             : }
    2627             : 
    2628             : static list *
    2629         579 : exp_rel_update_exps(mvc *sql, list *exps, bool up)
    2630             : {
    2631         579 :         if (list_empty(exps))
    2632             :                 return exps;
    2633        1700 :         for (node *n = exps->h; n; n=n->next){
    2634        1121 :                 sql_exp *e = n->data;
    2635             : 
    2636        1121 :                 if (exp_has_rel(e))
    2637         585 :                         n->data = exp_rel_update_exp(sql, e, up);
    2638         536 :                 else if (!exp_is_atom(e) && !up)
    2639         272 :                         exp_rel_update_set_freevar(e);
    2640             :         }
    2641             :         return exps;
    2642             : }
    2643             : 
    2644             : static sql_exp *
    2645          57 : exp_rel_update_exp_(mvc *sql, sql_exp *e, bool up)
    2646             : {
    2647          57 :         if (exp_has_rel(e))
    2648          31 :                 e = exp_rel_update_exp(sql, e, up);
    2649          26 :         else if (!exp_is_atom(e) && !up)
    2650           6 :                 exp_rel_update_set_freevar(e);
    2651          57 :         return e;
    2652             : }
    2653             : 
    2654             : sql_exp *
    2655       13982 : exp_rel_update_exp(mvc *sql, sql_exp *e, bool up)
    2656             : {
    2657       13982 :         if (!e)
    2658             :                 return NULL;
    2659             : 
    2660       13982 :         switch(e->type){
    2661         551 :         case e_func:
    2662             :         case e_aggr:
    2663         551 :                 if (exps_have_rel_exp(e->l))
    2664         551 :                         e->l = exp_rel_update_exps(sql, e->l, up);
    2665             :                 return e;
    2666          37 :         case e_cmp:
    2667          37 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2668          11 :                         if (exps_have_rel_exp(e->l))
    2669           7 :                                 e->l = exp_rel_update_exps(sql, e->l, up);
    2670          11 :                         if (exps_have_rel_exp(e->r))
    2671           6 :                                 e->r = exp_rel_update_exps(sql, e->r, up);
    2672          26 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2673           0 :                         if (exp_has_rel(e->l))
    2674           0 :                                 e->l = exp_rel_update_exp(sql, e->l, up);
    2675           0 :                         if (exps_have_rel_exp(e->r))
    2676           0 :                                 e->r = exp_rel_update_exps(sql, e->r, up);
    2677             :                 } else {
    2678             :                         //if (exp_has_rel(e->l))
    2679          26 :                                 e->l = exp_rel_update_exp_(sql, e->l, up);
    2680             :                         //if (exp_has_rel(e->r))
    2681          26 :                                 e->r = exp_rel_update_exp_(sql, e->r, up);
    2682          26 :                         if (e->f /*&& exp_has_rel(e->f)*/)
    2683           5 :                                 e->f = exp_rel_update_exp_(sql, e->f, up);
    2684             :                 }
    2685             :                 return e;
    2686        1109 :         case e_convert:
    2687        1109 :                 if (exp_has_rel(e->l))
    2688        1109 :                         e->l = exp_rel_update_exp(sql, e->l, up);
    2689             :                 return e;
    2690       12270 :         case e_psm:
    2691       12270 :                 if (exp_is_rel(e)) {
    2692       12270 :                         sql_rel *r = exp_rel_get_rel(sql->sa, e), *nr = r;
    2693       12270 :                         if (is_topn(r->op)) {
    2694           2 :                                 nr = r->l;
    2695           2 :                                 if (nr && !is_project(nr->op))
    2696           0 :                                         r->l = nr = rel_project(sql->sa, nr, rel_projections(sql, nr, NULL, 1, 0));
    2697             :                         }
    2698       12270 :                         e = nr->exps->t->data;
    2699       12270 :                         e = exp_ref(sql, e);
    2700       12270 :                         if (up)
    2701           0 :                                 set_freevar(e, 1);
    2702       12270 :                         return e;
    2703             :                 }
    2704             :                 return e;
    2705          15 :         case e_atom:
    2706          15 :                 if (e->f && exps_have_rel_exp(e->f))
    2707          15 :                         e->f = exp_rel_update_exps(sql, e->f, up);
    2708             :                 return e;
    2709             :         case e_column:
    2710             :                 return e;
    2711             :         }
    2712             :         return e;
    2713             : }
    2714             : 
    2715             : sql_exp *
    2716        4216 : exp_rel_label(mvc *sql, sql_exp *e)
    2717             : {
    2718        4216 :         if (exp_is_rel(e))
    2719        4216 :                 e->l = rel_label(sql, e->l, 1);
    2720        4216 :         return e;
    2721             : }
    2722             : 
    2723             : int
    2724      140807 : exps_are_atoms( list *exps)
    2725             : {
    2726      140807 :         int atoms = 1;
    2727      140807 :         if (!list_empty(exps))
    2728      389089 :                 for(node *n=exps->h; n && atoms; n=n->next)
    2729      279746 :                         atoms &= exp_is_atom(n->data);
    2730      140808 :         return atoms;
    2731             : }
    2732             : 
    2733             : int
    2734         151 : exps_have_func(list *exps)
    2735             : {
    2736         151 :         if (list_empty(exps))
    2737             :                 return 0;
    2738         183 :         for(node *n=exps->h; n; n=n->next) {
    2739         155 :                 sql_exp *e = n->data;
    2740             : 
    2741         155 :                 if (exp_has_func(e))
    2742             :                         return 1;
    2743             :         }
    2744             :         return 0;
    2745             : }
    2746             : 
    2747             : static int exp_has_func_or_cmp(sql_exp *e, bool cmp);
    2748             : 
    2749             : static int
    2750       47788 : exps_have_func_or_cmp(list *exps, bool cmp)
    2751             : {
    2752       47788 :         if (list_empty(exps))
    2753             :                 return 0;
    2754      132407 :         for(node *n=exps->h; n; n=n->next) {
    2755       91860 :                 sql_exp *e = n->data;
    2756             : 
    2757       91860 :                 if (exp_has_func_or_cmp(e, cmp))
    2758             :                         return 1;
    2759             :         }
    2760             :         return 0;
    2761             : }
    2762             : 
    2763             : static int
    2764     1657078 : exp_has_func_or_cmp(sql_exp *e, bool cmp)
    2765             : {
    2766     1657078 :         if (!e)
    2767             :                 return 0;
    2768     1657078 :         switch (e->type) {
    2769      154242 :         case e_atom:
    2770      154242 :                 if (e->f)
    2771           0 :                         return exps_have_func_or_cmp(e->f, true);
    2772             :                 return 0;
    2773       16480 :         case e_convert:
    2774             :                 {
    2775       16480 :                         sql_subtype *t = exp_totype(e);
    2776       16480 :                         sql_subtype *f = exp_fromtype(e);
    2777       16480 :                         if (t->type->eclass == EC_FLT && (f->type->eclass == EC_DEC || f->type->eclass == EC_NUM))
    2778         166 :                                 return exp_has_func_or_cmp(e->l, cmp);
    2779       16314 :                         if (f->type->localtype > t->type->localtype)
    2780             :                                 return true;
    2781             :                 }
    2782       14120 :                 return exp_has_func_or_cmp(e->l, cmp);
    2783             :         case e_func:
    2784             :                 return 1;
    2785       20915 :         case e_aggr:
    2786       20915 :                 if (e->l)
    2787       18069 :                         return exps_have_func_or_cmp(e->l, true);
    2788             :                 return 0;
    2789      129877 :         case e_cmp:
    2790      129877 :                 if (cmp)
    2791             :                         return 1;
    2792      122718 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2793       18499 :                         return (exps_have_func_or_cmp(e->l, true) || exps_have_func_or_cmp(e->r, true));
    2794      111391 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2795       14286 :                         return (exp_has_func_or_cmp(e->l, true) || exps_have_func_or_cmp(e->r, true));
    2796             :                 } else {
    2797      194304 :                         return (exp_has_func_or_cmp(e->l, true) || exp_has_func_or_cmp(e->r, true) ||
    2798       89187 :                                         (e->f && exp_has_func_or_cmp(e->f, true)));
    2799             :                 }
    2800             :         case e_column:
    2801             :         case e_psm:
    2802             :                 return 0;
    2803             :         }
    2804             :         return 0;
    2805             : }
    2806             : 
    2807             : int
    2808     1348269 : exp_has_func(sql_exp *e)
    2809             : {
    2810     1348269 :         return exp_has_func_or_cmp(e, false);
    2811             : }
    2812             : 
    2813             : static int
    2814      760840 : exps_have_sideeffect( list *exps)
    2815             : {
    2816      760840 :         node *n;
    2817      760840 :         int has_sideeffect = 0;
    2818             : 
    2819     2334738 :         for(n=exps->h; n && !has_sideeffect; n=n->next)
    2820     1573898 :                 has_sideeffect |= exp_has_sideeffect(n->data);
    2821      760840 :         return has_sideeffect;
    2822             : }
    2823             : 
    2824             : int
    2825     1752501 : exp_has_sideeffect( sql_exp *e )
    2826             : {
    2827     1777636 :         switch (e->type) {
    2828       25135 :         case e_convert:
    2829       25135 :                 return exp_has_sideeffect(e->l);
    2830      760856 :         case e_func:
    2831             :                 {
    2832      760856 :                         sql_subfunc *f = e->f;
    2833             : 
    2834      760856 :                         if (f->func->side_effect)
    2835             :                                 return 1;
    2836      760842 :                         if (e->l)
    2837      760840 :                                 return exps_have_sideeffect(e->l);
    2838             :                         return 0;
    2839             :                 }
    2840      490702 :         case e_atom:
    2841      490702 :                 if (e->f)
    2842           0 :                         return exps_have_sideeffect(e->f);
    2843             :                 return 0;
    2844             :         case e_aggr:
    2845             :         case e_cmp:
    2846             :         case e_column:
    2847             :         case e_psm:
    2848             :                 return 0;
    2849             :         }
    2850             :         return 0;
    2851             : }
    2852             : 
    2853             : bool
    2854     1093045 : exps_have_unsafe(list *exps, bool allow_identity, bool card)
    2855             : {
    2856     1093045 :         int unsafe = 0;
    2857             : 
    2858     1093045 :         if (list_empty(exps))
    2859             :                 return 0;
    2860     3781458 :         for (node *n = exps->h; n && !unsafe; n = n->next)
    2861     2709268 :                 unsafe |= exp_unsafe(n->data, allow_identity, card);
    2862     1072190 :         return unsafe;
    2863             : }
    2864             : 
    2865             : bool
    2866    12102573 : exp_unsafe(sql_exp *e, bool allow_identity, bool card)
    2867             : {
    2868    12102573 :         switch (e->type) {
    2869      768723 :         case e_convert:
    2870      768723 :                 if (card) {
    2871        8886 :                         sql_subtype *t = exp_totype(e);
    2872        8886 :                         sql_subtype *f = exp_fromtype(e);
    2873        8886 :                         if (t->type->eclass == EC_FLT && (f->type->eclass == EC_DEC || f->type->eclass == EC_NUM))
    2874             :                                 return false;
    2875        8801 :                         if (f->type->localtype > t->type->localtype)
    2876             :                                 return true;
    2877             :                         return false;
    2878             :                 }
    2879      759837 :                 return exp_unsafe(e->l, allow_identity, card);
    2880     1032224 :         case e_aggr:
    2881             :         case e_func: {
    2882     1032224 :                 sql_subfunc *f = e->f;
    2883             : 
    2884     1032224 :                 if (IS_ANALYTIC(f->func) || !LANG_INT_OR_MAL(f->func->lang) || f->func->side_effect || (!allow_identity && is_identity(e, NULL)))
    2885       44930 :                         return 1;
    2886      987294 :                 return exps_have_unsafe(e->l, allow_identity, card);
    2887       50617 :         } break;
    2888       50617 :         case e_cmp: {
    2889       50617 :                 if (e->flag == cmp_in || e->flag == cmp_notin) {
    2890        6646 :                         return exp_unsafe(e->l, allow_identity, card) || exps_have_unsafe(e->r, allow_identity, card);
    2891       43971 :                 } else if (e->flag == cmp_or || e->flag == cmp_filter) {
    2892        9938 :                         return exps_have_unsafe(e->l, allow_identity, card) || exps_have_unsafe(e->r, allow_identity, card);
    2893             :                 } else {
    2894       68098 :                         return exp_unsafe(e->l, allow_identity, card) || exp_unsafe(e->r, allow_identity, card) || (e->f && exp_unsafe(e->f, allow_identity, card));
    2895             :                 }
    2896     1171945 :         } break;
    2897     1171945 :         case e_atom: {
    2898     1171945 :                 if (e->f)
    2899        8463 :                         return exps_have_unsafe(e->f, allow_identity, card);
    2900             :                 return 0;
    2901             :         } break;
    2902             :         case e_column:
    2903             :         case e_psm:
    2904             :                 return 0;
    2905             :         }
    2906             :         return 0;
    2907             : }
    2908             : 
    2909             : static inline int
    2910     3703339 : exp_key( sql_exp *e )
    2911             : {
    2912     3703339 :         if (e->alias.name)
    2913     3703338 :                 return hash_key(e->alias.name);
    2914             :         return 0;
    2915             : }
    2916             : 
    2917             : sql_exp *
    2918          82 : exps_uses_nid(list *exps, int nid)
    2919             : {
    2920          82 :         if (exps) {
    2921         153 :                 for (node *en = exps->h; en; en = en->next ) {
    2922         147 :                         sql_exp *e = en->data;
    2923             : 
    2924         147 :                         if (e->nid == nid)
    2925          76 :                                 return e;
    2926             :                 }
    2927             :         }
    2928             :         return NULL;
    2929             : }
    2930             : 
    2931             : sql_exp *
    2932    58783351 : exps_bind_nid(list *exps, int nid)
    2933             : {
    2934    58783351 :         if (exps) {
    2935  5358078064 :                 for (node *en = exps->h; en; en = en->next ) {
    2936  5322441328 :                         sql_exp *e = en->data;
    2937             : 
    2938  5322441328 :                         if (e->alias.label == nid)
    2939    23145310 :                                 return e;
    2940  5299296018 :                         if (is_nested(e)) {
    2941         799 :                                 e = exps_bind_nid(e->f, nid);
    2942         811 :                                 if (e)
    2943         196 :                                         return e;
    2944             :                         }
    2945             :                 }
    2946             :         }
    2947             :         return NULL;
    2948             : }
    2949             : 
    2950             : sql_exp *
    2951     1298370 : exps_bind_column(list *exps, const char *cname, int *ambiguous, int *multiple, int no_tname)
    2952             : {
    2953     1298370 :         sql_exp *res = NULL;
    2954             : 
    2955     1298370 :         if (exps && cname) {
    2956     1295420 :                 node *en;
    2957             : 
    2958     1295420 :                 if (exps) {
    2959     1295420 :                         if (!exps->ht && list_length(exps) > HASH_MIN_SIZE) {
    2960      111913 :                                 exps->ht = hash_new(exps->sa, list_length(exps), (fkeyvalue)&exp_key);
    2961      111913 :                                 if (exps->ht == NULL)
    2962             :                                         return NULL;
    2963      844046 :                                 for (en = exps->h; en; en = en->next ) {
    2964      732133 :                                         sql_exp *e = en->data;
    2965      732133 :                                         if (e->alias.name) {
    2966      732133 :                                                 int key = exp_key(e);
    2967             : 
    2968      732133 :                                                 if (hash_add(exps->ht, key, e) == NULL)
    2969             :                                                         return NULL;
    2970             :                                         }
    2971             :                                 }
    2972             :                         }
    2973     1295420 :                         if (exps->ht) {
    2974      693379 :                                 int key = hash_key(cname);
    2975      693379 :                                 sql_hash_e *he = exps->ht->buckets[key&(exps->ht->size-1)];
    2976             : 
    2977     1327245 :                                 for (; he; he = he->chain) {
    2978      633871 :                                         sql_exp *e = he->value;
    2979             : 
    2980      633871 :                                         if (e->alias.name && strcmp(e->alias.name, cname) == 0 && (!no_tname || !e->alias.parent)) {
    2981      146907 :                                                 if (res && multiple)
    2982           5 :                                                         *multiple = 1;
    2983      146907 :                                                 if (!res)
    2984      146907 :                                                         res = e;
    2985             : 
    2986      146907 :                                                 if (res && res != e && e->alias.parent && res->alias.parent && !a_match(e->alias.parent, res->alias.parent)) {
    2987           5 :                                                         if (ambiguous)
    2988           5 :                                                                 *ambiguous = 1;
    2989           5 :                                                         return NULL;
    2990             :                                                 }
    2991             :                                                 res = e;
    2992             :                                         }
    2993             :                                 }
    2994      693374 :                                 return res;
    2995             :                         }
    2996             :                 }
    2997     1771843 :                 for (en = exps->h; en; en = en->next ) {
    2998     1169807 :                         sql_exp *e = en->data;
    2999             : 
    3000     1169807 :                         if (e->alias.name && strcmp(e->alias.name, cname) == 0 && (!no_tname || !e->alias.parent)) {
    3001       64252 :                                 if (res && multiple)
    3002           8 :                                         *multiple = 1;
    3003       64252 :                                 if (!res)
    3004       64252 :                                         res = e;
    3005             : 
    3006       64252 :                                 if (res && res != e && e->alias.parent && res->alias.parent && !a_match(e->alias.parent, res->alias.parent)) {
    3007           5 :                                         if (ambiguous)
    3008           5 :                                                 *ambiguous = 1;
    3009           5 :                                         return NULL;
    3010             :                                 }
    3011             :                                 res = e;
    3012             :                         }
    3013             :                 }
    3014             :         }
    3015             :         return res;
    3016             : }
    3017             : 
    3018             : sql_exp *
    3019     1289978 : exps_bind_column2(list *exps, sql_alias *rname, const char *cname, int *multiple)
    3020             : {
    3021     1289978 :         sql_exp *res = NULL;
    3022             : 
    3023     1289978 :         if (exps) {
    3024     1289948 :                 node *en;
    3025             : 
    3026     1289948 :                 if (!exps->ht && list_length(exps) > HASH_MIN_SIZE) {
    3027      131678 :                         exps->ht = hash_new(exps->sa, list_length(exps), (fkeyvalue)&exp_key);
    3028      131678 :                         if (exps->ht == NULL)
    3029             :                                 return res;
    3030             : 
    3031     2234512 :                         for (en = exps->h; en; en = en->next ) {
    3032     2102834 :                                 sql_exp *e = en->data;
    3033     2102834 :                                 if (e->alias.name) {
    3034     2102834 :                                         int key = exp_key(e);
    3035             : 
    3036     2102834 :                                         if (hash_add(exps->ht, key, e) == NULL)
    3037             :                                                 return res;
    3038             :                                 }
    3039             :                         }
    3040             :                 }
    3041     1289948 :                 if (exps->ht) {
    3042      917161 :                         int key = hash_key(cname);
    3043      917161 :                         sql_hash_e *he = exps->ht->buckets[key&(exps->ht->size-1)];
    3044             : 
    3045     2728805 :                         for (; he; he = he->chain) {
    3046     1812916 :                                 sql_exp *e = he->value;
    3047             : 
    3048     1812916 :                                 if (e && e->alias.name && e->alias.parent && strcmp(e->alias.name, cname) == 0 && a_match_obj(e->alias.parent, rname)) {
    3049      658169 :                                         if (res && multiple)
    3050           0 :                                                 *multiple = 1;
    3051      658169 :                                         if (!res)
    3052             :                                                 res = e;
    3053      658169 :                                         if (res && has_label(res)) /* aliases maybe used multiple times without problems */
    3054        1272 :                                                 return res;
    3055             :                                 }
    3056             :                         }
    3057      915889 :                         return res;
    3058             :                 }
    3059     1289744 :                 for (en = exps->h; en; en = en->next ) {
    3060      920817 :                         sql_exp *e = en->data;
    3061             : 
    3062      920817 :                         if (e && e->alias.name && e->alias.parent && strcmp(e->alias.name, cname) == 0 && a_match_obj(e->alias.parent, rname)) {
    3063      274629 :                                 if (res && multiple)
    3064           1 :                                         *multiple = 1;
    3065      274629 :                                 if (!res)
    3066             :                                         res = e;
    3067      274629 :                                 if (res && has_label(res)) /* aliases maybe used multiple times without problems */
    3068        3860 :                                         return res;
    3069             :                         }
    3070             :                 }
    3071             :         }
    3072             :         return res;
    3073             : }
    3074             : 
    3075             : unsigned int
    3076     3273459 : exps_card( list *l )
    3077             : {
    3078     3273459 :         node *n;
    3079     3273459 :         unsigned int card = CARD_ATOM;
    3080             : 
    3081    14820446 :         if (l) for(n = l->h; n; n = n->next) {
    3082    11546987 :                 sql_exp *e = n->data;
    3083             : 
    3084    11546987 :                 if (e && card < e->card)
    3085    11546987 :                         card = e->card;
    3086             :         }
    3087     3273459 :         return card;
    3088             : }
    3089             : 
    3090             : void
    3091       43501 : exps_fix_card( list *exps, unsigned int card)
    3092             : {
    3093       43501 :         if (exps)
    3094     1083922 :                 for (node *n = exps->h; n; n = n->next) {
    3095     1040421 :                 sql_exp *e = n->data;
    3096             : 
    3097     1040421 :                 if (e && e->card > card)
    3098           0 :                         e->card = card;
    3099             :         }
    3100       43501 : }
    3101             : 
    3102             : void
    3103        6166 : exps_setcard( list *exps, unsigned int card)
    3104             : {
    3105        6166 :         if (exps)
    3106       31572 :                 for (node *n = exps->h; n; n = n->next) {
    3107       25406 :                         sql_exp *e = n->data;
    3108             : 
    3109       25406 :                         if (e && e->card != CARD_ATOM)
    3110       25378 :                                 e->card = card;
    3111             :                 }
    3112        6166 : }
    3113             : 
    3114             : int
    3115           0 : exps_intern(list *exps)
    3116             : {
    3117           0 :         if (exps)
    3118           0 :                 for (node *n=exps->h; n; n = n->next) {
    3119           0 :                         sql_exp *e = n->data;
    3120             : 
    3121           0 :                         if (is_intern(e))
    3122             :                                 return 1;
    3123             :                 }
    3124             :         return 0;
    3125             : }
    3126             : 
    3127             : sql_exp *
    3128        4045 : exps_find_one_multi_exp(list *exps)
    3129             : {
    3130        4045 :         sql_exp *l = NULL;
    3131        4045 :         int skip = 0;
    3132             : 
    3133             :         /* Find one and only 1 expression with card > CARD_ATOM */
    3134        4045 :         if (!list_empty(exps)) {
    3135        8103 :                 for (node *m = exps->h ; m && !skip ; m = m->next) {
    3136        4058 :                         sql_exp *e = m->data;
    3137             : 
    3138        4058 :                         if (e->card > CARD_ATOM) {
    3139        4054 :                                 skip |= l != NULL;
    3140        4054 :                                 l = e;
    3141             :                         }
    3142             :                 }
    3143             :         }
    3144        4045 :         if (skip)
    3145           9 :                 l = NULL;
    3146        4045 :         return l;
    3147             : }
    3148             : 
    3149             : const char *
    3150      131893 : compare_func( comp_type t, int anti )
    3151             : {
    3152      131893 :         switch(t) {
    3153       83816 :         case cmp_equal:
    3154       83816 :                 return anti?"<>":"=";
    3155        8193 :         case cmp_lt:
    3156        8193 :                 return anti?">":"<";
    3157        2119 :         case cmp_lte:
    3158        2119 :                 return anti?">=":"<=";
    3159        1180 :         case cmp_gte:
    3160        1180 :                 return anti?"<=":">=";
    3161       32074 :         case cmp_gt:
    3162       32074 :                 return anti?"<":">";
    3163        4511 :         case cmp_notequal:
    3164        4511 :                 return anti?"=":"<>";
    3165             :         default:
    3166             :                 return NULL;
    3167             :         }
    3168             : }
    3169             : 
    3170             : int
    3171     9709794 : is_identity( sql_exp *e, sql_rel *r)
    3172             : {
    3173     9719672 :         switch(e->type) {
    3174       34109 :         case e_column:
    3175       34109 :                 if (r && is_project(r->op) && !is_set(r->op)) {
    3176       12472 :                         sql_exp *re = NULL;
    3177       12472 :                         assert(e->nid);
    3178       12472 :                         re = exps_bind_nid(r->exps, e->nid);
    3179       12472 :                         if (re)
    3180        9878 :                                 return is_identity(re, r->l);
    3181             :                 }
    3182             :                 return 0;
    3183     9678601 :         case e_func: {
    3184     9678601 :                 sql_subfunc *f = e->f;
    3185     9678601 :                 return !f->func->s && strcmp(f->func->base.name, "identity") == 0;
    3186             :         }
    3187             :         default:
    3188             :                 return 0;
    3189             :         }
    3190             : }
    3191             : 
    3192             : list *
    3193          75 : exps_alias(mvc *sql, list *exps)
    3194             : {
    3195          75 :         list *nl = new_exp_list(sql->sa);
    3196             : 
    3197          75 :         if (exps)
    3198         342 :                 for (node *n = exps->h; n; n = n->next) {
    3199         267 :                         sql_exp *e = n->data, *ne;
    3200             : 
    3201         267 :                         assert(exp_name(e));
    3202         267 :                         ne = exp_ref(sql, e);
    3203         267 :                         append(nl, ne);
    3204             :                 }
    3205          75 :         return nl;
    3206             : }
    3207             : 
    3208             : list *
    3209      142854 : exps_copy(mvc *sql, list *exps)
    3210             : {
    3211      142854 :         list *nl;
    3212             : 
    3213      142854 :         if (mvc_highwater(sql))
    3214           0 :                 return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    3215             : 
    3216      142854 :         if (!exps)
    3217             :                 return NULL;
    3218      124472 :         nl = new_exp_list(sql->sa);
    3219      572007 :         for (node *n = exps->h; n; n = n->next) {
    3220      447535 :                 sql_exp *arg = n->data;
    3221             : 
    3222      447535 :                 arg = exp_copy(sql, arg);
    3223      447535 :                 if (!arg)
    3224             :                         return NULL;
    3225      447535 :                 append(nl, arg);
    3226             :         }
    3227             :         return nl;
    3228             : }
    3229             : 
    3230             : sql_exp *
    3231     2628221 : exp_copy(mvc *sql, sql_exp * e)
    3232             : {
    3233     2628221 :         sql_exp *l, *r, *r2, *ne = NULL;
    3234             : 
    3235     2628221 :         if (mvc_highwater(sql))
    3236           0 :                 return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    3237             : 
    3238     2628221 :         if (!e)
    3239             :                 return NULL;
    3240     2628221 :         switch(e->type){
    3241     2228136 :         case e_column:
    3242     2228136 :                 ne = exp_column(sql->sa, e->l, e->r, exp_subtype(e), e->card, has_nil(e), is_unique(e), is_intern(e));
    3243     2228136 :                 ne->flag = e->flag;
    3244     2228136 :                 ne->alias.label = e->alias.label;
    3245     2228136 :                 ne->nid = e->nid;
    3246     2228136 :                 break;
    3247       42249 :         case e_cmp:
    3248       42249 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    3249        2622 :                         list *l = exps_copy(sql, e->l);
    3250        2622 :                         list *r = exps_copy(sql, e->r);
    3251             : 
    3252        2622 :                         if (e->flag == cmp_filter)
    3253         735 :                                 ne = exp_filter(sql->sa, l, r, e->f, is_anti(e));
    3254             :                         else
    3255        1887 :                                 ne = exp_or(sql->sa, l, r, is_anti(e));
    3256       39627 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    3257        1438 :                         sql_exp *l = exp_copy(sql, e->l);
    3258        1438 :                         list *r = exps_copy(sql, e->r);
    3259             : 
    3260        1438 :                         ne = exp_in(sql->sa, l, r, e->flag);
    3261             :                 } else {
    3262       38189 :                         l = exp_copy(sql, e->l);
    3263       38189 :                         r = exp_copy(sql, e->r);
    3264             : 
    3265       38189 :                         if (e->f) {
    3266         635 :                                 r2 = exp_copy(sql, e->f);
    3267         635 :                                 ne = exp_compare2(sql->sa, l, r, r2, e->flag, is_symmetric(e));
    3268             :                         } else {
    3269       37554 :                                 ne = exp_compare(sql->sa, l, r, e->flag);
    3270             :                         }
    3271             :                 }
    3272             :                 break;
    3273       29313 :         case e_convert:
    3274       29313 :                 ne = exp_convert(sql, exp_copy(sql, e->l), exp_fromtype(e), exp_totype(e));
    3275       29313 :                 break;
    3276       13551 :         case e_aggr:
    3277             :         case e_func: {
    3278       13551 :                 list *l = exps_copy(sql, e->l);
    3279             : 
    3280       13551 :                 if (e->type == e_func)
    3281       11777 :                         ne = exp_op(sql->sa, l, e->f);
    3282             :                 else
    3283        1774 :                         ne = exp_aggr(sql->sa, l, e->f, need_distinct(e), need_no_nil(e), e->card, has_nil(e));
    3284       13551 :                 if (e->r) { /* copy obe and gbe lists */
    3285           1 :                         list *er = (list*) e->r;
    3286           1 :                         assert(list_length(er) <= 2);
    3287           1 :                         if (list_length(er) == 2)
    3288           0 :                                 ne->r = list_append(list_append(sa_list(sql->sa), exps_copy(sql, er->h->data)), exps_copy(sql, er->h->next->data));
    3289             :                         else
    3290           1 :                                 ne->r = list_append(sa_list(sql->sa), exps_copy(sql, er->h->data));
    3291             :                 }
    3292             :                 break;
    3293             :         }
    3294      314968 :         case e_atom:
    3295      314968 :                 if (e->l)
    3296      310026 :                         ne = exp_atom(sql->sa, e->l);
    3297        4942 :                 else if (e->r) {
    3298        3622 :                         sql_var_name *vname = (sql_var_name*) e->r;
    3299        3622 :                         ne = exp_param_or_declared(sql->sa, vname->sname, vname->name, &e->tpe, e->flag);
    3300        1320 :                 } else if (e->f)
    3301         771 :                         ne = exp_values(sql->sa, exps_copy(sql, e->f));
    3302             :                 else
    3303         549 :                         ne = exp_atom_ref(sql->sa, e->flag, &e->tpe);
    3304             :                 break;
    3305           4 :         case e_psm:
    3306           4 :                 if (e->flag & PSM_SET) {
    3307           0 :                         ne = exp_set(sql->sa, e->alias.parent->name, e->alias.name, exp_copy(sql, e->l), GET_PSM_LEVEL(e->flag));
    3308           4 :                 } else if (e->flag & PSM_VAR) {
    3309           0 :                         if (e->f)
    3310           0 :                                 ne = exp_table(sql->sa, e->alias.name, e->f, GET_PSM_LEVEL(e->flag));
    3311             :                         else
    3312           0 :                                 ne = exp_var(sql->sa, e->alias.parent->name, e->alias.name, &e->tpe, GET_PSM_LEVEL(e->flag));
    3313           4 :                 } else if (e->flag & PSM_RETURN) {
    3314           0 :                         ne = exp_return(sql->sa, exp_copy(sql, e->l), GET_PSM_LEVEL(e->flag));
    3315           4 :                 } else if (e->flag & PSM_WHILE) {
    3316           0 :                         ne = exp_while(sql->sa, exp_copy(sql, e->l), exps_copy(sql, e->r));
    3317           4 :                 } else if (e->flag & PSM_IF) {
    3318           0 :                         ne = exp_if(sql->sa, exp_copy(sql, e->l), exps_copy(sql, e->r), exps_copy(sql, e->f));
    3319           4 :                 } else if (e->flag & PSM_REL) {
    3320           4 :                         if (!e->alias.label)
    3321           4 :                                 exp_label(sql->sa, e, ++sql->label);
    3322           4 :                         return exp_ref(sql, e);
    3323           0 :                 } else if (e->flag & PSM_EXCEPTION) {
    3324           0 :                         ne = exp_exception(sql->sa, exp_copy(sql, e->l), (const char *) e->r);
    3325             :                 }
    3326             :                 break;
    3327             :         }
    3328     2628217 :         if (!ne)
    3329           0 :                 return ne;
    3330     2628217 :         if (e->alias.name)
    3331     2381867 :                 exp_prop_alias(sql->sa, ne, e);
    3332     2628217 :         ne = exp_propagate(sql->sa, ne, e);
    3333     2628217 :         if (is_freevar(e))
    3334        8370 :                 set_freevar(ne, is_freevar(e)-1);
    3335             :         return ne;
    3336             : }
    3337             : 
    3338             : /* scaling for the division operator */
    3339             : static sql_exp *
    3340        2627 : exp_scale_algebra(mvc *sql, sql_subfunc *f, sql_rel *rel, sql_exp *l, sql_exp *r)
    3341             : {
    3342        2627 :         sql_subtype *lt = exp_subtype(l);
    3343        2627 :         sql_subtype *rt = exp_subtype(r);
    3344             : 
    3345        2627 :         if (!EC_INTERVAL(lt->type->eclass) && lt->type->scale == SCALE_FIX &&
    3346        2577 :                 (lt->scale || rt->scale) && strcmp(sql_func_imp(f->func), "/") == 0) {
    3347         170 :                 sql_subtype *res = f->res->h->data;
    3348         170 :                 unsigned int scale, digits, digL, scaleL;
    3349         170 :                 sql_subtype nlt;
    3350             : 
    3351             :                 /* scale fixing may require a larger type ! */
    3352         170 :                 scaleL = (lt->scale < sql->div_min_scale) ? sql->div_min_scale : lt->scale;
    3353         170 :                 scaleL += (scaleL < rt->scale) ? rt->scale - scaleL : 0;
    3354         170 :                 scale = scaleL;
    3355         170 :                 scaleL += rt->scale;
    3356         170 :                 digL = lt->digits + (scaleL - lt->scale);
    3357         170 :                 digits = (digL > rt->digits) ? digL : rt->digits;
    3358             : 
    3359             :                 /* HACK alert: digits should be less than max */
    3360             : #ifdef HAVE_HGE
    3361         170 :                 if (res->type->radix == 10 && digits > 38)
    3362         170 :                         digits = 38;
    3363         170 :                 if (res->type->radix == 2 && digits > 127)
    3364         170 :                         digits = 127;
    3365             : #else
    3366             :                 if (res->type->radix == 10 && digits > 18)
    3367             :                         digits = 18;
    3368             :                 if (res->type->radix == 2 && digits > 63)
    3369             :                         digits = 63;
    3370             : #endif
    3371             : 
    3372         170 :                 sql_find_subtype(&nlt, lt->type->base.name, digL, scaleL);
    3373         170 :                 if (nlt.digits < scaleL)
    3374           2 :                         return sql_error(sql, 01, SQLSTATE(42000) "Scale (%d) overflows type", scaleL);
    3375         168 :                 l = exp_check_type(sql, &nlt, rel, l, type_equal);
    3376             : 
    3377         168 :                 sql_find_subtype(res, lt->type->base.name, digits, scale);
    3378        2457 :         } else if (lt->type->scale == SCALE_FIX) {
    3379        2260 :                 sql_subtype *res = f->res->h->data;
    3380        2260 :                 if (res->type->eclass == EC_NUM)
    3381        2239 :                         res->digits = MAX(lt->digits, rt->digits);
    3382             :         }
    3383             :         return l;
    3384             : }
    3385             : 
    3386             : sql_exp *
    3387        2627 : exps_scale_algebra(mvc *sql, sql_subfunc *f, sql_rel *rel, list *exps)
    3388             : {
    3389        2627 :         if (list_length(exps) != 2)
    3390             :                 return NULL;
    3391        2627 :         sql_exp *e = exp_scale_algebra(sql, f, rel, exps->h->data, exps->h->next->data);
    3392        2627 :         if (e)
    3393        2625 :                 exps->h->data = e;
    3394             :         return e;
    3395             : }
    3396             : 
    3397             : void
    3398      188944 : exps_digits_add(sql_subfunc *f, list *exps)
    3399             : {
    3400             :         /* concat and friends need larger results */
    3401      188944 :         if (!f->func->res)
    3402             :                 return;
    3403      188944 :         int digits = 0;
    3404      336193 :         for(node *n = exps->h; n; n = n->next) {
    3405      275258 :                 sql_subtype *t = exp_subtype(n->data);
    3406             : 
    3407      275258 :                 if (!t->digits) {
    3408             :                         digits = 0;
    3409             :                         break;
    3410             :                 }
    3411      147249 :                 digits += t->digits;
    3412             :         }
    3413      188944 :         sql_subtype *res = f->res->h->data;
    3414      188944 :         res->digits = digits;
    3415             : }
    3416             : 
    3417             : void
    3418       25347 : exps_sum_scales(sql_subfunc *f, list *exps)
    3419             : {
    3420             :         /* sum scales and digits for multiply operation */
    3421       25347 :         sql_arg *ares = f->func->res->h->data;
    3422             : 
    3423       25347 :         if (ares->type.type->scale == SCALE_FIX && strcmp(sql_func_imp(f->func), "*") == 0) {
    3424       24078 :                 unsigned int digits = 0, scale = 0;
    3425       24078 :                 sql_type *largesttype = ares->type.type;
    3426             : 
    3427       72234 :                 for(node *n = exps->h; n; n = n->next) {
    3428       48156 :                         sql_exp *e = n->data;
    3429       48156 :                         sql_subtype *t = exp_subtype(e);
    3430             : 
    3431       48156 :                         scale += t->scale;
    3432       48156 :                         digits += t->digits;
    3433       48156 :                         if (largesttype->localtype < t->type->localtype)
    3434           0 :                                 largesttype = t->type;
    3435             :                 }
    3436       24078 :                 sql_subtype *res = f->res->h->data;
    3437             : 
    3438       24078 :                 res->scale = scale;
    3439       24078 :                 res->digits = digits;
    3440             : 
    3441             :                 /* HACK alert: digits should be less than max */
    3442             : #ifdef HAVE_HGE
    3443       24078 :                 if (ares->type.type->radix == 10 && res->digits > 38) {
    3444        2513 :                         res->digits = 38;
    3445        2513 :                         res->scale = MIN(res->scale, res->digits - 1);
    3446             :                 }
    3447       24078 :                 if (ares->type.type->radix == 2 && res->digits > 127) {
    3448          25 :                         res->digits = 127;
    3449          25 :                         res->scale = MIN(res->scale, res->digits - 1);
    3450             :                 }
    3451             : #else
    3452             :                 if (ares->type.type->radix == 10 && res->digits > 18) {
    3453             :                         res->digits = 18;
    3454             :                         res->scale = MIN(res->scale, res->digits - 1);
    3455             :                 }
    3456             :                 if (ares->type.type->radix == 2 && res->digits > 63) {
    3457             :                         res->digits = 63;
    3458             :                         res->scale = MIN(res->scale, res->digits - 1);
    3459             :                 }
    3460             : #endif
    3461             : 
    3462       24078 :                 sql_subtype t;
    3463             :                 /* numeric types are fixed length */
    3464       24078 :                 if (ares->type.type->eclass == EC_NUM) {
    3465             : #ifdef HAVE_HGE
    3466       21276 :                         if (ares->type.type->localtype == TYPE_hge && res->digits == 127)
    3467          25 :                                 t = *sql_bind_localtype("hge");
    3468             :                         else
    3469             : #endif
    3470       21251 :                         if (ares->type.type->localtype == TYPE_lng && res->digits == 63)
    3471           3 :                                 t = *sql_bind_localtype("lng");
    3472       21248 :                         else if (res->type->digits >= res->digits)
    3473        8855 :                                 t = *res; /* we cannot reduce types! */
    3474             :                         else
    3475       12393 :                                 sql_find_numeric(&t, ares->type.type->localtype, res->digits);
    3476             :                 } else {
    3477        2802 :                         if (res->digits > largesttype->digits)
    3478         216 :                                 sql_find_subtype(&t, largesttype->base.name, res->digits, res->scale);
    3479             :                         else
    3480        2586 :                                 sql_init_subtype(&t, largesttype, res->digits, res->scale);
    3481             :                 }
    3482       24078 :                 *res = t;
    3483             :         }
    3484       25347 : }
    3485             : 
    3486             : void
    3487      114593 : exps_max_bits(sql_subfunc *f, list *exps)
    3488             : {
    3489             :         /* + and - have max_bits + 1 */
    3490      114593 :         if (!f->func->res)
    3491             :                 return;
    3492      114593 :         unsigned int digits = 0;
    3493      343779 :         for(node *n = exps->h; n; n = n->next) {
    3494      229186 :                 sql_subtype *t = exp_subtype(n->data);
    3495             : 
    3496      229186 :                 if (!t)
    3497           0 :                         continue;
    3498      229186 :                 if (digits < t->digits)
    3499      229186 :                         digits = t->digits;
    3500             :         }
    3501             :         /* + and - (because of negative numbers) could need one extra bit (or digit) */
    3502      114593 :         digits += 1;
    3503      114593 :         sql_subtype *res = f->res->h->data;
    3504      114593 :         if (digits > res->type->digits)
    3505       49588 :                 res = sql_find_numeric(res, res->type->localtype, digits);
    3506             :         else
    3507       65005 :                 res->digits = digits;
    3508             : }
    3509             : 
    3510             : void
    3511       19789 : exps_inout(sql_subfunc *f, list *exps)
    3512             : {
    3513             :         /* output == first input */
    3514       19789 :         if (!f->func->res)
    3515             :                 return;
    3516       19789 :         sql_subtype *res = f->res->h->data;
    3517       19789 :         bool is_decimal = (res->type->eclass == EC_DEC);
    3518       19789 :         unsigned int digits = 0, scale = 0;
    3519       19789 :         sql_type *largesttype = NULL;
    3520       19789 :         for(node *n = exps->h; n; n = n->next) {
    3521       19789 :                 sql_subtype *t = exp_subtype(n->data);
    3522             : 
    3523       19789 :                 if (!t)
    3524           0 :                         continue;
    3525             : 
    3526       19789 :                 if (is_decimal && t->type->eclass == EC_DEC && (!largesttype || largesttype->localtype < t->type->localtype))
    3527         399 :                         largesttype = t->type;
    3528         399 :                 if (is_decimal && t->type->eclass == EC_NUM) {
    3529           0 :                         unsigned int d = bits2digits(t->digits);
    3530           0 :                         digits = d>digits?d:digits;
    3531       19789 :                 } else if (digits < t->digits)
    3532             :                         digits = t->digits;
    3533       19789 :                 if (scale < t->scale)
    3534             :                         scale = t->scale;
    3535             :                 break;
    3536             :         }
    3537       19789 :         if (digits > res->digits || scale > res->scale) {
    3538        9540 :                 if (largesttype)
    3539         385 :                         sql_init_subtype(res, largesttype, digits, scale);
    3540             :                 else
    3541        9155 :                         sql_find_subtype(res, res->type->base.name, digits, scale);
    3542             :         } else
    3543       10249 :                 res->digits = digits;
    3544             : }
    3545             : 
    3546             : /* for aggregates we can reduce the result types size based on real digits/bits used number of known input rows */
    3547             : void
    3548        9485 : exps_largest_int(sql_subfunc *f, list *exps, lng cnt)
    3549             : {
    3550        9485 :         if (!f->func->res || cnt == 0)
    3551             :                 return;
    3552         571 :         sql_subtype *res = f->res->h->data;
    3553         571 :         if (res->type->eclass != EC_DEC && res->type->eclass != EC_NUM)
    3554             :                 return;
    3555         495 :         bool is_decimal = (res->type->eclass == EC_DEC);
    3556         495 :         unsigned int digits = 0, scale = 0, mdigits = is_decimal ? decimal_digits(cnt) : number_bits(cnt);
    3557         495 :         sql_type *largesttype = NULL;
    3558         495 :         for(node *n = exps->h; n; n = n->next) {
    3559         495 :                 sql_subtype *t = exp_subtype(n->data);
    3560             : 
    3561         495 :                 if (!t)
    3562           0 :                         continue;
    3563             : 
    3564         495 :                 largesttype = t->type;
    3565         495 :                 if (is_decimal && t->type->eclass == EC_NUM) {
    3566           0 :                         unsigned int d = bits2digits(t->digits);
    3567           0 :                         digits = d>digits?d:digits;
    3568         495 :                 } else if (digits < t->digits)
    3569             :                         digits = t->digits;
    3570         495 :                 if (scale < t->scale)
    3571             :                         scale = t->scale;
    3572             :                 break;
    3573             :         }
    3574         495 :         digits += mdigits;
    3575         495 :         if (largesttype && digits <= largesttype->digits)
    3576         421 :                 sql_init_subtype(res, largesttype, digits, scale);
    3577          74 :         else if (is_decimal)
    3578           8 :                 sql_find_subtype(res, res->type->base.name, digits, scale);
    3579             :         else
    3580          66 :                 sql_find_numeric(res, 1, digits);
    3581             : }
    3582             : 
    3583             : #define is_addition(fname) (strcmp(fname, "sql_add") == 0)
    3584             : #define is_subtraction(fname) (strcmp(fname, "sql_sub") == 0)
    3585             : void
    3586      298995 : exps_scale_fix(sql_subfunc *f, list *exps, sql_subtype *atp)
    3587             : {
    3588      298995 :         if (!f->func->res)
    3589             :                 return;
    3590             : 
    3591      298995 :         sql_subtype *res = f->res->h->data;
    3592      298995 :         if (res->type->eclass != EC_ANY && res->type->eclass != EC_DEC)
    3593             :                 return;
    3594             : 
    3595       61960 :         unsigned int digits = 0, scale = 0;
    3596       61960 :         sql_type *largesttype = NULL;
    3597      244760 :         for(node *n = exps->h; n; n = n->next) {
    3598      182800 :                 sql_subtype *t = exp_subtype(n->data);
    3599             : 
    3600      182800 :                 if (!t)
    3601           0 :                         continue;
    3602      182800 :                 if (digits < t->digits)
    3603             :                         digits = t->digits;
    3604      182800 :                 if (scale < t->scale)
    3605             :                         scale = t->scale;
    3606      182800 :                 if (t->type->eclass == EC_DEC && (!largesttype || largesttype->localtype < t->type->localtype))
    3607      182800 :                         largesttype = t->type;
    3608             :         }
    3609       61960 :         res->scale = scale;
    3610       61960 :         if (res->type->eclass == EC_DEC)
    3611         646 :                 digits += (is_addition(f->func->base.name) || is_subtraction(f->func->base.name));
    3612       61960 :         if (digits > res->type->digits) {
    3613       61638 :                 if (largesttype && largesttype->localtype > res->type->localtype)
    3614          75 :                         sql_init_subtype(res, largesttype, digits, scale);
    3615             :                 else
    3616       61563 :                         sql_find_subtype(res, res->type->localtype?res->type->base.name:atp->type->base.name, digits, scale);
    3617         322 :         } else if (res->type->eclass == EC_DEC || res->type->eclass == EC_NUM)
    3618         252 :                 res->digits = digits;
    3619             : }
    3620             : 
    3621             : int
    3622       96932 : exp_aggr_is_count(sql_exp *e)
    3623             : {
    3624       96932 :         if (e->type == e_aggr && !((sql_subfunc *)e->f)->func->s && strcmp(((sql_subfunc *)e->f)->func->base.name, "count") == 0)
    3625       34461 :                 return 1;
    3626             :         return 0;
    3627             : }
    3628             : 
    3629             : list *
    3630       68894 : check_distinct_exp_names(mvc *sql, list *exps)
    3631             : {
    3632       68894 :         list *distinct_exps = NULL;
    3633       68894 :         bool duplicates = false;
    3634             : 
    3635       68894 :         if (list_length(exps) < 2) {
    3636             :                 return exps; /* always true */
    3637       66988 :         } else if (list_length(exps) < 5) {
    3638       15295 :                 distinct_exps = list_distinct(exps, (fcmp) exp_equal, (fdup) NULL);
    3639             :         } else { /* for longer lists, use hashing */
    3640       51693 :                 sql_hash *ht = hash_new(sql->ta, list_length(exps), (fkeyvalue)&exp_key);
    3641             : 
    3642      553472 :                 for (node *n = exps->h; n && !duplicates; n = n->next) {
    3643      501779 :                         sql_exp *e = n->data;
    3644      501779 :                         int key = ht->key(e);
    3645      501779 :                         sql_hash_e *he = ht->buckets[key&(ht->size-1)];
    3646             : 
    3647      699721 :                         for (; he && !duplicates; he = he->chain) {
    3648      197942 :                                 sql_exp *f = he->value;
    3649             : 
    3650      197942 :                                 if (!exp_equal(e, f))
    3651           0 :                                         duplicates = true;
    3652             :                         }
    3653      501779 :                         hash_add(ht, key, e);
    3654             :                 }
    3655             :         }
    3656       66988 :         if ((distinct_exps && list_length(distinct_exps) != list_length(exps)) || duplicates)
    3657           1 :                 return NULL;
    3658             :         return exps;
    3659             : }
    3660             : 
    3661             : static int rel_find_parameter(mvc *sql, sql_subtype *type, sql_rel *rel, int nid, sql_alias *relname, const char *expname);
    3662             : 
    3663             : static int
    3664        1633 : set_exp_type(mvc *sql, sql_subtype *type, sql_rel *rel, sql_exp *e)
    3665             : {
    3666        1639 :         if (mvc_highwater(sql)) {
    3667           0 :                 (void) sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    3668           0 :                 return -1;
    3669             :         }
    3670        1639 :         if (e->type == e_column) {
    3671          60 :                 sql_alias *nrname = e->l;
    3672          60 :                 const char *nename = (const char*) e->r;
    3673             :                 /* find all the column references and set the type */
    3674          60 :                 e->tpe = *type;
    3675          60 :                 assert(e->nid);
    3676          60 :                 return rel_find_parameter(sql, type, rel, e->nid, nrname, nename);
    3677        1579 :         } else if (e->type == e_atom && e->f) {
    3678          25 :                 list *atoms = e->f;
    3679          25 :                 if (!list_empty(atoms))
    3680          61 :                         for (node *n = atoms->h; n; n = n->next)
    3681          36 :                                 if (set_exp_type(sql, type, rel, n->data) < 0) /* set recursively */
    3682             :                                         return -1;
    3683          25 :                 e->tpe = *type;
    3684          25 :                 return 1; /* on a list of atoms, everything should be found */
    3685        1554 :         } else if (e->type == e_atom && !e->l && !e->r && !e->f) {
    3686        1548 :                 e->tpe = *type;
    3687        1548 :                 return set_type_param(sql, type, e->flag) == 0 ? 1 : 0;
    3688           6 :         } else if (exp_is_rel(e)) { /* for relation expressions, restart cycle */
    3689           6 :                 rel = (sql_rel*) e->l;
    3690             :                 /* limiting to these cases */
    3691           6 :                 if (!is_project(rel->op) || list_length(rel->exps) != 1)
    3692           0 :                         return 0;
    3693           6 :                 sql_exp *re = rel->exps->h->data;
    3694             : 
    3695           6 :                 e->tpe = *type;
    3696           6 :                 return set_exp_type(sql, type, rel, re); /* set recursively */
    3697             :         }
    3698             :         return 0;
    3699             : }
    3700             : 
    3701             : int
    3702        1541 : rel_set_type_param(mvc *sql, sql_subtype *type, sql_rel *rel, sql_exp *exp, int upcast)
    3703             : {
    3704        1541 :         if (!type || !exp || (exp->type != e_atom && exp->type != e_column && !exp_is_rel(exp)))
    3705           0 :                 return -1;
    3706             : 
    3707             :         /* use largest numeric types */
    3708        1541 :         if (upcast && type->type->eclass == EC_NUM)
    3709             : #ifdef HAVE_HGE
    3710           9 :                 type = sql_bind_localtype("hge");
    3711             : #else
    3712             :                 type = sql_bind_localtype("lng");
    3713             : #endif
    3714           6 :         else if (upcast && type->type->eclass == EC_FLT)
    3715           1 :                 type = sql_bind_localtype("dbl");
    3716             : 
    3717             :         /* TODO we could use the sql_query* struct to set parameters used as freevars,
    3718             :            but it requires to change a lot of interfaces */
    3719             :         /* if (is_freevar(exp))
    3720             :                 rel = query_fetch_outer(query, is_freevar(exp)-1); */
    3721        1541 :         return set_exp_type(sql, type, rel, exp);
    3722             : }
    3723             : 
    3724             : /* try to do an in-place conversion
    3725             :  *
    3726             :  * in-place conversion is only possible if the exp is a variable.
    3727             :  * This is only done to be able to map more cached queries onto the same
    3728             :  * interface.
    3729             :  */
    3730             : sql_exp *
    3731     5354247 : exp_convert_inplace(mvc *sql, sql_subtype *t, sql_exp *exp)
    3732             : {
    3733     5354247 :         atom *a, *na;
    3734             : 
    3735             :         /* exclude named variables and variable lists */
    3736     5354247 :         if (exp->type != e_atom || exp->r /* named */ || exp->f /* list */ || !exp->l /* not direct atom */)
    3737             :                 return NULL;
    3738             : 
    3739     3091376 :         a = exp->l;
    3740     3091376 :         if (!a->isnull && t->scale && t->type->eclass != EC_FLT)
    3741             :                 return NULL;
    3742             : 
    3743     3086026 :         if ((na = atom_cast(sql->sa, a, t))) {
    3744     3082886 :                 exp->l = na;
    3745     3082886 :                 return exp;
    3746             :         }
    3747             :         return NULL;
    3748             : }
    3749             : 
    3750             : sql_exp *
    3751           0 : exp_numeric_supertype(mvc *sql, sql_exp *e )
    3752             : {
    3753           0 :         sql_subtype *tp = exp_subtype(e);
    3754             : 
    3755           0 :         if (tp->type->eclass == EC_DEC) {
    3756           0 :                 sql_subtype *dtp = sql_bind_localtype("dbl");
    3757             : 
    3758           0 :                 return exp_check_type(sql, dtp, NULL, e, type_cast);
    3759             :         }
    3760           0 :         if (tp->type->eclass == EC_NUM) {
    3761             : #ifdef HAVE_HGE
    3762           0 :                 sql_subtype *ltp = sql_bind_localtype("hge");
    3763             : #else
    3764             :                 sql_subtype *ltp = sql_bind_localtype("lng");
    3765             : #endif
    3766             : 
    3767           0 :                 return exp_check_type(sql, ltp, NULL, e, type_cast);
    3768             :         }
    3769             :         return e;
    3770             : }
    3771             : 
    3772             : static sql_exp *
    3773          52 : exp_check_composite_type(mvc *sql, sql_subtype *t, sql_rel *rel, sql_exp *exp, check_type tpe)
    3774             : {
    3775          52 :         node *n, *m;
    3776          52 :         list *vals = NULL;
    3777          52 :         assert(t->type->composite);
    3778          52 :         if (!exp_is_rel(exp) && is_row(exp) && !is_values(exp))
    3779             :                 return sql_error( sql, 03, SQLSTATE(42000) "cannot convert value into composite type '%s'", t->type->base.name);
    3780             : 
    3781          52 :         if (exp_is_rel(exp)) {
    3782           0 :                 assert(0);
    3783             :                 sql_rel *valr = exp_rel_get_rel(sql->sa, exp);
    3784             :                 if (!valr || !is_project(valr->op) || !valr->exps)
    3785             :                         return sql_error( sql, 03, SQLSTATE(42000) "cannot convert value into composite type '%s'", t->type->base.name);
    3786             :                 vals = valr->exps;
    3787             :         } else { /* attributes */
    3788          52 :                 vals = exp_get_values(exp);
    3789             :         }
    3790         154 :         for(n = t->type->d.fields->h, m = vals->h; n && m; n = n->next, m = m->next) {
    3791         103 :                 sql_arg *f = n->data;
    3792         103 :                 sql_exp *e = m->data;
    3793         103 :                 sql_subtype *ftype = &f->type;
    3794         103 :                 if (!ftype->multiset && ftype->type->composite && list_length(ftype->type->d.fields) == 1) {
    3795           0 :                         sql_arg *f1 = ftype->type->d.fields->h->data;
    3796           0 :                         ftype = &f1->type;
    3797             :                 }
    3798         103 :                 e = exp_check_type(sql, ftype, rel, e, tpe);
    3799         103 :                 if (!e)
    3800             :                         return NULL;
    3801         102 :                 m->data = e;
    3802             :         }
    3803          51 :         if (n || m) {
    3804           0 :                 if (m)
    3805           0 :                         return sql_error( sql, 03, SQLSTATE(42000) "cannot convert values into composite type '%s', too many values given", t->type->base.name);
    3806           0 :                 return sql_error( sql, 03, SQLSTATE(42000) "cannot convert values into composite type '%s', missing values", t->type->base.name);
    3807             :         }
    3808          51 :         if (!exp_is_rel(exp))
    3809          51 :                 exp->tpe = *t;
    3810             :         return exp;
    3811             : }
    3812             : 
    3813             : static sql_exp *
    3814          48 : exp_check_multiset_type(mvc *sql, sql_subtype *t, sql_rel *rel, sql_exp *exp, check_type tpe)
    3815             : {
    3816          48 :         if (t->multiset && exp_is_null(exp))
    3817             :                 return exp;
    3818          48 :         assert(t->type->composite || t->multiset);
    3819          48 :         if (!exp_is_rel(exp) && !is_values(exp)) {
    3820          13 :                 sql_subtype *et = exp_subtype(exp);
    3821             :                 /* hard code conversion from json allowed */
    3822          13 :                 if (strcmp(et->type->base.name, "json") == 0)
    3823           0 :                         return exp_convert(sql, exp, et, t);
    3824          13 :                 if (EC_VARCHAR(et->type->eclass))
    3825          13 :                         return exp_convert(sql, exp, et, t);
    3826           0 :                 if (et && et->multiset == t->multiset && subtype_cmp(et, t) == 0)
    3827             :                         return exp;
    3828           0 :                 if (t->type->composite)
    3829           0 :                         return sql_error( sql, 03, SQLSTATE(42000) "cannot convert value into composite type '%s'", t->type->base.name);
    3830           0 :                 return sql_error( sql, 03, SQLSTATE(42000) "cannot convert value into multiset type '%s[]'", t->type->base.name);
    3831             :         }
    3832             : 
    3833          35 :         list *msvals = NULL;
    3834          35 :         if (exp_is_rel(exp)) {
    3835           0 :                 assert(0);
    3836             :                 sql_rel *valr = exp_rel_get_rel(sql->sa, exp);
    3837             :                 if (!valr || !is_project(valr->op) || !valr->exps)
    3838             :                         return sql_error( sql, 03, SQLSTATE(42000) "cannot convert value into composite type '%s'", t->type->base.name);
    3839             :                 msvals = valr->exps;
    3840             :         } else { /* values within the multiset */
    3841          35 :                 msvals = exp_get_values(exp);
    3842             :         }
    3843          35 :         sql_subtype ct = *t;
    3844          35 :         ct.multiset = false;
    3845             : 
    3846          35 :         if (ct.type->composite && list_length(ct.type->d.fields) == 1) {
    3847           0 :                 sql_arg *f1 = ct.type->d.fields->h->data;
    3848           0 :                 ct = f1->type;
    3849             :         }
    3850         102 :         for(node *v = msvals->h; v; v = v->next) {
    3851          67 :                 sql_exp *r = v->data;
    3852             : 
    3853          67 :                 if (!is_row(r))
    3854          37 :                         if (t->type->composite)
    3855           0 :                                 r = exp_check_multiset_type(sql, &ct, rel, r, tpe);
    3856             :                         else
    3857          37 :                                 r = exp_check_type(sql, &ct, rel, r, tpe);
    3858             :                 else
    3859          30 :                         r = exp_check_composite_type(sql, &ct, rel, r, tpe);
    3860          67 :                 if (!r)
    3861             :                         return r;
    3862          67 :                 v->data = r;
    3863             :         }
    3864          35 :         exp->tpe = *t;
    3865             :         /* keep a list of column names with the conversion, for later name resolving */
    3866          35 :         return exp_convert(sql, exp, &ct, t);
    3867             : }
    3868             : 
    3869             : sql_exp *
    3870           0 : exp_check_multiset(mvc *sql, sql_exp *e)
    3871             : {
    3872           0 :         if (is_values(e)) { /* check for single tuple type */
    3873           0 :                 sql_subtype t = *exp_subtype(e);
    3874           0 :                 t.multiset = MS_ARRAY;
    3875           0 :                 return exp_check_multiset_type(sql, &t, NULL, e, type_equal);
    3876             :         }
    3877           0 :         sql_subtype *st = exp_subtype(e);
    3878           0 :         if (st->multiset)
    3879           0 :                 return e;
    3880             :         return NULL;
    3881             : }
    3882             : 
    3883             : sql_exp *
    3884     5353789 : exp_check_type(mvc *sql, sql_subtype *t, sql_rel *rel, sql_exp *exp, check_type tpe)
    3885             : {
    3886     5353789 :         int c, err = 0;
    3887     5353789 :         sql_exp* nexp = NULL;
    3888     5353789 :         sql_subtype *fromtype = exp_subtype(exp);
    3889             : 
    3890     5354028 :         if ((!fromtype || !fromtype->type) && rel_set_type_param(sql, t, rel, exp, 0) == 0)
    3891             :                 return exp;
    3892             : 
    3893     5354027 :         if (t->type->composite || t->multiset) {
    3894         115 :                 if (fromtype && subtype_cmp(t, fromtype) == 0)
    3895             :                         return exp;
    3896          85 :                 if (t->multiset && !is_row(exp))
    3897          48 :                         return exp_check_multiset_type(sql, t, rel, exp, tpe);
    3898          37 :                 if (t->type->composite && (is_row(exp) || is_values(exp)))
    3899          22 :                         return exp_check_composite_type(sql, t, rel, exp, tpe);
    3900          15 :                 if (strcmp(fromtype->type->base.name, "json") == 0)
    3901           7 :                         return exp_convert(sql, exp, fromtype, t);
    3902           8 :                 if (EC_VARCHAR(fromtype->type->eclass))
    3903           7 :                         return exp_convert(sql, exp, fromtype, t);
    3904           1 :                 if (is_values(exp))
    3905             :                         return NULL;
    3906             :         }
    3907             : 
    3908     5353912 :         if (fromtype && (fromtype->type->composite || fromtype->multiset)) {
    3909           0 :                 if (strcmp(t->type->base.name, "json") == 0)
    3910           0 :                         return exp_convert(sql, exp, fromtype, t);
    3911             :         }
    3912             : 
    3913             :         /* first try cheap internal (in-place) conversions ! */
    3914     5353912 :         if ((nexp = exp_convert_inplace(sql, t, exp)) != NULL)
    3915             :                 return nexp;
    3916             : 
    3917     2271312 :         if (fromtype && subtype_cmp(t, fromtype) != 0) {
    3918      268267 :                 if (EC_INTERVAL(fromtype->type->eclass) && (t->type->eclass == EC_NUM || t->type->eclass == EC_POS) && t->digits < fromtype->digits) {
    3919             :                         err = 1; /* conversion from interval to num depends on the number of digits */
    3920             :                 } else {
    3921      268267 :                         c = sql_type_convert(fromtype->type->eclass, t->type->eclass);
    3922      268267 :                         if (!c || (c == 2 && tpe == type_set) || (c == 3 && tpe != type_cast)) {
    3923             :                                 err = 1;
    3924             :                         } else {
    3925      267753 :                                 exp = exp_convert(sql, exp, fromtype, t);
    3926             :                         }
    3927             :                 }
    3928             :         }
    3929      267753 :         if (err) {
    3930         514 :                 const char *name = (exp->type == e_column && !has_label(exp)) ? exp_name(exp) : "%";
    3931         576 :                 sql_exp *res = sql_error( sql, 03, SQLSTATE(42000) "types %s(%u,%u) and %s(%u,%u) are not equal%s%s%s",
    3932         514 :                         fromtype->type->base.name,
    3933             :                         fromtype->digits,
    3934             :                         fromtype->scale,
    3935         514 :                         t->type->base.name,
    3936             :                         t->digits,
    3937             :                         t->scale,
    3938             :                         (name[0] != '%' ? " for column '" : ""),
    3939             :                         (name[0] != '%' ? name : ""),
    3940         514 :                         (name[0] != '%' ? "'" : "")
    3941             :                 );
    3942         514 :                 return res;
    3943             :         }
    3944             :         return exp;
    3945             : }
    3946             : 
    3947             : sql_exp *
    3948        8584 : exp_values_set_supertype(mvc *sql, sql_exp *values, sql_subtype *opt_super)
    3949             : {
    3950        8584 :         assert(is_values(values));
    3951        8584 :         list *vals = exp_get_values(values), *nexps;
    3952        8584 :         sql_subtype *tpe = opt_super?opt_super:exp_subtype(vals->h->data);
    3953             : 
    3954        8585 :         if (!opt_super && tpe)
    3955        8485 :                 values->tpe = *tpe;
    3956             : 
    3957       34185 :         for (node *m = vals->h; m; m = m->next) {
    3958       25600 :                 sql_exp *e = m->data;
    3959       25600 :                 sql_subtype super, *ttpe;
    3960             : 
    3961             :                 /* if the expression is a parameter set its type */
    3962       25600 :                 if (tpe && e->type == e_atom && !e->l && !e->r && !e->f && !e->tpe.type) {
    3963           4 :                         if (set_type_param(sql, tpe, e->flag) == 0)
    3964           4 :                                 e->tpe = *tpe;
    3965             :                         else
    3966           0 :                                 return NULL;
    3967             :                 }
    3968       25600 :                 ttpe = exp_subtype(e);
    3969       25600 :                 if (tpe && ttpe) {
    3970       25547 :                         supertype(&super, ttpe, tpe);
    3971       25547 :                         values->tpe = super;
    3972       25547 :                         tpe = &values->tpe;
    3973             :                 } else {
    3974             :                         tpe = ttpe;
    3975             :                 }
    3976             :         }
    3977             : 
    3978        8585 :         if (tpe) {
    3979             :                 /* if the expression is a parameter set its type */
    3980       34098 :                 for (node *m = vals->h; m; m = m->next) {
    3981       25551 :                         sql_exp *e = m->data;
    3982       25551 :                         if (e->type == e_atom && !e->l && !e->r && !e->f && !e->tpe.type) {
    3983           1 :                                 if (set_type_param(sql, tpe, e->flag) == 0)
    3984           1 :                                         e->tpe = *tpe;
    3985             :                                 else
    3986             :                                         return NULL;
    3987             :                         }
    3988             :                 }
    3989        8547 :                 values->tpe = *tpe;
    3990        8547 :                 nexps = sa_list(sql->sa);
    3991       34093 :                 for (node *m = vals->h; m; m = m->next) {
    3992       25549 :                         sql_exp *e = m->data;
    3993       25549 :                         e = exp_check_type(sql, &values->tpe, NULL, e, type_equal);
    3994       25549 :                         if (!e)
    3995             :                                 return NULL;
    3996       25546 :                         exp_label(sql->sa, e, ++sql->label);
    3997       25546 :                         append(nexps, e);
    3998             :                 }
    3999        8544 :                 values->f = nexps;
    4000             :         }
    4001             :         return values;
    4002             : }
    4003             : 
    4004             : /* return -1 on error, 0 not found, 1 found */
    4005             : static int
    4006          86 : rel_find_parameter(mvc *sql, sql_subtype *type, sql_rel *rel, int nid, sql_alias *relname, const char *expname)
    4007             : {
    4008         138 :         int res = 0;
    4009             : 
    4010         138 :         if (mvc_highwater(sql)) {
    4011           0 :                 (void) sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    4012           0 :                 return -1;
    4013             :         }
    4014         138 :         if (!rel)
    4015             :                 return 0;
    4016             : 
    4017         135 :         sql_alias *nrname = relname;
    4018         135 :     const char *nename = expname;
    4019         135 :         if (is_project(rel->op) && !list_empty(rel->exps)) {
    4020         111 :                 sql_exp *e = NULL;
    4021             : 
    4022         111 :                 assert(nid);
    4023         111 :                 e = exps_bind_nid(rel->exps, nid);
    4024         111 :                 if (!e)
    4025             :                         return 0; /* not found */
    4026         108 :                 if (is_mset(rel->op)) { /* TODO for set relations this needs further improvement */
    4027           0 :                         (void) sql_error(sql, 10, SQLSTATE(42000) "Cannot set parameter types under set relations at the moment");
    4028           0 :                         return -1;
    4029             :                 }
    4030             :                 /* set order by column types */
    4031         108 :                 if (is_simple_project(rel->op) && !list_empty(rel->r)) {
    4032           0 :                         sql_exp *ordere = NULL;
    4033           0 :                         ordere = exps_bind_nid(rel->r, nid);
    4034           0 :                         if (ordere && ordere->type == e_column)
    4035           0 :                                 ordere->tpe = *type;
    4036             :                 }
    4037         108 :                 if (e->type == e_column) {
    4038          52 :                         nid = e->nid;
    4039          52 :                         nrname = e->l;
    4040          52 :                         nename = (const char*) e->r;
    4041          52 :                         e->tpe = *type;
    4042          52 :                         res = 1; /* found */
    4043          56 :                 } else if ((e->type == e_atom || exp_is_rel(e)) && (res = set_exp_type(sql, type, rel, e)) <= 0) {
    4044             :                         return res; /* don't search further */
    4045             :                 }
    4046             :                 /* group by columns can have aliases! */
    4047         108 :                 if (is_groupby(rel->op) && !list_empty(rel->r)) {
    4048           0 :                         e = exps_bind_nid(rel->r, nid);
    4049           0 :                         if (!e)
    4050             :                                 return res; /* don't search further */
    4051           0 :                         if (e->type == e_column) {
    4052           0 :                                 nid = e->nid;
    4053           0 :                                 nrname = e->l;
    4054           0 :                                 nename = (const char*) e->r;
    4055           0 :                                 e->tpe = *type;
    4056           0 :                         } else if ((e->type == e_atom || exp_is_rel(e)) && (res = set_exp_type(sql, type, rel, e)) <= 0) {
    4057             :                                 return res; /* don't search further */
    4058             :                         }
    4059             :                 }
    4060         108 :                 if (e->type != e_column)
    4061             :                         return res; /* don't search further */
    4062             :         }
    4063             : 
    4064          76 :         switch (rel->op) {
    4065          14 :                 case op_join:
    4066             :                 case op_left:
    4067             :                 case op_right:
    4068             :                 case op_full:
    4069          14 :                         if (rel->l)
    4070          14 :                                 res = rel_find_parameter(sql, type, rel->l, nid, nrname, nename);
    4071          14 :                         if (rel->r && res <= 0) { /* try other relation if not found */
    4072          12 :                                 int err = sql->session->status, lres = res;
    4073          12 :                                 char buf[ERRSIZE];
    4074             : 
    4075          12 :                                 strcpy(buf, sql->errstr); /* keep error found and try other join relation */
    4076          12 :                                 sql->session->status = 0;
    4077          12 :                                 sql->errstr[0] = '\0';
    4078          12 :                                 res = rel_find_parameter(sql, type, rel->r, nid, nrname, nename);
    4079          12 :                                 if (res == 0) { /* parameter wasn't found, set error */
    4080           1 :                                         res = lres;
    4081           1 :                                         sql->session->status = err;
    4082           1 :                                         strcpy(sql->errstr, buf);
    4083             :                                 }
    4084             :                         }
    4085             :                         break;
    4086          52 :                 case op_semi:
    4087             :                 case op_anti:
    4088             :                 case op_groupby:
    4089             :                 case op_project:
    4090             :                 case op_select:
    4091             :                 case op_topn:
    4092             :                 case op_sample:
    4093          52 :                         if (rel->l)
    4094             :                                 res = rel_find_parameter(sql, type, rel->l, nid, nrname, nename);
    4095             :                         break;
    4096           0 :                 case op_union: /* TODO for set relations this needs further improvement */
    4097             :                 case op_inter:
    4098             :                 case op_except:
    4099             :                 case op_munion: {
    4100           0 :                         (void) sql_error(sql, 10, SQLSTATE(42000) "Cannot set parameter types under set relations at the moment");
    4101           0 :                         return -1;
    4102             :                 }
    4103             :                 default: /* For table returning functions, the type must be set when the relation is created */
    4104             :                         return 0;
    4105             :         }
    4106             :         return res;
    4107             : }
    4108             : 
    4109             : sql_exp *
    4110       19652 : list_find_exp( list *exps, sql_exp *e)
    4111             : {
    4112       19652 :         if (e->type != e_column)
    4113             :                 return NULL;
    4114       19611 :         return exps_bind_nid(exps, e->nid);
    4115             : }
    4116             : 
    4117             : sql_alias *
    4118     5419414 : a_create(allocator *sa, const char *name)
    4119             : {
    4120     5419414 :         sql_alias *a = SA_NEW(sa, sql_alias);
    4121             : 
    4122     5419617 :         a->label = 0;
    4123     5419617 :         a->name = name;
    4124     5419617 :         a->parent = NULL;
    4125     5419617 :         return a;
    4126             : }
    4127             : 
    4128             : sql_alias *
    4129      385680 : schema_alias(allocator *sa, sql_schema *s)
    4130             : {
    4131      385680 :         if (!s)
    4132             :                 return NULL;
    4133      385484 :         sql_alias *a = SA_NEW(sa, sql_alias);
    4134             : 
    4135      385570 :         a->label = 0;
    4136      385570 :         a->name = s->base.name;
    4137      385570 :         a->parent = NULL;
    4138      385570 :         return a;
    4139             : }
    4140             : 
    4141             : sql_alias *
    4142      592363 : table_alias(allocator *sa, sql_table *t, sql_alias *p)
    4143             : {
    4144      592363 :         sql_alias *a = SA_NEW(sa, sql_alias);
    4145             : 
    4146      592491 :         a->label = 0;
    4147      592491 :         a->name = t->base.name;
    4148      592491 :         a->parent = p;
    4149      592491 :         return a;
    4150             : }
    4151             : 
    4152             : bool
    4153      759572 : a_cmp_obj_name(sql_alias *n, const char *name)
    4154             : {
    4155      759572 :         if (n->name)
    4156      759572 :                 return strcmp(n->name, name) == 0;
    4157             :         return false;
    4158             : }
    4159             : 
    4160             : bool
    4161     3966687 : a_cmp_obj_names(sql_alias *n, sql_alias *n2)
    4162             : {
    4163     3966687 :         if (n->name && n2->name)
    4164     3966687 :                 return strcmp(n->name, n2->name) == 0;
    4165             :         return false;
    4166             : }
    4167             : 
    4168             : bool
    4169      904711 : a_match(sql_alias *l, sql_alias *r)
    4170             : {
    4171      949882 :         if (!l && !r)
    4172             :                 return true;
    4173      913939 :         if (!l || !r)
    4174             :                 return false;
    4175      913939 :         if (a_cmp_obj_names(l, r))
    4176       45171 :                 return a_match(l->parent, r->parent);
    4177             :         return false;
    4178             : }
    4179             : 
    4180             : bool
    4181      794705 : a_cmp(sql_alias *l, sql_alias *r)
    4182             : {
    4183      794705 :         return !a_match(l, r);
    4184             : }
    4185             : 
    4186             : /* match as long as we have names */
    4187             : bool
    4188     2844419 : a_match_obj(sql_alias *l, sql_alias *r)
    4189             : {
    4190     3052693 :         if (!l && !r)
    4191             :                 return true;
    4192     3052693 :         if (!l || !r)
    4193             :                 return false;
    4194     3052693 :         if (a_cmp_obj_names(l, r)) {
    4195     1832863 :                 if (!r->parent)
    4196             :                         return true;
    4197      208274 :                 return a_match_obj(l->parent, r->parent);
    4198             :         }
    4199             :         return false;
    4200             : }

Generated by: LCOV version 1.14