LCOV - code coverage report
Current view: top level - sql/server - rel_exp.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 1796 2049 87.7 %
Date: 2024-12-19 23:10:26 Functions: 168 183 91.8 %

          Line data    Source code
       1             : /*
       2             :  * SPDX-License-Identifier: MPL-2.0
       3             :  *
       4             :  * This Source Code Form is subject to the terms of the Mozilla Public
       5             :  * License, v. 2.0.  If a copy of the MPL was not distributed with this
       6             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       7             :  *
       8             :  * Copyright 2024 MonetDB Foundation;
       9             :  * Copyright August 2008 - 2023 MonetDB B.V.;
      10             :  * Copyright 1997 - July 2008 CWI.
      11             :  */
      12             : 
      13             : #include "monetdb_config.h"
      14             : #include "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      839748 : compare_str2type(const char *compare_op)
      24             : {
      25      839748 :         comp_type type = cmp_filter;
      26             : 
      27      839748 :         if (compare_op[0] == '=') {
      28             :                 type = cmp_equal;
      29      162378 :         } else if (compare_op[0] == '<') {
      30      105305 :                 type = cmp_lt;
      31      105305 :                 if (compare_op[1] == '>')
      32             :                         type = cmp_notequal;
      33       23516 :                 else if (compare_op[1] == '=')
      34        4170 :                         type = cmp_lte;
      35       57073 :         } else if (compare_op[0] == '>') {
      36       57073 :                 type = cmp_gt;
      37       57073 :                 if (compare_op[1] == '=')
      38        3347 :                         type = cmp_gte;
      39             :         }
      40      839748 :         return type;
      41             : }
      42             : 
      43             : comp_type
      44       52657 : swap_compare( comp_type t )
      45             : {
      46       52657 :         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        7662 : negate_compare( comp_type t )
      66             : {
      67        7662 :         switch(t) {
      68             :         case cmp_equal:
      69             :                 return cmp_notequal;
      70          29 :         case cmp_notequal:
      71          29 :                 return cmp_equal;
      72           2 :         case cmp_lt:
      73           2 :                 return cmp_gte;
      74           5 :         case cmp_lte:
      75           5 :                 return cmp_gt;
      76           3 :         case cmp_gte:
      77           3 :                 return cmp_lt;
      78           3 :         case cmp_gt:
      79           3 :                 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        3203 : range2lcompare( int r )
      93             : {
      94        3203 :         if (r&1) {
      95             :                 return cmp_gte;
      96             :         } else {
      97        1215 :                 return cmp_gt;
      98             :         }
      99             : }
     100             : 
     101             : comp_type
     102        3260 : range2rcompare( int r )
     103             : {
     104        3260 :         if (r&2) {
     105             :                 return cmp_lte;
     106             :         } else {
     107        1252 :                 return cmp_lt;
     108             :         }
     109             : }
     110             : 
     111             : int
     112        1912 : compare2range( int l, int r )
     113             : {
     114        1912 :         if (l == cmp_gt) {
     115        1789 :                 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    21551772 : exp_create(allocator *sa, int type)
     146             : {
     147    21551772 :         sql_exp *e = SA_NEW(sa, sql_exp);
     148             : 
     149    21551999 :         if (!e)
     150             :                 return NULL;
     151    21551999 :         *e = (sql_exp) {
     152    21551999 :                 .type = (expression_type) type,
     153             :         };
     154    21551999 :         return e;
     155             : }
     156             : 
     157             : sql_exp *
     158      488148 : exp_compare(allocator *sa, sql_exp *l, sql_exp *r, int cmptype)
     159             : {
     160      488148 :         sql_exp *e = exp_create(sa, e_cmp);
     161      488148 :         if (e == NULL)
     162             :                 return NULL;
     163      488148 :         e->card = MAX(l->card,r->card);
     164      488148 :         e->l = l;
     165      488148 :         e->r = r;
     166      488148 :         e->flag = cmptype;
     167      488148 :         if (!has_nil(l) && !has_nil(r))
     168      355785 :                 set_has_no_nil(e);
     169             :         return e;
     170             : }
     171             : 
     172             : sql_exp *
     173        6690 : exp_compare2(allocator *sa, sql_exp *l, sql_exp *r, sql_exp *f, int cmptype, int symmetric)
     174             : {
     175        6690 :         sql_exp *e = exp_create(sa, e_cmp);
     176        6690 :         if (e == NULL)
     177             :                 return NULL;
     178        6690 :         assert(f);
     179        6690 :         e->card = MAX(MAX(l->card,r->card),f->card);
     180        6690 :         e->l = l;
     181        6690 :         e->r = r;
     182        6690 :         e->f = f;
     183        6690 :         e->flag = cmptype;
     184        6690 :         if (symmetric)
     185          77 :                 set_symmetric(e);
     186        6690 :         if (!has_nil(l) && !has_nil(r) && !has_nil(f))
     187        1614 :                 set_has_no_nil(e);
     188             :         return e;
     189             : }
     190             : 
     191             : sql_exp *
     192        7562 : exp_filter(allocator *sa, list *l, list *r, sql_subfunc *f, int anti)
     193             : {
     194        7562 :         sql_exp *e = exp_create(sa, e_cmp);
     195             : 
     196        7562 :         if (e == NULL)
     197             :                 return NULL;
     198        7562 :         e->card = MAX(exps_card(l),exps_card(r));
     199        7562 :         if (!r) { /* split l */
     200        1504 :                 list *nl = sa_list(sa), *nr = sa_list(sa);
     201        1504 :                 node *n = l->h;
     202        1504 :                 append(nl, n->data); /* sofar only first is left */
     203        3824 :                 for(n = n->next; n; n = n->next)
     204        2320 :                         append(nr, n->data);
     205             :                 l = nl;
     206             :                 r = nr;
     207             :         }
     208        7562 :         e->l = l;
     209        7562 :         e->r = r;
     210        7562 :         e->f = f;
     211        7562 :         e->flag = cmp_filter;
     212        7562 :         if (anti)
     213        1097 :                 set_anti(e);
     214        7562 :         if (!have_nil(l) && !have_nil(r))
     215        4879 :                 set_has_no_nil(e);
     216             :         return e;
     217             : }
     218             : 
     219             : sql_exp *
     220       62753 : exp_or(allocator *sa, list *l, list *r, int anti)
     221             : {
     222       62753 :         sql_exp *e = exp_create(sa, e_cmp);
     223             : 
     224       62753 :         if (e == NULL)
     225             :                 return NULL;
     226       62753 :         e->card = MAX(exps_card(l),exps_card(r));
     227       62753 :         e->l = l;
     228       62753 :         e->r = r;
     229       62753 :         e->flag = cmp_or;
     230       62753 :         if (anti)
     231           2 :                 set_anti(e);
     232       62753 :         if (!have_nil(l) && !have_nil(r))
     233       43115 :                 set_has_no_nil(e);
     234             :         return e;
     235             : }
     236             : 
     237             : sql_exp *
     238       30481 : exp_in(allocator *sa, sql_exp *l, list *r, int cmptype)
     239             : {
     240       30481 :         sql_exp *e = exp_create(sa, e_cmp);
     241       30481 :         unsigned int exps_card = CARD_ATOM;
     242             : 
     243       30481 :         if (e == NULL)
     244             :                 return NULL;
     245             : 
     246             :         /* ignore the cardinalites of sub-relations */
     247      151129 :         for (node *n = r->h; n ; n = n->next) {
     248      120648 :                 sql_exp *next = n->data;
     249             : 
     250      120648 :                 if (!exp_is_rel(next) && exps_card < next->card)
     251      120648 :                         exps_card = next->card;
     252             :         }
     253       30481 :         e->card = MAX(l->card, exps_card);
     254       30481 :         e->l = l;
     255       30481 :         e->r = r;
     256       30481 :         assert( cmptype == cmp_in || cmptype == cmp_notin);
     257       30481 :         e->flag = cmptype;
     258       30481 :         if (!has_nil(l) && !have_nil(r))
     259       23483 :                 set_has_no_nil(e);
     260             :         return e;
     261             : }
     262             : 
     263             : sql_exp *
     264       35014 : exp_in_func(mvc *sql, sql_exp *le, sql_exp *vals, int anyequal, int is_tuple)
     265             : {
     266       35014 :         sql_subfunc *a_func = NULL;
     267       35014 :         sql_exp *e = le;
     268             : 
     269       35014 :         if (is_tuple) {
     270        4161 :                 list *l = exp_get_values(e);
     271        4161 :                 e = l->h->data;
     272             :         }
     273       40887 :         if (!(a_func = sql_bind_func(sql, "sys", anyequal ? "sql_anyequal" : "sql_not_anyequal", exp_subtype(e), exp_subtype(e), F_FUNC, true, true)))
     274           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");
     275       35014 :         e = exp_binop(sql->sa, le, vals, a_func);
     276       35014 :         if (e) {
     277       35014 :                 unsigned int exps_card = CARD_ATOM;
     278             : 
     279             :                 /* ignore the cardinalites of sub-relations */
     280       35014 :                 if (vals->type == e_atom && vals->f) {
     281      163767 :                         for (node *n = ((list*)vals->f)->h ; n ; n = n->next) {
     282      128753 :                                 sql_exp *next = n->data;
     283             : 
     284      128753 :                                 if (!exp_is_rel(next) && exps_card < next->card)
     285      128753 :                                         exps_card = next->card;
     286             :                         }
     287           0 :                 } else if (!exp_is_rel(vals))
     288           0 :                         exps_card = vals->card;
     289             : 
     290       35014 :                 e->card = MAX(le->card, exps_card);
     291       35014 :                 if (!has_nil(le) && !has_nil(vals))
     292           0 :                         set_has_no_nil(e);
     293             :         }
     294             :         return e;
     295             : }
     296             : 
     297             : sql_exp *
     298        5586 : exp_in_aggr(mvc *sql, sql_exp *le, sql_exp *vals, int anyequal, int is_tuple)
     299             : {
     300        5586 :         sql_subfunc *a_func = NULL;
     301        5586 :         sql_exp *e = le;
     302             : 
     303        5586 :         if (is_tuple) {
     304           0 :                 list *l = exp_get_values(e);
     305           0 :                 e = l->h->data;
     306             :         }
     307        5595 :         if (!(a_func = sql_bind_func(sql, "sys", anyequal ? "anyequal" : "allnotequal", exp_subtype(e), exp_subtype(e), F_AGGR, true, true)))
     308           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");
     309        5586 :         e = exp_aggr2(sql->sa, le, vals, a_func, need_distinct(e), need_no_nil(e), e->card, has_nil(e));
     310        5586 :         if (e) {
     311        5586 :                 unsigned int exps_card = CARD_ATOM;
     312             : 
     313             :                 /* ignore the cardinalites of sub-relations */
     314        5586 :                 if (vals->type == e_atom && vals->f) {
     315       31608 :                         for (node *n = ((list*)vals->f)->h ; n ; n = n->next) {
     316       26022 :                                 sql_exp *next = n->data;
     317             : 
     318       26022 :                                 if (!exp_is_rel(next) && exps_card < next->card)
     319       26022 :                                         exps_card = next->card;
     320             :                         }
     321           0 :                 } else if (!exp_is_rel(vals))
     322           0 :                         exps_card = vals->card;
     323             : 
     324        5586 :                 e->card = MAX(le->card, exps_card);
     325        5586 :                 if (!has_nil(le) && !has_nil(vals))
     326           0 :                         set_has_no_nil(e);
     327             :         }
     328             :         return e;
     329             : }
     330             : 
     331             : sql_exp *
     332      123350 : exp_compare_func(mvc *sql, sql_exp *le, sql_exp *re, const char *compareop, int quantifier)
     333             : {
     334      123350 :         sql_subfunc *cmp_func = sql_bind_func(sql, "sys", compareop, exp_subtype(le), exp_subtype(le), F_FUNC, true, true);
     335      123350 :         sql_exp *e = NULL;
     336             : 
     337      123350 :         if (cmp_func == NULL)
     338             :                 return NULL;
     339             : 
     340      123350 :         e = exp_binop(sql->sa, le, re, cmp_func);
     341      123350 :         if (e) {
     342      123350 :                 e->flag = quantifier;
     343             :                 /* At ANY and ALL operators, the cardinality on the right side is ignored if it is a sub-relation */
     344      123350 :                 e->card = quantifier && exp_is_rel(re) ? le->card : MAX(le->card, re->card);
     345      123350 :                 if (!has_nil(le) && !has_nil(re))
     346       78761 :                         set_has_no_nil(e);
     347             :         }
     348             :         return e;
     349             : }
     350             : 
     351             : static sql_subtype*
     352      885814 : dup_subtype(allocator *sa, sql_subtype *st)
     353             : {
     354      885814 :         sql_subtype *res = SA_NEW(sa, sql_subtype);
     355             : 
     356      885814 :         if (res == NULL)
     357             :                 return NULL;
     358      885814 :         *res = *st;
     359      885814 :         return res;
     360             : }
     361             : 
     362             : sql_exp *
     363      442907 : exp_convert(mvc *sql, sql_exp *exp, sql_subtype *fromtype, sql_subtype *totype )
     364             : {
     365      442907 :         sql_exp *e = exp_create(sql->sa, e_convert);
     366      442907 :         if (e == NULL)
     367             :                 return NULL;
     368      442907 :         e->card = exp->card;
     369      442907 :         e->l = exp;
     370      442907 :         totype = dup_subtype(sql->sa, totype);
     371      442907 :         e->r = append(append(sa_list(sql->sa), dup_subtype(sql->sa, fromtype)),totype);
     372      442907 :         e->tpe = *totype;
     373      442907 :         e->alias = exp->alias;
     374      442907 :         if (e->alias.label)
     375      292357 :                 e->alias.label = -(sql->nid++);
     376      442907 :         if (!has_nil(exp))
     377      174256 :                 set_has_no_nil(e);
     378             :         return e;
     379             : }
     380             : 
     381             : sql_exp *
     382     1091578 : exp_op( allocator *sa, list *l, sql_subfunc *f )
     383             : {
     384     1091578 :         if (f->func->type == F_FILT)
     385        1504 :                 return exp_filter(sa, l, NULL, f, false);
     386     1090074 :         sql_exp *e = exp_create(sa, e_func);
     387     1090074 :         if (e == NULL)
     388             :                 return NULL;
     389     1090074 :         e->card = exps_card(l);
     390     1090075 :         e->l = l;
     391     1090075 :         e->f = f;
     392     1090075 :         e->semantics = f->func->semantics;
     393     1090075 :         if (!is_semantics(e) && !is_any(e) && l && !have_nil(l))
     394      258410 :                 set_has_no_nil(e);
     395             :         return e;
     396             : }
     397             : 
     398             : sql_exp *
     399       12628 : exp_rank_op( allocator *sa, list *l, list *gbe, list *obe, sql_subfunc *f )
     400             : {
     401       12628 :         sql_exp *e = exp_create(sa, e_func);
     402       12628 :         if (e == NULL)
     403             :                 return NULL;
     404       12628 :         e->card = list_empty(l)?CARD_MULTI:exps_card(l);
     405       12628 :         e->l = l;
     406       12628 :         e->r = append(append(sa_list(sa), gbe), obe);
     407       12628 :         e->f = f;
     408       12628 :         if (!f->func->s && strcmp(f->func->base.name, "count") == 0)
     409         180 :                 set_has_no_nil(e);
     410       12628 :         e->semantics = f->func->semantics;
     411       12628 :         return e;
     412             : }
     413             : 
     414             : sql_exp *
     415       64937 : exp_aggr( allocator *sa, list *l, sql_subfunc *a, int distinct, int no_nils, unsigned int card, int has_nils )
     416             : {
     417       64937 :         sql_exp *e = exp_create(sa, e_aggr);
     418       64937 :         if (e == NULL)
     419             :                 return NULL;
     420       64937 :         e->card = card;
     421       64937 :         e->l = l;
     422       64937 :         e->f = a;
     423       64937 :         e->semantics = a->func->semantics;
     424       64937 :         if (distinct)
     425         373 :                 set_distinct(e);
     426       64937 :         if (no_nils)
     427       28429 :                 set_no_nil(e);
     428       64937 :         if ((!a->func->semantics && !has_nils) || (!a->func->s && strcmp(a->func->base.name, "count") == 0))
     429       26511 :                 set_has_no_nil(e);
     430             :         return e;
     431             : }
     432             : 
     433             : sql_exp *
     434     5059466 : exp_atom(allocator *sa, atom *a)
     435             : {
     436     5059466 :         sql_exp *e = exp_create(sa, e_atom);
     437     5058468 :         if (e == NULL)
     438             :                 return NULL;
     439     5058468 :         e->card = CARD_ATOM;
     440     5058468 :         e->tpe = a->tpe;
     441     5058468 :         e->l = a;
     442     5058468 :         if (!a->isnull)
     443     4780605 :                 set_has_no_nil(e);
     444             :         return e;
     445             : }
     446             : 
     447             : sql_exp *
     448           0 : exp_atom_max(allocator *sa, sql_subtype *tpe)
     449             : {
     450           0 :         if (tpe->type->localtype == TYPE_bte) {
     451           0 :                 return exp_atom_bte(sa, GDK_bte_max);
     452             :         } else if (tpe->type->localtype == TYPE_sht) {
     453           0 :                 return exp_atom_sht(sa, GDK_sht_max);
     454             :         } else if (tpe->type->localtype == TYPE_int) {
     455           0 :                 return exp_atom_int(sa, GDK_int_max);
     456             :         } else if (tpe->type->localtype == TYPE_lng) {
     457           0 :                 return exp_atom_lng(sa, GDK_lng_max);
     458             : #ifdef HAVE_HGE
     459             :         } else if (tpe->type->localtype == TYPE_hge) {
     460           0 :                 return exp_atom_hge(sa, GDK_hge_max);
     461             : #endif
     462             :         }
     463             :         return NULL;
     464             : }
     465             : 
     466             : sql_exp *
     467      149642 : exp_atom_bool(allocator *sa, int b)
     468             : {
     469      149642 :         sql_subtype bt;
     470             : 
     471      149642 :         sql_find_subtype(&bt, "boolean", 0, 0);
     472      149673 :         if (b)
     473       99490 :                 return exp_atom(sa, atom_bool(sa, &bt, TRUE ));
     474             :         else
     475       50183 :                 return exp_atom(sa, atom_bool(sa, &bt, FALSE ));
     476             : }
     477             : 
     478             : sql_exp *
     479           0 : exp_atom_bte(allocator *sa, bte i)
     480             : {
     481           0 :         sql_subtype it;
     482             : 
     483           0 :         sql_find_subtype(&it, "tinyint", 3, 0);
     484           0 :         return exp_atom(sa, atom_int(sa, &it, i ));
     485             : }
     486             : 
     487             : sql_exp *
     488           0 : exp_atom_sht(allocator *sa, sht i)
     489             : {
     490           0 :         sql_subtype it;
     491             : 
     492           0 :         sql_find_subtype(&it, "smallint", 5, 0);
     493           0 :         return exp_atom(sa, atom_int(sa, &it, i ));
     494             : }
     495             : 
     496             : sql_exp *
     497      866138 : exp_atom_int(allocator *sa, int i)
     498             : {
     499      866138 :         sql_subtype it;
     500             : 
     501      866138 :         sql_find_subtype(&it, "int", 9, 0);
     502      866326 :         return exp_atom(sa, atom_int(sa, &it, i ));
     503             : }
     504             : 
     505             : sql_exp *
     506       16425 : exp_atom_lng(allocator *sa, lng i)
     507             : {
     508       16425 :         sql_subtype it;
     509             : 
     510             : #ifdef HAVE_HGE
     511       16425 :         sql_find_subtype(&it, "bigint", 18, 0);
     512             : #else
     513             :         sql_find_subtype(&it, "bigint", 19, 0);
     514             : #endif
     515       16435 :         return exp_atom(sa, atom_int(sa, &it, i ));
     516             : }
     517             : 
     518             : sql_exp *
     519        4560 : exp_atom_oid(allocator *sa, oid i)
     520             : {
     521        4560 :         sql_subtype it;
     522             : 
     523             : #if SIZEOF_OID == SIZEOF_INT
     524             :         sql_find_subtype(&it, "oid", 31, 0);
     525             : #else
     526        4560 :         sql_find_subtype(&it, "oid", 63, 0);
     527             : #endif
     528        4560 :         return exp_atom(sa, atom_int(sa, &it, i ));
     529             : }
     530             : 
     531             : #ifdef HAVE_HGE
     532             : sql_exp *
     533           1 : exp_atom_hge(allocator *sa, hge i)
     534             : {
     535           1 :         sql_subtype it;
     536             : 
     537           1 :         sql_find_subtype(&it, "hugeint", 39, 0);
     538           1 :         return exp_atom(sa, atom_int(sa, &it, i ));
     539             : }
     540             : #endif
     541             : 
     542             : sql_exp *
     543           0 : exp_atom_flt(allocator *sa, flt f)
     544             : {
     545           0 :         sql_subtype it;
     546             : 
     547           0 :         sql_find_subtype(&it, "real", 24, 0);
     548           0 :         return exp_atom(sa, atom_float(sa, &it, (dbl)f ));
     549             : }
     550             : 
     551             : sql_exp *
     552           0 : exp_atom_dbl(allocator *sa, dbl f)
     553             : {
     554           0 :         sql_subtype it;
     555             : 
     556           0 :         sql_find_subtype(&it, "double", 53, 0);
     557           0 :         return exp_atom(sa, atom_float(sa, &it, (dbl)f ));
     558             : }
     559             : 
     560             : sql_exp *
     561       86170 : exp_atom_str(allocator *sa, const char *s, sql_subtype *st)
     562             : {
     563      167729 :         return exp_atom(sa, atom_string(sa, st, s?sa_strdup(sa, s):NULL));
     564             : }
     565             : 
     566             : sql_exp *
     567      752471 : exp_atom_clob(allocator *sa, const char *s)
     568             : {
     569      752471 :         sql_subtype clob;
     570             : 
     571      752471 :         sql_find_subtype(&clob, "varchar", 0, 0);
     572     1503344 :         return exp_atom(sa, atom_string(sa, &clob, s?sa_strdup(sa, s):NULL));
     573             : }
     574             : 
     575             : sql_exp *
     576      271123 : exp_atom_ptr(allocator *sa, void *s)
     577             : {
     578      271123 :         sql_subtype *t = sql_bind_localtype("ptr");
     579      271123 :         return exp_atom(sa, atom_ptr(sa, t, s));
     580             : }
     581             : 
     582             : sql_exp *
     583        2168 : exp_atom_ref(allocator *sa, int i, sql_subtype *tpe)
     584             : {
     585        2168 :         sql_exp *e = exp_create(sa, e_atom);
     586        2168 :         if (e == NULL)
     587             :                 return NULL;
     588        2168 :         e->card = CARD_ATOM;
     589        2168 :         e->flag = i;
     590        2168 :         if (tpe)
     591        2168 :                 e->tpe = *tpe;
     592             :         return e;
     593             : }
     594             : 
     595             : sql_exp *
     596      110678 : exp_null(allocator *sa, sql_subtype *tpe)
     597             : {
     598      110678 :         atom *a = atom_general(sa, tpe, NULL, 0);
     599      110678 :         return exp_atom(sa, a);
     600             : }
     601             : 
     602             : sql_exp *
     603           2 : exp_zero(allocator *sa, sql_subtype *tpe)
     604             : {
     605           2 :         atom *a = atom_zero_value(sa, tpe);
     606           2 :         return exp_atom(sa, a);
     607             : }
     608             : 
     609             : atom *
     610         391 : exp_value(mvc *sql, sql_exp *e)
     611             : {
     612         391 :         if (!e || e->type != e_atom)
     613             :                 return NULL;
     614         386 :         if (e->l) { /* literal */
     615             :                 return e->l;
     616           0 :         } else if (e->r) { /* param (ie not set) */
     617           0 :                 sql_var_name *vname = (sql_var_name*) e->r;
     618             : 
     619           0 :                 assert(e->flag != 0 || vname->sname); /* global variables must have a schema */
     620           0 :                 sql_var *var = e->flag == 0 ? find_global_var(sql, mvc_bind_schema(sql, vname->sname), vname->name) :
     621           0 :                                                                           stack_find_var_at_level(sql, vname->name, e->flag);
     622           0 :                 if (var)
     623           0 :                         return &(var->var);
     624             :         }
     625             :         return NULL;
     626             : }
     627             : 
     628             : sql_exp *
     629      124084 : exp_param_or_declared(allocator *sa, const char *sname, const char *name, sql_subtype *tpe, int frame)
     630             : {
     631      124084 :         sql_var_name *vname;
     632      124084 :         sql_exp *e = exp_create(sa, e_atom);
     633      124084 :         if (e == NULL)
     634             :                 return NULL;
     635             : 
     636      124084 :         e->r = sa_alloc(sa, sizeof(sql_var_name));
     637      124084 :         vname = (sql_var_name*) e->r;
     638      124084 :         vname->sname = sname;
     639      124084 :         vname->name = name;
     640      124084 :         e->card = CARD_ATOM;
     641      124084 :         e->flag = frame;
     642      124084 :         if (tpe)
     643      124084 :                 e->tpe = *tpe;
     644             :         return e;
     645             : }
     646             : 
     647             : sql_exp *
     648      214342 : exp_values(allocator *sa, list *exps)
     649             : {
     650      214342 :         sql_exp *e = exp_create(sa, e_atom);
     651      214454 :         if (e == NULL)
     652             :                 return NULL;
     653      214454 :         e->card = exps_card(exps);
     654      214490 :         e->f = exps;
     655      214490 :         return e;
     656             : }
     657             : 
     658             : list *
     659       30245 : exp_get_values(sql_exp *e)
     660             : {
     661       30245 :         if (is_atom(e->type) && e->f)
     662             :                 return e->f;
     663             :         return NULL;
     664             : }
     665             : 
     666             : list *
     667       38786 : exp_types(allocator *sa, list *exps)
     668             : {
     669       38786 :         list *l = sa_list(sa);
     670             : 
     671       38786 :         if (exps)
     672       87698 :                 for (node *n = exps->h; n; n = n->next)
     673       48912 :                         list_append(l, exp_subtype(n->data));
     674       38786 :         return l;
     675             : }
     676             : 
     677             : int
     678     1060275 : have_nil(list *exps)
     679             : {
     680     1060275 :         int has_nil = 0;
     681             : 
     682     1060275 :         if (exps)
     683     2672687 :                 for (node *n = exps->h; n && !has_nil; n = n->next) {
     684     1612412 :                         sql_exp *e = n->data;
     685     1612412 :                         has_nil |= has_nil(e);
     686             :                 }
     687     1060275 :         return has_nil;
     688             : }
     689             : 
     690             : int
     691         212 : have_semantics(list *exps)
     692             : {
     693         212 :         int has_semantics = 0;
     694             : 
     695         212 :         if (exps)
     696          65 :                 for (node *n = exps->h; n && !has_semantics; n = n->next) {
     697          33 :                         sql_exp *e = n->data;
     698          66 :                         has_semantics |= is_compare(e->type) && is_semantics(e);
     699             :                 }
     700         212 :         return has_semantics;
     701             : }
     702             : 
     703             : sql_exp *
     704     7057564 : exp_column(allocator *sa, const char *rname, const char *cname, sql_subtype *t, unsigned int card, int has_nils, int unique, int intern)
     705             : {
     706     7057564 :         sql_exp *e = exp_create(sa, e_column);
     707             : 
     708     7057538 :         if (e == NULL)
     709             :                 return NULL;
     710     7057538 :         assert(cname);
     711     7057538 :         e->card = card;
     712     7057538 :         e->alias.name = cname;
     713     7057538 :         e->alias.rname = rname;
     714     7057538 :         e->r = (char*)e->alias.name;
     715     7057538 :         e->l = (char*)e->alias.rname;
     716     7057538 :         if (t)
     717     7057139 :                 e->tpe = *t;
     718     7057538 :         if (!has_nils)
     719     1996340 :                 set_has_no_nil(e);
     720     7057538 :         if (unique)
     721      942648 :                 set_unique(e);
     722     7057538 :         if (intern)
     723      598235 :                 set_intern(e);
     724             :         return e;
     725             : }
     726             : 
     727             : sql_exp *
     728    10057674 : exp_propagate(allocator *sa, sql_exp *ne, sql_exp *oe)
     729             : {
     730    10057674 :         if (has_label(oe) &&
     731      524447 :            (oe->alias.rname == ne->alias.rname || (oe->alias.rname && ne->alias.rname && strcmp(oe->alias.rname, ne->alias.rname) == 0)) &&
     732      516975 :            (oe->alias.name == ne->alias.name || (oe->alias.name && ne->alias.name && strcmp(oe->alias.name, ne->alias.name) == 0)))
     733      516975 :                 ne->alias.label = oe->alias.label;
     734    10057674 :         if (is_intern(oe))
     735      310224 :                 set_intern(ne);
     736    10057674 :         if (is_anti(oe))
     737        3182 :                 set_anti(ne);
     738    10057674 :         if (is_semantics(oe))
     739      661346 :                 set_semantics(ne);
     740    10057674 :         if (is_any(oe))
     741          44 :                 set_any(ne);
     742    10057674 :         if (is_symmetric(oe))
     743          16 :                 set_symmetric(ne);
     744    10057674 :         if (is_partitioning(oe))
     745        1516 :                 set_partitioning(ne);
     746    10057674 :         if (is_ascending(oe))
     747        8879 :                 set_ascending(ne);
     748    10057674 :         if (nulls_last(oe))
     749        1806 :                 set_nulls_last(ne);
     750    10057674 :         if (need_distinct(oe))
     751         670 :                 set_distinct(ne);
     752    10057674 :         if (zero_if_empty(oe))
     753           0 :                 set_zero_if_empty(ne);
     754    10057674 :         if (need_no_nil(oe))
     755      103027 :                 set_no_nil(ne);
     756    10057674 :         if (!has_nil(oe))
     757     5901006 :                 set_has_no_nil(ne);
     758    10057674 :         if (has_nil(oe))
     759     4156666 :                 set_has_nil(ne);
     760    10057674 :         if (is_unique(oe))
     761     1129495 :                 set_unique(ne);
     762    10057674 :         if (is_basecol(oe))
     763     8295515 :                 set_basecol(ne);
     764    10057674 :         ne->p = prop_copy(sa, oe->p);
     765    10057678 :         return ne;
     766             : }
     767             : 
     768             : static sql_exp *
     769     6746363 : exp_ref_by_label(allocator *sa, sql_exp *o)
     770             : {
     771     6746363 :         sql_exp *e = exp_create(sa, e_column);
     772             : 
     773     6746376 :         if (e == NULL)
     774             :                 return NULL;
     775     6746376 :         e->card = o->card;
     776     6746376 :         e->alias = o->alias;
     777     6746376 :         assert(e->alias.label);
     778     6746376 :         e->r = (char*)e->alias.name;
     779     6746376 :         e->l = (char*)e->alias.rname;
     780     6746376 :         e->nid = o->alias.label;
     781     6746376 :         assert(e->nid);
     782     6746376 :         sql_subtype *t = exp_subtype(o);
     783     6746366 :         if (t)
     784     6746251 :                 e->tpe = *t;
     785     6746366 :         if (!has_nil(o))
     786     4118021 :                 set_has_no_nil(e);
     787     6746366 :         if (has_nil(o))
     788     2628346 :                 set_has_nil(e);
     789     6746366 :         if (is_unique(o))
     790      891624 :                 set_unique(e);
     791     6746366 :         if (is_intern(o))
     792      274641 :                 set_intern(e);
     793     6746366 :         return exp_propagate(sa, e, o);
     794             : }
     795             : 
     796             : sql_exp *
     797     6746366 : exp_ref(mvc *sql, sql_exp *e)
     798             : {
     799     6746366 :         if (!has_label(e) && !exp_name(e))
     800        2275 :                 exp_label(sql->sa, e, ++sql->label);
     801     6746364 :         if (e->alias.label)
     802     6746364 :                 return exp_ref_by_label(sql->sa, e);
     803           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);
     804           0 :         if (ne) {
     805           0 :                 ne->nid = e->alias.label;
     806           0 :                 assert(ne->nid);
     807           0 :                 assert(!ne->nid || ne->alias.name);
     808           0 :                 ne->alias.label = ne->nid;
     809             :         }
     810             :         return ne;
     811             : }
     812             : 
     813             : sql_exp *
     814        3895 : exp_ref_save(mvc *sql, sql_exp *e)
     815             : {
     816        3895 :         if (e->type == e_column)
     817             :                 return e;
     818        2104 :         if (is_atom(e->type))
     819        1110 :                 return exp_copy(sql, e);
     820         994 :         if (!e->alias.label || !exp_name(e))
     821           8 :                 exp_label(sql->sa, e, ++sql->label);
     822         994 :         if (e->type != e_column) /* ref as referenced within the (same) rank expression */
     823         994 :                 e->ref = 1;
     824         994 :         sql_exp *ne = exp_ref(sql, e);
     825         994 :         if (ne && is_freevar(e))
     826           0 :                 set_freevar(ne, is_freevar(e)-1);
     827             :         return ne;
     828             : }
     829             : 
     830             : sql_exp *
     831     2202606 : exp_alias(mvc *sql, const char *arname, const char *acname, const char *org_rname, const char *org_cname, sql_subtype *t, unsigned int card, int has_nils, int unique, int intern)
     832             : {
     833     2202606 :         sql_exp *e = exp_column(sql->sa, org_rname, org_cname, t, card, has_nils, unique, intern);
     834             : 
     835     2203129 :         if (e == NULL)
     836             :                 return NULL;
     837     2203129 :         assert(acname && org_cname);
     838     2203129 :         exp_setname(sql, e, (arname)?arname:org_rname, acname);
     839     2203129 :         return e;
     840             : }
     841             : 
     842             : sql_exp *
     843           0 : exp_alias_ref(mvc *sql, sql_exp *e)
     844             : {
     845           0 :         const char *tname = exp_relname(e);
     846           0 :         const char *cname = exp_name(e);
     847             : 
     848           0 :         if (!has_label(e))
     849           0 :                 exp_label(sql->sa, e, ++sql->label);
     850           0 :         sql_exp *ne = exp_ref(sql, e);
     851           0 :         if (ne == NULL)
     852             :                 return NULL;
     853           0 :         exp_setname(sql, ne, tname, cname);
     854           0 :         return ne;
     855             : }
     856             : 
     857             : sql_exp *
     858       16242 : exp_set(allocator *sa, const char *sname, const char *name, sql_exp *val, int level)
     859             : {
     860       16242 :         sql_exp *e = exp_create(sa, e_psm);
     861             : 
     862       16242 :         if (e == NULL)
     863             :                 return NULL;
     864       16242 :         e->alias.rname = sname;
     865       16242 :         e->alias.name = name;
     866       16242 :         e->l = val;
     867       16242 :         e->flag = PSM_SET + SET_PSM_LEVEL(level);
     868       16242 :         return e;
     869             : }
     870             : 
     871             : sql_exp *
     872        9559 : exp_var(allocator *sa, const char *sname, const char *name, sql_subtype *type, int level)
     873             : {
     874        9559 :         sql_exp *e = exp_create(sa, e_psm);
     875             : 
     876        9559 :         if (e == NULL)
     877             :                 return NULL;
     878        9559 :         e->alias.rname = sname;
     879        9559 :         e->alias.name = name;
     880        9559 :         e->tpe = *type;
     881        9559 :         e->flag = PSM_VAR + SET_PSM_LEVEL(level);
     882        9559 :         return e;
     883             : }
     884             : 
     885             : sql_exp *
     886         119 : exp_table(allocator *sa, const char *name, sql_table *t, int level)
     887             : {
     888         119 :         sql_exp *e = exp_create(sa, e_psm);
     889             : 
     890         119 :         if (e == NULL)
     891             :                 return NULL;
     892         119 :         e->alias.rname = NULL;
     893         119 :         e->alias.name = name;
     894         119 :         e->f = t;
     895         119 :         e->flag = PSM_VAR + SET_PSM_LEVEL(level);
     896         119 :         return e;
     897             : }
     898             : 
     899             : sql_exp *
     900       23464 : exp_return(allocator *sa, sql_exp *val, int level)
     901             : {
     902       23464 :         sql_exp *e = exp_create(sa, e_psm);
     903             : 
     904       23463 :         if (e == NULL)
     905             :                 return NULL;
     906       23463 :         e->l = val;
     907       23463 :         e->flag = PSM_RETURN + SET_PSM_LEVEL(level);
     908       23463 :         return e;
     909             : }
     910             : 
     911             : sql_exp *
     912        1023 : exp_while(allocator *sa, sql_exp *cond, list *stmts)
     913             : {
     914        1023 :         sql_exp *e = exp_create(sa, e_psm);
     915             : 
     916        1023 :         if (e == NULL)
     917             :                 return NULL;
     918        1023 :         e->l = cond;
     919        1023 :         e->r = stmts;
     920        1023 :         e->flag = PSM_WHILE;
     921        1023 :         return e;
     922             : }
     923             : 
     924             : sql_exp *
     925       11741 : exp_if(allocator *sa, sql_exp *cond, list *if_stmts, list *else_stmts)
     926             : {
     927       11741 :         sql_exp *e = exp_create(sa, e_psm);
     928             : 
     929       11741 :         if (e == NULL)
     930             :                 return NULL;
     931       11741 :         e->l = cond;
     932       11741 :         e->r = if_stmts;
     933       11741 :         e->f = else_stmts;
     934       11741 :         e->flag = PSM_IF;
     935       11741 :         return e;
     936             : }
     937             : 
     938             : sql_exp *
     939       81607 : exp_rel(mvc *sql, sql_rel *rel)
     940             : {
     941       81607 :         sql_exp *e = exp_create(sql->sa, e_psm);
     942             : 
     943       81607 :         if (e == NULL)
     944             :                 return NULL;
     945       81607 :         e->l = rel;
     946       81607 :         e->flag = PSM_REL;
     947       81607 :         e->card = is_single(rel)?CARD_ATOM:rel->card;
     948       81607 :         assert(rel);
     949       81607 :         if (is_topn(rel->op))
     950           3 :                 rel = rel->l;
     951       81607 :         if (is_project(rel->op)) {
     952       62557 :                 sql_exp *last = rel->exps->t->data;
     953       62557 :                 sql_subtype *t = exp_subtype(last);
     954       62557 :                 e->tpe = t ? *t : (sql_subtype) {0};
     955             :         }
     956             :         return e;
     957             : }
     958             : 
     959             : sql_exp *
     960         157 : exp_exception(allocator *sa, sql_exp *cond, const char *error_message)
     961             : {
     962         157 :         sql_exp *e = exp_create(sa, e_psm);
     963             : 
     964         157 :         if (e == NULL)
     965             :                 return NULL;
     966         157 :         e->l = cond;
     967         157 :         e->r = sa_strdup(sa, error_message);
     968         157 :         e->flag = PSM_EXCEPTION;
     969         157 :         return e;
     970             : }
     971             : 
     972             : /* Set a name (alias) for the expression, such that we can refer
     973             :    to this expression by this simple name.
     974             :  */
     975             : void
     976     3739896 : exp_setname(mvc *sql, sql_exp *e, const char *rname, const char *name )
     977             : {
     978     3739896 :         assert(name || rname);
     979     3739896 :         e->alias.label = -(sql->nid++);
     980             :         //e->alias.label = 0;
     981     3739896 :         if (name)
     982     3596464 :                 e->alias.name = name;
     983     3739896 :         e->alias.rname = (rname);
     984     3739896 : }
     985             : 
     986             : void
     987      143560 : noninternexp_setname(mvc *sql, sql_exp *e, const char *rname, const char *name )
     988             : {
     989      143560 :         if (!is_intern(e))
     990      143558 :                 exp_setname(sql, e, rname, name);
     991      143560 : }
     992             : 
     993             : void
     994      667821 : exp_setalias(sql_exp *e, int label, const char *rname, const char *name )
     995             : {
     996      667821 :         e->alias.label = label;
     997      667821 :         assert(e->alias.label);
     998      667821 :         e->alias.name = name;
     999      667821 :         e->alias.rname = rname;
    1000      667821 : }
    1001             : 
    1002             : void
    1003     4469270 : exp_prop_alias(allocator *sa, sql_exp *e, sql_exp *oe )
    1004             : {
    1005     4469270 :         e->ref = oe->ref;
    1006     4469270 :         if (oe->alias.name == NULL && exp_has_rel(oe)) {
    1007        8105 :                 sql_rel *r = exp_rel_get_rel(sa, oe);
    1008        8105 :                 if (!is_project(r->op))
    1009             :                         return ;
    1010        8105 :                 oe = r->exps->t->data;
    1011             :         }
    1012     4469270 :         e->alias = oe->alias;
    1013             : }
    1014             : 
    1015             : str
    1016     2115135 : number2name(str s, int len, int i)
    1017             : {
    1018     2115135 :         s[--len] = 0;
    1019     6367486 :         while(i>0) {
    1020     4252351 :                 s[--len] = '0' + (i & 7);
    1021     4252351 :                 i >>= 3;
    1022             :         }
    1023     2115135 :         s[--len] = '%';
    1024     2115135 :         return s + len;
    1025             : }
    1026             : 
    1027             : void
    1028           0 : exp_setrelname(allocator *sa, sql_exp *e, int nr)
    1029             : {
    1030           0 :         char name[16], *nme;
    1031             : 
    1032           0 :         nme = number2name(name, sizeof(name), nr);
    1033           0 :         e->alias.label = 0;
    1034           0 :         e->alias.rname = sa_strdup(sa, nme);
    1035           0 : }
    1036             : 
    1037             : char *
    1038     2053936 : make_label(allocator *sa, int nr)
    1039             : {
    1040     2053936 :         char name[16], *nme;
    1041             : 
    1042     2053936 :         nme = number2name(name, sizeof(name), nr);
    1043     2054309 :         return sa_strdup(sa, nme);
    1044             : }
    1045             : 
    1046             : sql_exp*
    1047     2044133 : exp_label(allocator *sa, sql_exp *e, int nr)
    1048             : {
    1049     2044133 :         assert(nr > 0);
    1050             :         //assert (e->alias.label == 0);
    1051     2044133 :         e->alias.label = nr;
    1052     2044133 :         e->alias.rname = e->alias.name = make_label(sa, nr);
    1053     2045600 :         return e;
    1054             : }
    1055             : 
    1056             : list*
    1057       54808 : exps_label(mvc *sql, list *exps)
    1058             : {
    1059       54808 :         if (!exps)
    1060             :                 return NULL;
    1061             : 
    1062       54808 :         int nr = sql->label+1;
    1063       54808 :         sql->label += list_length(exps);
    1064      125453 :         for (node *n = exps->h; n; n = n->next)
    1065       70645 :                 n->data = exp_label(sql->sa, n->data, nr++);
    1066       54808 :         list_hash_clear(exps);
    1067       54808 :         return exps;
    1068             : }
    1069             : 
    1070             : void
    1071       21165 : exp_swap( sql_exp *e )
    1072             : {
    1073       21165 :         sql_exp *s = e->l;
    1074             : 
    1075       21165 :         e->l = e->r;
    1076       21165 :         e->r = s;
    1077       21165 :         e->flag = swap_compare((comp_type)e->flag);
    1078       21165 :         assert(!e->f);
    1079       21165 : }
    1080             : 
    1081             : sql_subtype *
    1082    34836593 : exp_subtype( sql_exp *e )
    1083             : {
    1084    34838541 :         switch(e->type) {
    1085     8208823 :         case e_atom: {
    1086     8208823 :                 if (e->l) {
    1087     7476481 :                         atom *a = e->l;
    1088     7476481 :                         return atom_type(a);
    1089      732342 :                 } else if (e->tpe.type) { /* atom reference */
    1090      728583 :                         return &e->tpe;
    1091        3759 :                 } else if (e->f) {
    1092        1948 :                         list *vals = exp_get_values(e);
    1093        1948 :                         if (!list_empty(vals))
    1094        1948 :                                 return exp_subtype(vals->h->data);
    1095             :                 }
    1096             :                 break;
    1097             :         }
    1098    21870122 :         case e_convert:
    1099             :         case e_column:
    1100    21870122 :                 if (e->tpe.type)
    1101    21870011 :                         return &e->tpe;
    1102             :                 break;
    1103     4615820 :         case e_aggr:
    1104             :         case e_func: {
    1105     4615820 :                 if (e->f) {
    1106     4615820 :                         sql_subfunc *f = e->f;
    1107     4615820 :                         if (f->res && list_length(f->res) == 1)
    1108     4605089 :                                 return f->res->h->data;
    1109             :                 }
    1110             :                 return NULL;
    1111             :         }
    1112        7263 :         case e_cmp:
    1113        7263 :                 return sql_bind_localtype("bit");
    1114      136513 :         case e_psm:
    1115      136513 :                 if (e->tpe.type)
    1116      136498 :                         return &e->tpe;
    1117             :                 /* fall through */
    1118             :         default:
    1119             :                 return NULL;
    1120             :         }
    1121             :         return NULL;
    1122             : }
    1123             : 
    1124             : const char *
    1125    35341803 : exp_name( sql_exp *e )
    1126             : {
    1127    35356115 :         if (e->alias.name)
    1128             :                 return e->alias.name;
    1129     1605779 :         if (e->type == e_convert && e->l)
    1130             :                 return exp_name(e->l);
    1131     1601749 :         if (e->type == e_psm && e->l) { /* subquery return name of last expression */
    1132       10282 :                 sql_rel *r = e->l;
    1133       10282 :                 if (is_project(r->op))
    1134       10282 :                         return exp_name(r->exps->t->data);
    1135             :         }
    1136             :         return NULL;
    1137             : }
    1138             : 
    1139             : const char *
    1140     3938158 : exp_relname( sql_exp *e )
    1141             : {
    1142     3938170 :         if (e->alias.rname)
    1143             :                 return e->alias.rname;
    1144      476284 :         if (!e->alias.name && e->type == e_convert && e->l)
    1145             :                 return exp_relname(e->l);
    1146      476272 :         if (!e->alias.name && e->type == e_psm && e->l) { /* subquery return name of last expression */
    1147           0 :                 sql_rel *r = e->l;
    1148           0 :                 if (is_project(r->op))
    1149           0 :                         return exp_relname(r->exps->t->data);
    1150             :         }
    1151             :         return NULL;
    1152             : }
    1153             : 
    1154             : const char *
    1155       17338 : exp_find_rel_name(sql_exp *e)
    1156             : {
    1157       17338 :         if (e->alias.rname)
    1158             :                 return e->alias.rname;
    1159         563 :         switch(e->type) {
    1160             :         case e_column:
    1161             :                 break;
    1162           0 :         case e_convert:
    1163           0 :                 return exp_find_rel_name(e->l);
    1164             :         default:
    1165             :                 return NULL;
    1166             :         }
    1167             :         return NULL;
    1168             : }
    1169             : 
    1170             : unsigned int
    1171     1854256 : exp_card( sql_exp *e )
    1172             : {
    1173     1854256 :         return e->card;
    1174             : }
    1175             : 
    1176             : unsigned int
    1177     1632951 : exp_get_label( sql_exp *e )
    1178             : {
    1179     1632963 :         if (e->alias.label)
    1180     1632951 :                 return e->alias.label;
    1181          12 :         if (e->type == e_convert && e->l)
    1182             :                 return exp_get_label(e->l);
    1183           0 :         if (e->type == e_psm && e->l) { /* subquery return name of last expression */
    1184           0 :                 sql_rel *r = e->l;
    1185           0 :                 if (is_project(r->op))
    1186           0 :                         return exp_get_label(r->exps->t->data);
    1187             :         }
    1188             :         return 0;
    1189             : }
    1190             : 
    1191             : 
    1192             : const char *
    1193           0 : exp_func_name( sql_exp *e )
    1194             : {
    1195           0 :         if (e->type == e_func && e->f) {
    1196           0 :                 sql_subfunc *f = e->f;
    1197           0 :                 return f->func->base.name;
    1198             :         }
    1199           0 :         if (e->alias.name)
    1200             :                 return e->alias.name;
    1201           0 :         if (e->type == e_convert && e->l)
    1202           0 :                 return exp_name(e->l);
    1203             :         return NULL;
    1204             : }
    1205             : 
    1206             : int
    1207    49003058 : exp_cmp( sql_exp *e1, sql_exp *e2)
    1208             : {
    1209    49003058 :         return (e1 == e2)?0:-1;
    1210             : }
    1211             : 
    1212             : int
    1213      251589 : exp_equal( sql_exp *e1, sql_exp *e2)
    1214             : {
    1215      251589 :         if (e1 == e2)
    1216             :                 return 0;
    1217      251589 :         if (e1->alias.label && e1->alias.label == e2->alias.label)
    1218        8625 :                 return 0;
    1219             :         return -1;
    1220             : }
    1221             : 
    1222             : int
    1223    49002933 : exp_match( sql_exp *e1, sql_exp *e2)
    1224             : {
    1225    49002933 :         if (exp_cmp(e1, e2) == 0)
    1226             :                 return 1;
    1227    48762347 :         if (e1->type == e2->type && e1->type == e_column) {
    1228    23994171 :                 if (e1->nid && e1->nid == e2->nid)
    1229             :                         return 1;
    1230    22751741 :                 if (e1->alias.label != e2->alias.label || !e1->alias.label || !e2->alias.label)
    1231             :                         return 0;
    1232             :                 return 1;
    1233             :         }
    1234    24768176 :         if (e1->type == e2->type && e1->type == e_func) {
    1235     8728999 :                 if (is_identity(e1, NULL) && is_identity(e2, NULL)) {
    1236           0 :                         list *args1 = e1->l;
    1237           0 :                         list *args2 = e2->l;
    1238             : 
    1239           0 :                         if (list_length(args1) == list_length(args2) && list_length(args1) == 1) {
    1240           0 :                                 sql_exp *ne1 = args1->h->data;
    1241           0 :                                 sql_exp *ne2 = args2->h->data;
    1242             : 
    1243           0 :                                 if (exp_match(ne1,ne2))
    1244             :                                         return 1;
    1245             :                         }
    1246             :                 }
    1247             :         }
    1248             :         return 0;
    1249             : }
    1250             : 
    1251             : /* list already contains matching expression */
    1252             : sql_exp*
    1253      181598 : exps_find_exp( list *l, sql_exp *e)
    1254             : {
    1255      181598 :         node *n;
    1256             : 
    1257      181598 :         if (!l || !l->h)
    1258             :                 return NULL;
    1259             : 
    1260      416701 :         for(n=l->h; n; n = n->next) {
    1261      366144 :                 if (exp_match(n->data, e) || exp_refers(n->data, e))
    1262      112679 :                         return n->data;
    1263             :         }
    1264             :         return NULL;
    1265             : }
    1266             : 
    1267             : /* c refers to the parent p */
    1268             : int
    1269     3583511 : exp_refers( sql_exp *p, sql_exp *c)
    1270             : {
    1271     3583511 :         if (c->type == e_column && c->nid)
    1272      424601 :                 return c->nid == p->alias.label;
    1273             :         return 0;
    1274             : }
    1275             : 
    1276             : sql_exp*
    1277         218 : exps_refers(sql_exp *p, list *l)
    1278             : {
    1279         218 :         node *n;
    1280             : 
    1281         218 :         if (!l || !l->h)
    1282             :                 return NULL;
    1283             : 
    1284         532 :         for(n=l->h; n; n = n->next) {
    1285         318 :                 if (exp_refers(p, n->data))
    1286           4 :                         return n->data;
    1287             :         }
    1288             :         return NULL;
    1289             : }
    1290             : 
    1291             : int
    1292           0 : exp_match_col_exps( sql_exp *e, list *l)
    1293             : {
    1294           0 :         node *n;
    1295             : 
    1296           0 :         for(n=l->h; n; n = n->next) {
    1297           0 :                 sql_exp *re = n->data;
    1298           0 :                 sql_exp *re_r = re->r;
    1299             : 
    1300           0 :                 if (re->type == e_cmp && re->flag == cmp_or)
    1301           0 :                         return exp_match_col_exps(e, re->l) &&
    1302           0 :                                exp_match_col_exps(e, re->r);
    1303             : 
    1304           0 :                 if (re->type != e_cmp || !re_r || re_r->card != 1 || !exp_match_exp(e, re->l))
    1305           0 :                         return 0;
    1306             :         }
    1307             :         return 1;
    1308             : }
    1309             : 
    1310             : int
    1311       10121 : exps_match_col_exps( sql_exp *e1, sql_exp *e2)
    1312             : {
    1313       10121 :         sql_exp *e1_r = e1->r;
    1314       10121 :         sql_exp *e2_r = e2->r;
    1315             : 
    1316       10121 :         if (e1->type != e_cmp || e2->type != e_cmp)
    1317             :                 return 0;
    1318             : 
    1319       10050 :         if (!is_complex_exp(e1->flag) && e1_r && e1_r->card == CARD_ATOM &&
    1320        4858 :             !is_complex_exp(e2->flag) && e2_r && e2_r->card == CARD_ATOM)
    1321        4047 :                 return exp_match_exp(e1->l, e2->l);
    1322             : 
    1323        6003 :         if (!is_complex_exp(e1->flag) && e1_r && e1_r->card == CARD_ATOM &&
    1324         811 :             (e2->flag == cmp_in || e2->flag == cmp_notin))
    1325         729 :                 return exp_match_exp(e1->l, e2->l);
    1326        5274 :         if ((e1->flag == cmp_in || e1->flag == cmp_notin) &&
    1327        2771 :             !is_complex_exp(e2->flag) && e2_r && e2_r->card == CARD_ATOM)
    1328        1931 :                 return exp_match_exp(e1->l, e2->l);
    1329             : 
    1330        3343 :         if ((e1->flag == cmp_in || e1->flag == cmp_notin) &&
    1331         840 :             (e2->flag == cmp_in || e2->flag == cmp_notin))
    1332         840 :                 return exp_match_exp(e1->l, e2->l);
    1333             : 
    1334        2503 :         if (!is_complex_exp(e1->flag) && e1_r && e1_r->card == CARD_ATOM &&
    1335          82 :             e2->flag == cmp_or)
    1336           0 :                 return exp_match_col_exps(e1->l, e2->l) &&
    1337           0 :                        exp_match_col_exps(e1->l, e2->r);
    1338             : 
    1339        2503 :         if (e1->flag == cmp_or &&
    1340           0 :             !is_complex_exp(e2->flag) && e2_r && e2_r->card == CARD_ATOM)
    1341           0 :                 return exp_match_col_exps(e2->l, e1->l) &&
    1342           0 :                        exp_match_col_exps(e2->l, e1->r);
    1343             : 
    1344        2503 :         if (e1->flag == cmp_or && e2->flag == cmp_or) {
    1345           0 :                 list *l = e1->l, *r = e1->r;
    1346           0 :                 sql_exp *el = l->h->data;
    1347           0 :                 sql_exp *er = r->h->data;
    1348             : 
    1349           0 :                 return list_length(l) == 1 && list_length(r) == 1 &&
    1350           0 :                        exps_match_col_exps(el, e2) &&
    1351           0 :                        exps_match_col_exps(er, e2);
    1352             :         }
    1353             :         return 0;
    1354             : }
    1355             : 
    1356             : int
    1357       46827 : exp_match_list( list *l, list *r)
    1358             : {
    1359       46827 :         node *n, *m;
    1360       46827 :         char *lu, *ru;
    1361       46827 :         int lc = 0, rc = 0, match = 0;
    1362             : 
    1363       46827 :         if (!l || !r)
    1364           0 :                 return l == r;
    1365       46827 :         if (list_length(l) != list_length(r) || list_length(l) == 0 || list_length(r) == 0)
    1366         460 :                 return 0;
    1367       46367 :         if (list_length(l) > 10 || list_length(r) > 10)
    1368           5 :                 return 0;/* to expensive */
    1369             : 
    1370       46362 :         lu = ZNEW_ARRAY(char, list_length(l));
    1371       46362 :         ru = ZNEW_ARRAY(char, list_length(r));
    1372       46362 :         if (!lu || !ru) {
    1373           0 :                 _DELETE(lu);
    1374           0 :                 _DELETE(ru);
    1375           0 :                 return 0;
    1376             :         }
    1377      136596 :         for (n = l->h, lc = 0; n; n = n->next, lc++) {
    1378       90234 :                 sql_exp *le = n->data;
    1379             : 
    1380      269178 :                 for ( m = r->h, rc = 0; m; m = m->next, rc++) {
    1381      178944 :                         sql_exp *re = m->data;
    1382             : 
    1383      178944 :                         if (!ru[rc] && exp_match_exp(le,re)) {
    1384        6719 :                                 lu[lc] = 1;
    1385        6719 :                                 ru[rc] = 1;
    1386        6719 :                                 match = 1;
    1387             :                         }
    1388             :                 }
    1389             :         }
    1390       53528 :         for (n = l->h, lc = 0; n && match; n = n->next, lc++)
    1391        7166 :                 if (!lu[lc])
    1392        1274 :                         match = 0;
    1393       51776 :         for (n = r->h, rc = 0; n && match; n = n->next, rc++)
    1394        5414 :                 if (!ru[rc])
    1395           0 :                         match = 0;
    1396       46362 :         _DELETE(lu);
    1397       46362 :         _DELETE(ru);
    1398       46362 :         return match;
    1399             : }
    1400             : 
    1401             : static int
    1402     2426100 : exps_equal( list *l, list *r)
    1403             : {
    1404     2426100 :         node *n, *m;
    1405             : 
    1406     2426100 :         if (!l || !r)
    1407       51786 :                 return l == r;
    1408     2374314 :         if (list_length(l) != list_length(r))
    1409             :                 return 0;
    1410     3491090 :         for (n = l->h, m = r->h; n && m; n = n->next, m = m->next) {
    1411     3443271 :                 sql_exp *le = n->data, *re = m->data;
    1412             : 
    1413     3443271 :                 if (!exp_match_exp(le,re))
    1414             :                         return 0;
    1415             :         }
    1416             :         return 1;
    1417             : }
    1418             : 
    1419             : int
    1420    45440780 : exp_match_exp_semantics( sql_exp *e1, sql_exp *e2, bool semantics)
    1421             : {
    1422    45440780 :         if (exp_match(e1, e2))
    1423             :                 return 1;
    1424             : 
    1425    44208621 :         if (is_ascending(e1) != is_ascending(e2) ||
    1426    44196359 :                 nulls_last(e1) != nulls_last(e2) ||
    1427    44196359 :                 zero_if_empty(e1) != zero_if_empty(e2) ||
    1428    44006986 :                 need_no_nil(e1) != need_no_nil(e2) ||
    1429    44006986 :                 is_anti(e1) != is_anti(e2) ||
    1430    44003053 :                 (semantics && is_semantics(e1) != is_semantics(e2)) ||
    1431    32823677 :                 (semantics && is_any(e1) != is_any(e2)) ||
    1432    32823769 :                 is_symmetric(e1) != is_symmetric(e2) ||
    1433    32823752 :                 is_unique(e1) != is_unique(e2) ||
    1434             :                 need_distinct(e1) != need_distinct(e2))
    1435             :                 return 0;
    1436             : 
    1437    32245044 :         if (e1->type == e2->type) {
    1438    23943285 :                 switch(e1->type) {
    1439      341939 :                 case e_cmp:
    1440      571177 :                         if (e1->flag == e2->flag && !is_complex_exp(e1->flag) &&
    1441      232381 :                             exp_match_exp(e1->l, e2->l) && exp_match_exp(e1->r, e2->r) &&
    1442         284 :                             ((!e1->f && !e2->f) || (e1->f && e2->f && exp_match_exp(e1->f, e2->f))))
    1443         277 :                                 return 1;
    1444      344407 :                         else if (e1->flag == e2->flag && e1->flag == cmp_or &&
    1445        2757 :                             exp_match_list(e1->l, e2->l) && exp_match_list(e1->r, e2->r))
    1446             :                                 return 1;
    1447      341656 :                         else if (e1->flag == e2->flag &&
    1448      239041 :                                 (e1->flag == cmp_in || e1->flag == cmp_notin) &&
    1449        3625 :                             exp_match_exp(e1->l, e2->l) && exp_match_list(e1->r, e2->r))
    1450             :                                 return 1;
    1451      567462 :                         else if (e1->flag == e2->flag && (e1->flag == cmp_equal || e1->flag == cmp_notequal) &&
    1452      225846 :                                 exp_match_exp(e1->l, e2->r) && exp_match_exp(e1->r, e2->l))
    1453             :                                 return 1; /* = and <> operations are reflective, so exp_match_exp can be called crossed */
    1454             :                         break;
    1455      296110 :                 case e_convert:
    1456      357786 :                         if (!subtype_cmp(exp_totype(e1), exp_totype(e2)) &&
    1457       92201 :                             !subtype_cmp(exp_fromtype(e1), exp_fromtype(e2)) &&
    1458       30525 :                             exp_match_exp(e1->l, e2->l))
    1459             :                                 return 1;
    1460             :                         break;
    1461       58789 :                 case e_aggr:
    1462       96607 :                         if (!subfunc_cmp(e1->f, e2->f) && /* equal aggregation*/
    1463       37818 :                             exps_equal(e1->l, e2->l))
    1464             :                                 return 1;
    1465             :                         break;
    1466     4434628 :                 case e_func: {
    1467     4434628 :                         sql_subfunc *e1f = (sql_subfunc*) e1->f;
    1468     4434628 :                         const char *sname = e1f->func->s ? e1f->func->s->base.name : NULL;
    1469     4434628 :                         int (*comp)(list*, list*) = is_commutative(sname, e1f->func->base.name) ? exp_match_list : exps_equal;
    1470             : 
    1471     8869256 :                         if (!e1f->func->side_effect &&
    1472     6816291 :                                 !subfunc_cmp(e1f, e2->f) && /* equal functions */
    1473     2431890 :                                 comp(e1->l, e2->l) &&
    1474             :                                 /* optional order by expressions */
    1475       50227 :                                 exps_equal(e1->r, e2->r))
    1476             :                                         return 1;
    1477             :                         } break;
    1478     1074636 :                 case e_atom:
    1479     1074636 :                         if (e1->l && e2->l && !atom_cmp(e1->l, e2->l))
    1480             :                                 return 1;
    1481     1032799 :                         if (e1->f && e2->f && exps_equal(e1->f, e2->f))
    1482             :                                 return 1;
    1483     1032798 :                         if (e1->r && e2->r && e1->flag == e2->flag && !subtype_cmp(&e1->tpe, &e2->tpe)) {
    1484          54 :                                 sql_var_name *v1 = (sql_var_name*) e1->r, *v2 = (sql_var_name*) e2->r;
    1485          54 :                                 if (((!v1->sname && !v2->sname) || (v1->sname && v2->sname && strcmp(v1->sname, v2->sname) == 0)) &&
    1486          54 :                                         ((!v1->name && !v2->name) || (v1->name && v2->name && strcmp(v1->name, v2->name) == 0)))
    1487             :                                         return 1;
    1488             :                         }
    1489     1032798 :                         if (!e1->l && !e1->r && !e1->f && !e2->l && !e2->r && !e2->f && e1->flag == e2->flag && !subtype_cmp(&e1->tpe, &e2->tpe))
    1490             :                                 return 1;
    1491             :                         break;
    1492             :                 default:
    1493             :                         break;
    1494             :                 }
    1495             :         }
    1496             :         return 0;
    1497             : }
    1498             : 
    1499             : int
    1500    45146608 : exp_match_exp( sql_exp *e1, sql_exp *e2)
    1501             : {
    1502    45146608 :         return exp_match_exp_semantics( e1, e2, true);
    1503             : }
    1504             : 
    1505             : sql_exp *
    1506      162561 : exps_any_match(list *l, sql_exp *e)
    1507             : {
    1508      162561 :         if (!l)
    1509             :                 return NULL;
    1510      616488 :         for (node *n = l->h; n ; n = n->next) {
    1511      559700 :                 sql_exp *ne = (sql_exp *) n->data;
    1512      559700 :                 if (exp_match_exp(ne, e))
    1513      105773 :                         return ne;
    1514             :         }
    1515             :         return NULL;
    1516             : }
    1517             : 
    1518             : static int
    1519          24 : exps_are_joins( list *l )
    1520             : {
    1521          24 :         if (l)
    1522          52 :                 for (node *n = l->h; n; n = n->next) {
    1523          28 :                         sql_exp *e = n->data;
    1524             : 
    1525          28 :                         if (exp_is_join_exp(e))
    1526             :                                 return -1;
    1527             :                 }
    1528             :         return 0;
    1529             : }
    1530             : 
    1531             : int
    1532         253 : exp_is_join_exp(sql_exp *e)
    1533             : {
    1534         253 :         if (exp_is_join(e, NULL) == 0)
    1535             :                 return 0;
    1536          27 :         if (e->type == e_cmp && e->flag == cmp_or && e->card >= CARD_AGGR)
    1537          12 :                 if (exps_are_joins(e->l) == 0 && exps_are_joins(e->r) == 0)
    1538             :                         return 0;
    1539             :         return -1;
    1540             : }
    1541             : 
    1542             : static int
    1543      777335 : exp_is_complex_select( sql_exp *e )
    1544             : {
    1545      798872 :         switch (e->type) {
    1546         447 :         case e_atom: {
    1547         447 :                 if (e->f) {
    1548           0 :                         int r = (e->card == CARD_ATOM);
    1549           0 :                         list *l = e->f;
    1550             : 
    1551           0 :                         if (r)
    1552           0 :                                 for (node *n = l->h; n && !r; n = n->next)
    1553           0 :                                         r |= exp_is_complex_select(n->data);
    1554           0 :                         return r;
    1555             :                 }
    1556             :                 return 0;
    1557             :         }
    1558       21537 :         case e_convert:
    1559       21537 :                 return exp_is_complex_select(e->l);
    1560        2055 :         case e_func:
    1561             :         case e_aggr:
    1562             :         {
    1563        2055 :                 int r = (e->card == CARD_ATOM);
    1564        2055 :                 list *l = e->l;
    1565             : 
    1566        2055 :                 if (r && l)
    1567          45 :                         for (node *n = l->h; n && !r; n = n->next)
    1568           0 :                                 r |= exp_is_complex_select(n->data);
    1569             :                 return r;
    1570             :         }
    1571             :         case e_psm:
    1572             :                 return 1;
    1573             :         case e_column:
    1574             :         case e_cmp:
    1575             :         default:
    1576             :                 return 0;
    1577             :         }
    1578             : }
    1579             : 
    1580             : static int
    1581      388673 : complex_select(sql_exp *e)
    1582             : {
    1583      388673 :         sql_exp *l = e->l, *r = e->r;
    1584             : 
    1585      388673 :         if (exp_is_complex_select(l) || exp_is_complex_select(r))
    1586          45 :                 return 1;
    1587             :         return 0;
    1588             : }
    1589             : 
    1590             : static int
    1591         929 : distinct_rel(sql_exp *e, const char **rname)
    1592             : {
    1593        1071 :         const char *e_rname = NULL;
    1594             : 
    1595        1071 :         switch(e->type) {
    1596         651 :         case e_column:
    1597         651 :                 e_rname = exp_relname(e);
    1598             : 
    1599         651 :                 if (*rname && e_rname && strcmp(*rname, e_rname) == 0)
    1600             :                         return 1;
    1601         504 :                 if (!*rname) {
    1602         321 :                         *rname = e_rname;
    1603         321 :                         return 1;
    1604             :                 }
    1605             :                 break;
    1606         145 :         case e_aggr:
    1607             :         case e_func:
    1608         145 :                 if (e->l) {
    1609         145 :                         int m = 1;
    1610         145 :                         list *l = e->l;
    1611         145 :                         node *n;
    1612             : 
    1613         438 :                         for(n=l->h; n && m; n = n->next) {
    1614         293 :                                 sql_exp *ae = n->data;
    1615             : 
    1616         293 :                                 m = distinct_rel(ae, rname);
    1617             :                         }
    1618         145 :                         return m;
    1619             :                 }
    1620             :                 return 0;
    1621             :         case e_atom:
    1622             :                 return 1;
    1623         142 :         case e_convert:
    1624         142 :                 return distinct_rel(e->l, rname);
    1625             :         default:
    1626             :                 return 0;
    1627             :         }
    1628             :         return 0;
    1629             : }
    1630             : 
    1631             : int
    1632    20400813 : rel_has_exp(sql_rel *rel, sql_exp *e, bool subexp)
    1633             : {
    1634    20400813 :         if (rel_find_exp_and_corresponding_rel(rel, e, subexp, NULL, NULL))
    1635     4499106 :                 return 0;
    1636             :         return -1;
    1637             : }
    1638             : 
    1639             : int
    1640           0 : rel_has_exps(sql_rel *rel, list *exps, bool subexp)
    1641             : {
    1642           0 :         if (list_empty(exps))
    1643             :                 return 0;
    1644           0 :         for (node *n = exps->h; n; n = n->next)
    1645           0 :                 if (rel_has_exp(rel, n->data, subexp) >= 0)
    1646             :                         return 0;
    1647             :         return -1;
    1648             : }
    1649             : 
    1650             : int
    1651           0 : rel_has_all_exps(sql_rel *rel, list *exps)
    1652             : {
    1653           0 :         if (list_empty(exps))
    1654             :                 return 1;
    1655           0 :         for (node *n = exps->h; n; n = n->next)
    1656           0 :                 if (rel_has_exp(rel, n->data, false) < 0)
    1657             :                         return 0;
    1658             :         return 1;
    1659             : }
    1660             : 
    1661             : static int
    1662    15406854 : rel_has_exp2(sql_rel *rel, sql_exp *e)
    1663             : {
    1664    15406854 :         return rel_has_exp(rel, e, false);
    1665             : }
    1666             : 
    1667             : sql_rel *
    1668     5857340 : find_rel(list *rels, sql_exp *e)
    1669             : {
    1670     5857340 :         node *n = list_find(rels, e, (fcmp)&rel_has_exp2);
    1671     5857340 :         if (n)
    1672     3346851 :                 return n->data;
    1673             :         return NULL;
    1674             : }
    1675             : 
    1676             : sql_rel *
    1677           0 : find_one_rel(list *rels, sql_exp *e)
    1678             : {
    1679           0 :         node *n;
    1680           0 :         sql_rel *fnd = NULL;
    1681             : 
    1682           0 :         for(n = rels->h; n; n = n->next) {
    1683           0 :                 if (rel_has_exp(n->data, e, false) == 0) {
    1684           0 :                         if (fnd)
    1685             :                                 return NULL;
    1686           0 :                         fnd = n->data;
    1687             :                 }
    1688             :         }
    1689             :         return fnd;
    1690             : }
    1691             : 
    1692             : static int
    1693         326 : exp_is_rangejoin(sql_exp *e, list *rels)
    1694             : {
    1695             :         /* assume e is a e_cmp with 3 args
    1696             :          * Need to check e->r and e->f only touch one table.
    1697             :          */
    1698         326 :         const char *rname = 0;
    1699             : 
    1700         326 :         if (distinct_rel(e->r, &rname) && distinct_rel(e->f, &rname))
    1701             :                 return 0;
    1702         183 :         if (rels) {
    1703         138 :                 sql_rel *r = find_rel(rels, e->r);
    1704         138 :                 sql_rel *f = find_rel(rels, e->f);
    1705         138 :                 if (r && f && r == f)
    1706             :                         return 0;
    1707             :         }
    1708             :         return -1;
    1709             : }
    1710             : 
    1711             : int
    1712      390450 : exp_is_join(sql_exp *e, list *rels)
    1713             : {
    1714             :         /* only simple compare expressions, ie not or lists
    1715             :                 or range expressions (e->f)
    1716             :          */
    1717      390450 :         if (e->type == e_cmp && !is_complex_exp(e->flag) && e->l && e->r && !e->f && e->card >= CARD_AGGR && !complex_select(e))
    1718             :                 return 0;
    1719        2148 :         if (e->type == e_cmp && e->flag == cmp_filter && e->l && e->r && e->card >= CARD_AGGR)
    1720             :                 return 0;
    1721             :         /* range expression */
    1722        1954 :         if (e->type == e_cmp && !is_complex_exp(e->flag) && e->l && e->r && e->f && e->card >= CARD_AGGR && !complex_select(e))
    1723         326 :                 return exp_is_rangejoin(e, rels);
    1724             :         return -1;
    1725             : }
    1726             : 
    1727             : int
    1728      384338 : exp_is_eqjoin(sql_exp *e)
    1729             : {
    1730      384338 :         if (e->flag == cmp_equal) {
    1731      374514 :                 sql_exp *l = e->l;
    1732      374514 :                 sql_exp *r = e->r;
    1733             : 
    1734      374514 :                 if (!is_func(l->type) && !is_func(r->type))
    1735      373395 :                         return 0;
    1736             :         }
    1737             :         return -1;
    1738             : }
    1739             : 
    1740             : sql_exp *
    1741      234494 : exps_find_prop(list *exps, rel_prop kind)
    1742             : {
    1743      234494 :         if (list_empty(exps))
    1744             :                 return NULL;
    1745      467721 :         for (node *n = exps->h ; n ; n = n->next) {
    1746      234494 :                 sql_exp *e = n->data;
    1747             : 
    1748      234494 :                 if (find_prop(e->p, kind))
    1749        1267 :                         return e;
    1750             :         }
    1751             :         return NULL;
    1752             : }
    1753             : 
    1754             : /* check is one of the exps can be found in this relation */
    1755             : static sql_exp* rel_find_exp_and_corresponding_rel_(sql_rel *rel, sql_exp *e, bool subexp, sql_rel **res);
    1756             : 
    1757             : static bool
    1758      624327 : rel_find_exps_and_corresponding_rel_(sql_rel *rel, list *l, bool subexp, sql_rel **res)
    1759             : {
    1760      624327 :         int all = 1;
    1761             : 
    1762      624327 :         if (list_empty(l))
    1763             :                 return true;
    1764     1683240 :         for(node *n = l->h; n && (subexp || all); n = n->next) {
    1765     1074507 :                 sql_exp *ne = rel_find_exp_and_corresponding_rel_(rel, n->data, subexp, res);
    1766     1074507 :                 if (subexp && ne)
    1767             :                         return true;
    1768     1058913 :                 all &= (ne?1:0);
    1769             :         }
    1770      608733 :         if (all)
    1771             :                 return true;
    1772             :         return false;
    1773             : }
    1774             : 
    1775             : static sql_exp *
    1776    79285692 : rel_find_exp_and_corresponding_rel_(sql_rel *rel, sql_exp *e, bool subexp, sql_rel **res)
    1777             : {
    1778    79285692 :         sql_exp *ne = NULL;
    1779             : 
    1780    79285692 :         if (!rel)
    1781             :                 return NULL;
    1782    79285580 :         switch(e->type) {
    1783    76898572 :         case e_column:
    1784    76898572 :                 if (is_basetable(rel->op) && !rel->exps) {
    1785       26394 :                         assert(e->nid);
    1786       26394 :                         if (rel_base_has_nid(rel, e->nid))
    1787    76898562 :                                 ne = e;
    1788    96655161 :                 } else if ((!list_empty(rel->exps) && (is_project(rel->op) || is_base(rel->op))) ||
    1789    20168727 :                                         (!list_empty(rel->attr) && is_join(rel->op))) {
    1790    57474945 :                         list *l = rel->attr ? rel->attr : rel->exps;
    1791    57474945 :                         assert(e->nid);
    1792    57474945 :                         ne = exps_bind_nid(l, e->nid);
    1793             :                 }
    1794    76898562 :                 if (ne && res)
    1795       71389 :                         *res = rel;
    1796             :                 return ne;
    1797     1123869 :         case e_convert:
    1798     1123869 :                 return rel_find_exp_and_corresponding_rel_(rel, e->l, subexp, res);
    1799      628476 :         case e_aggr:
    1800             :         case e_func:
    1801      628476 :                 if (e->l)
    1802      624312 :                         if (rel_find_exps_and_corresponding_rel_(rel, e->l, subexp, res))
    1803             :                                 return e;
    1804             :                 return NULL;
    1805         412 :         case e_cmp:
    1806         412 :                 if (!subexp)
    1807             :                         return NULL;
    1808             : 
    1809          30 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    1810          13 :                         if (rel_find_exps_and_corresponding_rel_(rel, e->l, subexp, res) ||
    1811           3 :                                 rel_find_exps_and_corresponding_rel_(rel, e->r, subexp, res))
    1812          10 :                                 return e;
    1813          20 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    1814           4 :                         if (rel_find_exp_and_corresponding_rel_(rel, e->l, subexp, res) ||
    1815           2 :                                 rel_find_exps_and_corresponding_rel_(rel, e->r, subexp, res))
    1816           2 :                                 return e;
    1817          23 :                 } else if (rel_find_exp_and_corresponding_rel_(rel, e->l, subexp, res) ||
    1818           5 :                             rel_find_exp_and_corresponding_rel_(rel, e->r, subexp, res) ||
    1819           2 :                             (!e->f || rel_find_exp_and_corresponding_rel_(rel, e->f, subexp, res))) {
    1820          16 :                                 return e;
    1821             :                 }
    1822             :                 return NULL;
    1823             :         case e_psm:
    1824             :                 return NULL;
    1825      633746 :         case e_atom:
    1826      633746 :                 if (e->f) { /* values */
    1827          12 :                         list *l = e->f;
    1828          12 :                         node *n = l->h;
    1829             : 
    1830          12 :                         ne = n->data;
    1831          31 :                         while ((subexp || ne != NULL) && n != NULL) {
    1832          19 :                                 ne = rel_find_exp_and_corresponding_rel_(rel, n->data, subexp, res);
    1833          19 :                                 if (subexp && ne)
    1834             :                                         break;
    1835          19 :                                 n = n->next;
    1836             :                         }
    1837          12 :                         return ne;
    1838             :                 }
    1839             :                 return e;
    1840             :         }
    1841             :         return ne;
    1842             : }
    1843             : 
    1844             : sql_exp *
    1845    77087200 : rel_find_exp_and_corresponding_rel(sql_rel *rel, sql_exp *e, bool subexp, sql_rel **res, bool *under_join)
    1846             : {
    1847    77087200 :         sql_exp *ne = rel_find_exp_and_corresponding_rel_(rel, e, subexp, res);
    1848             : 
    1849    77087256 :         if (rel && !ne) {
    1850    55383388 :                 switch(rel->op) {
    1851    13322812 :                 case op_left:
    1852             :                 case op_right:
    1853             :                 case op_full:
    1854             :                 case op_join:
    1855             :                 case op_semi:
    1856             :                 case op_anti:
    1857    13322812 :                         ne = rel_find_exp_and_corresponding_rel(rel->l, e, subexp, res, under_join);
    1858    13322812 :                         if (!ne && is_join(rel->op))
    1859     8522880 :                                 ne = rel_find_exp_and_corresponding_rel(rel->r, e, subexp, res, under_join);
    1860             :                         break;
    1861             :                 case op_table:
    1862             :                 case op_basetable:
    1863             :                         break;
    1864      282003 :                 case op_munion:
    1865     1548979 :                         for (node* n = ((list*)rel->l)->h; n && !ne; n = n->next)
    1866     1266976 :                                 ne = rel_find_exp_and_corresponding_rel(n->data, e, subexp, res, under_join);
    1867             :                         break;
    1868    14837318 :                 default:
    1869    14837318 :                         if (!is_project(rel->op) && rel->l)
    1870     6438818 :                                 ne = rel_find_exp_and_corresponding_rel(rel->l, e, subexp, res, under_join);
    1871             :                 }
    1872             :         }
    1873    77087256 :         if (ne && under_join && is_join(rel->op))
    1874     2957673 :                 *under_join = true;
    1875    77087256 :         return ne;
    1876             : }
    1877             : 
    1878             : sql_exp *
    1879    21964526 : rel_find_exp(sql_rel *rel, sql_exp *e)
    1880             : {
    1881    21964526 :         return rel_find_exp_and_corresponding_rel(rel, e, false, NULL, NULL);
    1882             : }
    1883             : 
    1884             : bool
    1885       65413 : rel_find_nid(sql_rel *rel, int nid)
    1886             : {
    1887       65826 :         if (rel) {
    1888       65348 :                 switch(rel->op) {
    1889        5587 :                 case op_left:
    1890             :                 case op_right:
    1891             :                 case op_full:
    1892             :                 case op_join:
    1893             :                 case op_semi:
    1894             :                 case op_anti:
    1895        5587 :                         if (rel_find_nid(rel->l, nid))
    1896             :                                 return true;
    1897         497 :                         if (is_join(rel->op))
    1898         413 :                                 return rel_find_nid(rel->r, nid);
    1899             :                         break;
    1900       56403 :                 case op_table:
    1901             :                 case op_basetable:
    1902             :                 case op_munion:
    1903             :                 case op_union:
    1904             :                 case op_inter:
    1905             :                 case op_except:
    1906             :                 case op_project:
    1907             :                 case op_groupby:
    1908       56403 :                         if (rel->exps) {
    1909       56403 :                                 if (exps_bind_nid(rel->exps, nid))
    1910             :                                         return true;
    1911           0 :                         } else if (rel->op == op_basetable)
    1912           0 :                                 return rel_base_has_nid(rel, nid);
    1913             :                         break;
    1914        3358 :                 case op_select:
    1915             :                 case op_topn:
    1916             :                 case op_sample:
    1917        3358 :                         if (rel_find_nid(rel->l, nid))
    1918             :                                 return true;
    1919             :                         break;
    1920             :                 case op_ddl:
    1921             :                 case op_insert:
    1922             :                 case op_update:
    1923             :                 case op_delete:
    1924             :                 case op_truncate:
    1925             :                 case op_merge:
    1926             :                         return false;
    1927             : 
    1928             :                 }
    1929             :         }
    1930             :         return false;
    1931             : }
    1932             : 
    1933             : int
    1934     3906147 : exp_is_true(sql_exp *e)
    1935             : {
    1936     3906147 :         if (e->type == e_atom && e->l)
    1937       48422 :                 return atom_is_true(e->l);
    1938     3857725 :         if (e->type == e_cmp && e->flag == cmp_equal)
    1939     3121339 :                 return (exp_is_true(e->l) && exp_is_true(e->r) && exp_match_exp(e->l, e->r));
    1940             :         return 0;
    1941             : }
    1942             : 
    1943             : static inline bool
    1944      236601 : exp_is_cmp_exp_is_false(sql_exp* e)
    1945             : {
    1946      236601 :         sql_exp *l = e->l;
    1947      236601 :         sql_exp *r = e->r;
    1948      236601 :         assert(e->type == e_cmp && e->f == NULL && l && r);
    1949             : 
    1950             :         /* Handle 'v is x' and 'v is not x' expressions.
    1951             :         * Other cases in is-semantics are unspecified.
    1952             :         */
    1953      236601 :         if (e->flag != cmp_equal && e->flag != cmp_notequal)
    1954             :                 return false;
    1955      236601 :         if (e->flag == cmp_equal && !is_anti(e))
    1956      369644 :                 return ((exp_is_null(l) && exp_is_not_null(r)) || (exp_is_not_null(l) && exp_is_null(r)));
    1957       51779 :         if ((e->flag == cmp_notequal && !is_anti(e)) || (e->flag == cmp_equal && is_anti(e)))
    1958      103504 :                 return exp_is_null(l) && exp_is_null(r);
    1959             :         return false;
    1960             : }
    1961             : 
    1962             : static inline bool
    1963     5477846 : exp_single_bound_cmp_exp_is_false(sql_exp* e)
    1964             : {
    1965     5477846 :     assert(e->type == e_cmp);
    1966     5477846 :     sql_exp* l = e->l;
    1967     5477846 :     sql_exp* r = e->r;
    1968     5477846 :     assert(e->f == NULL);
    1969     5477846 :     assert (l && r);
    1970             : 
    1971     5477846 :     return exp_is_null(l) || exp_is_null(r);
    1972             : }
    1973             : 
    1974             : static inline bool
    1975       74693 : exp_two_sided_bound_cmp_exp_is_false(sql_exp* e)
    1976             : {
    1977       74693 :     assert(e->type == e_cmp);
    1978       74693 :     sql_exp* v = e->l;
    1979       74693 :     sql_exp* l = e->r;
    1980       74693 :     sql_exp* h = e->f;
    1981       74693 :     assert (v && l && h);
    1982             : 
    1983       74693 :     return is_anti(e) ? exp_is_null(v) || (exp_is_null(l) && exp_is_null(h)) : false;
    1984             : }
    1985             : 
    1986             : static inline bool
    1987     5802568 : exp_regular_cmp_exp_is_false(sql_exp* e)
    1988             : {
    1989     5802568 :     assert(e->type == e_cmp);
    1990             : 
    1991     5802568 :     if (is_semantics(e) && !is_any(e)) return exp_is_cmp_exp_is_false(e);
    1992     5565967 :         if (is_any(e)) return false;
    1993     5552539 :     if (e -> f)         return exp_two_sided_bound_cmp_exp_is_false(e);
    1994     5477846 :     else                return exp_single_bound_cmp_exp_is_false(e);
    1995             : }
    1996             : 
    1997             : static inline bool
    1998      535640 : exp_or_exp_is_false(sql_exp* e)
    1999             : {
    2000      535640 :     assert(e->type == e_cmp && e->flag == cmp_or);
    2001             : 
    2002      535640 :         list* left = e->l;
    2003      535640 :         list* right = e->r;
    2004             : 
    2005      535640 :         bool left_is_false = false;
    2006     1116178 :         for(node* n = left->h; n; n=n->next) {
    2007      581152 :                 if (exp_is_false(n->data)) {
    2008             :                         left_is_false=true;
    2009             :                         break;
    2010             :                 }
    2011             :         }
    2012             : 
    2013      535640 :         if (!left_is_false) {
    2014             :                 return false;
    2015             :         }
    2016             : 
    2017        1176 :         for(node* n = right->h; n; n=n->next) {
    2018         643 :                 if (exp_is_false(n->data)) {
    2019             :                         return true;
    2020             :                 }
    2021             :         }
    2022             : 
    2023             :     return false;
    2024             : }
    2025             : 
    2026             : static inline bool
    2027     6682221 : exp_cmp_exp_is_false(sql_exp* e)
    2028             : {
    2029     6682221 :     assert(e->type == e_cmp);
    2030             : 
    2031     6682221 :     switch (e->flag) {
    2032     5802568 :     case cmp_gt:
    2033             :     case cmp_gte:
    2034             :     case cmp_lte:
    2035             :     case cmp_lt:
    2036             :     case cmp_equal:
    2037             :     case cmp_notequal:
    2038     5802568 :                 return exp_regular_cmp_exp_is_false(e);
    2039      535640 :     case cmp_or:
    2040      535640 :                 return exp_or_exp_is_false(e);
    2041             :     default:
    2042             :                 return false;
    2043             :         }
    2044             : }
    2045             : 
    2046             : int
    2047     6776534 : exp_is_false(sql_exp *e)
    2048             : {
    2049     6776534 :         if (e->type == e_atom && e->l)
    2050       46452 :                 return atom_is_false(e->l);
    2051     6730082 :         else if (e->type == e_cmp)
    2052     6682221 :                 return exp_cmp_exp_is_false(e);
    2053             :         return 0;
    2054             : }
    2055             : 
    2056             : int
    2057       17940 : exp_is_zero(sql_exp *e)
    2058             : {
    2059       17940 :         if (e->type == e_atom && e->l)
    2060       17671 :                 return atom_is_zero(e->l);
    2061             :         return 0;
    2062             : }
    2063             : 
    2064             : int
    2065      333643 : exp_is_not_null(sql_exp *e)
    2066             : {
    2067      333830 :         if (!has_nil(e))
    2068             :                 return true;
    2069             : 
    2070      102167 :         switch (e->type) {
    2071        3093 :         case e_atom:
    2072        3093 :                 if (e->f) /* values list */
    2073             :                         return false;
    2074        3093 :                 if (e->l)
    2075        2803 :                         return !(atom_null(e->l));
    2076             :                 return false;
    2077         187 :         case e_convert:
    2078         187 :                 return exp_is_not_null(e->l);
    2079         651 :         case e_func:
    2080         651 :                 if (!is_semantics(e) && e->l) {
    2081         263 :                         list *l = e->l;
    2082         308 :                         for (node *n = l->h; n; n=n->next) {
    2083         305 :                                 sql_exp *p = n->data;
    2084         305 :                                 if (!exp_is_not_null(p))
    2085             :                                         return false;
    2086             :                         }
    2087             :                         return true;
    2088             :                 }
    2089             :                 return false;
    2090             :         case e_aggr:
    2091             :         case e_column:
    2092             :         case e_cmp:
    2093             :         case e_psm:
    2094             :                 return false;
    2095             :         }
    2096             :         return false;
    2097             : }
    2098             : 
    2099             : static int
    2100        8336 : exps_have_null(list *l)
    2101             : {
    2102        8336 :         if (!l)
    2103             :                 return false;
    2104       17645 :         for(node *n = l->h; n; n = n->next)
    2105        9313 :                 if (exp_is_null(n->data))
    2106             :                         return true;
    2107             :         return false;
    2108             : }
    2109             : 
    2110             : int
    2111    12258249 : exp_is_null(sql_exp *e )
    2112             : {
    2113    12301903 :         if (!has_nil(e))
    2114             :                 return false;
    2115             : 
    2116     1627452 :         switch (e->type) {
    2117      168195 :         case e_atom:
    2118      168195 :                 if (e->f) /* values list */
    2119             :                         return 0;
    2120      168115 :                 if (e->l)
    2121       93632 :                         return (atom_null(e->l));
    2122             :                 return 0;
    2123       43654 :         case e_convert:
    2124       43654 :                 return exp_is_null(e->l);
    2125      115504 :         case e_func:
    2126      115504 :                 if (!is_semantics(e) && e->l) {
    2127             :                         /* This is a call to a function with no-nil semantics.
    2128             :                          * If one of the parameters is null the expression itself is null
    2129             :                          */
    2130      100630 :                         list* l = e->l;
    2131      301032 :                         for(node* n = l->h; n; n=n->next) {
    2132      200574 :                                 sql_exp* p = n->data;
    2133      200574 :                                 if (exp_is_null(p)) {
    2134             :                                         return true;
    2135             :                                 }
    2136             :                         }
    2137             :                 }
    2138             :                 return 0;
    2139       60167 :         case e_cmp:
    2140       60167 :                 if (!is_semantics(e)) {
    2141       56910 :                         if (e->flag == cmp_or || e->flag == cmp_filter) {
    2142       14984 :                                 return (exps_have_null(e->l) && exps_have_null(e->r));
    2143       49418 :                         } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2144        3620 :                                 return ((e->flag == cmp_in && exp_is_null(e->l)) ||
    2145        3618 :                                                 (e->flag == cmp_notin && (exp_is_null(e->l) || exps_have_null(e->r))));
    2146       45798 :                         } else if (e->f) {
    2147        7174 :                                 return exp_is_null(e->l) && exp_is_null(e->r) && exp_is_null(e->f);
    2148             :                         } else {
    2149       42213 :                                 return exp_is_null(e->l) || exp_is_null(e->r);
    2150             :                         }
    2151             :                 }
    2152             :                 return 0;
    2153             :         case e_aggr:
    2154             :         case e_column:
    2155             :         case e_psm:
    2156             :                 return 0;
    2157             :         }
    2158             :         return 0;
    2159             : }
    2160             : 
    2161             : int
    2162     1833961 : exp_is_rel( sql_exp *e )
    2163             : {
    2164     1843360 :         if (e) {
    2165     1843360 :                 switch(e->type){
    2166        9399 :                 case e_convert:
    2167        9399 :                         return exp_is_rel(e->l);
    2168      317830 :                 case e_psm:
    2169      317830 :                         return e->flag == PSM_REL && e->l;
    2170             :                 default:
    2171             :                         return 0;
    2172             :                 }
    2173             :         }
    2174             :         return 0;
    2175             : }
    2176             : 
    2177             : int
    2178        7231 : exps_one_is_rel(list *exps)
    2179             : {
    2180        7231 :         if (list_empty(exps))
    2181             :                 return 0;
    2182       21590 :         for(node *n = exps->h ; n ; n = n->next)
    2183       14368 :                 if (exp_is_rel(n->data))
    2184             :                         return 1;
    2185             :         return 0;
    2186             : }
    2187             : 
    2188             : int
    2189     9065640 : exp_is_atom( sql_exp *e )
    2190             : {
    2191     9437146 :         switch (e->type) {
    2192     2078934 :         case e_atom:
    2193     2078934 :                 if (e->f) /* values list */
    2194       13033 :                         return exps_are_atoms(e->f);
    2195             :                 return 1;
    2196      371506 :         case e_convert:
    2197      371506 :                 return exp_is_atom(e->l);
    2198     1104043 :         case e_func:
    2199             :         case e_aggr:
    2200     1104043 :                 return e->card == CARD_ATOM && exps_are_atoms(e->l);
    2201        2720 :         case e_cmp:
    2202        2720 :                 if (e->card != CARD_ATOM)
    2203             :                         return 0;
    2204         157 :                 if (e->flag == cmp_or || e->flag == cmp_filter)
    2205          82 :                         return exps_are_atoms(e->l) && exps_are_atoms(e->r);
    2206          79 :                 if (e->flag == cmp_in || e->flag == cmp_notin)
    2207           0 :                         return exp_is_atom(e->l) && exps_are_atoms(e->r);
    2208          79 :                 return exp_is_atom(e->l) && exp_is_atom(e->r) && (!e->f || exp_is_atom(e->f));
    2209             :         case e_column:
    2210             :         case e_psm:
    2211             :                 return 0;
    2212             :         }
    2213             :         return 0;
    2214             : }
    2215             : 
    2216             : static int
    2217           1 : exps_are_aggr(sql_rel *r, list *exps)
    2218             : {
    2219           1 :         int aggr = 1;
    2220           1 :         if (!list_empty(exps))
    2221           3 :                 for(node *n=exps->h; n && aggr; n=n->next)
    2222           2 :                         aggr &= exp_is_aggr(r, n->data);
    2223           1 :         return aggr;
    2224             : }
    2225             : 
    2226             : /* is expression e an aggregated result of r */
    2227             : int
    2228          11 : exp_is_aggr(sql_rel *r, sql_exp *e)
    2229             : {
    2230          11 :         sql_exp *ne = NULL;
    2231             : 
    2232          11 :         switch (e->type) {
    2233             :         case e_atom:
    2234             :                 return true;
    2235           0 :         case e_convert:
    2236           0 :                 return exp_is_aggr(r, e->l);
    2237           1 :         case e_func:
    2238           1 :                 return exps_are_aggr(r, e->l);
    2239             :         case e_aggr:
    2240             :                 return true;
    2241           0 :         case e_cmp:
    2242           0 :                 if (e->card != CARD_ATOM)
    2243             :                         return false;
    2244           0 :                 if (e->flag == cmp_or || e->flag == cmp_filter)
    2245           0 :                         return exps_are_aggr(r, e->l) && exps_are_aggr(r, e->r);
    2246           0 :                 if (e->flag == cmp_in || e->flag == cmp_notin)
    2247           0 :                         return exp_is_aggr(r, e->l) && exps_are_aggr(r, e->r);
    2248           0 :                 return exp_is_aggr(r, e->l) && exp_is_aggr(r, e->r) && (!e->f || exp_is_aggr(r, e->f));
    2249           9 :         case e_column:
    2250           9 :                 if (e->freevar)
    2251             :                         return true;
    2252           9 :                 ne = rel_find_exp(r, e);
    2253           9 :                 if (ne) /* found local */
    2254             :                         return true;
    2255             :                 else
    2256             :                         return false;
    2257             :         case e_psm:
    2258             :                 return false;
    2259             :         }
    2260             :         return false;
    2261             : }
    2262             : 
    2263             : static int
    2264          19 : exps_have_aggr(sql_rel *r, list *exps)
    2265             : {
    2266          19 :         int aggr = 0;
    2267          19 :         if (!list_empty(exps))
    2268          63 :                 for(node *n=exps->h; n && !aggr; n=n->next)
    2269          44 :                         aggr |= exp_has_aggr(r, n->data);
    2270          19 :         return aggr;
    2271             : }
    2272             : 
    2273             : int
    2274          80 : exp_has_aggr(sql_rel *r, sql_exp *e )
    2275             : {
    2276          87 :         sql_exp *ne = NULL;
    2277             : 
    2278          87 :         switch (e->type) {
    2279             :         case e_atom:
    2280             :                 return false;
    2281           7 :         case e_convert:
    2282           7 :                 return exp_has_aggr(r, e->l);
    2283          19 :         case e_func:
    2284          19 :                 return exps_have_aggr(r, e->l);
    2285             :         case e_aggr:
    2286             :                 return true;
    2287           0 :         case e_cmp:
    2288           0 :                 if (e->card != CARD_ATOM)
    2289             :                         return false;
    2290           0 :                 if (e->flag == cmp_or || e->flag == cmp_filter)
    2291           0 :                         return exps_have_aggr(r, e->l) && exps_have_aggr(r, e->r);
    2292           0 :                 if (e->flag == cmp_in || e->flag == cmp_notin)
    2293           0 :                         return exp_has_aggr(r, e->l) && exps_have_aggr(r, e->r);
    2294           0 :                 return exp_has_aggr(r, e->l) && exp_has_aggr(r, e->r) && (!e->f || exp_has_aggr(r, e->f));
    2295          34 :         case e_column:
    2296          34 :                 if (e->freevar)
    2297             :                         return false;
    2298          21 :                 ne = rel_find_exp(r->l, e);
    2299          21 :                 if (ne) /* found lower */
    2300             :                         return false;
    2301             :                 else
    2302             :                         return true;
    2303             :         case e_psm:
    2304             :                 return false;
    2305             :         }
    2306             :         return false;
    2307             : }
    2308             : 
    2309             : int
    2310    20783480 : exp_has_rel( sql_exp *e )
    2311             : {
    2312    21157254 :         if (!e)
    2313             :                 return 0;
    2314    21157254 :         switch(e->type){
    2315     1977708 :         case e_func:
    2316             :         case e_aggr:
    2317     1977708 :                 return exps_have_rel_exp(e->l);
    2318      693603 :         case e_cmp:
    2319      693603 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2320       69966 :                         return (exps_have_rel_exp(e->l) || exps_have_rel_exp(e->r));
    2321      624091 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2322       39695 :                         return (exp_has_rel(e->l) || exps_have_rel_exp(e->r));
    2323             :                 } else {
    2324     1168793 :                         return (exp_has_rel(e->l) || exp_has_rel(e->r) || (e->f && exp_has_rel(e->f)));
    2325             :                 }
    2326      373774 :         case e_convert:
    2327      373774 :                 return exp_has_rel(e->l);
    2328      127387 :         case e_psm:
    2329      127387 :                 return exp_is_rel(e);
    2330     9817977 :         case e_atom:
    2331     9817977 :                 return (e->f && exps_have_rel_exp(e->f));
    2332             :         case e_column:
    2333             :                 return 0;
    2334             :         }
    2335             :         return 0;
    2336             : }
    2337             : 
    2338             : int
    2339     2659527 : exps_have_rel_exp( list *exps)
    2340             : {
    2341     2659527 :         if (list_empty(exps))
    2342             :                 return 0;
    2343     9524983 :         for(node *n=exps->h; n; n=n->next) {
    2344     6962578 :                 sql_exp *e = n->data;
    2345             : 
    2346     6962578 :                 if (exp_has_rel(e))
    2347             :                         return 1;
    2348             :         }
    2349             :         return 0;
    2350             : }
    2351             : 
    2352             : static sql_rel *
    2353         572 : exps_rel_get_rel(allocator *sa, list *exps )
    2354             : {
    2355         572 :         sql_rel *r = NULL, *xp = NULL;
    2356             : 
    2357         572 :         if (list_empty(exps))
    2358             :                 return NULL;
    2359        1680 :         for (node *n = exps->h; n; n=n->next){
    2360        1108 :                 sql_exp *e = n->data;
    2361             : 
    2362        1108 :                 if (exp_has_rel(e)) {
    2363         578 :                         if (!(r = exp_rel_get_rel(sa, e)))
    2364             :                                 return NULL;
    2365         578 :                         if (xp) {
    2366           6 :                                 xp = rel_crossproduct(sa, xp, r, op_full);
    2367           6 :                                 set_processed(xp);
    2368             :                         } else {
    2369             :                                 xp = r;
    2370             :                         }
    2371             :                 }
    2372             :         }
    2373             :         return xp;
    2374             : }
    2375             : 
    2376             : int
    2377          60 : exp_rel_depth(sql_exp *e)
    2378             : {
    2379          60 :         if (!e)
    2380             :                 return 0;
    2381          60 :         switch(e->type){
    2382             :         case e_func:
    2383             :         case e_aggr:
    2384             :         case e_cmp:
    2385             :                 return 1;
    2386             :         case e_convert:
    2387             :                 return 0;
    2388          39 :         case e_psm:
    2389          39 :                 if (exp_is_rel(e))
    2390             :                         return 0;
    2391             :                 return 1;
    2392             :         case e_atom:
    2393             :         case e_column:
    2394             :                 return 0;
    2395             :         }
    2396             :         return 0;
    2397             : }
    2398             : 
    2399             : sql_rel *
    2400       80580 : exp_rel_get_rel(allocator *sa, sql_exp *e)
    2401             : {
    2402       81664 :         if (!e)
    2403             :                 return NULL;
    2404             : 
    2405       81664 :         switch(e->type){
    2406         544 :         case e_func:
    2407             :         case e_aggr:
    2408         544 :                 return exps_rel_get_rel(sa, e->l);
    2409          38 :         case e_cmp: {
    2410          38 :                 sql_rel *r = NULL, *xp = NULL;
    2411             : 
    2412          38 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2413          11 :                         if (exps_have_rel_exp(e->l))
    2414           7 :                                 xp = exps_rel_get_rel(sa, e->l);
    2415          11 :                         if (exps_have_rel_exp(e->r)) {
    2416           6 :                                 if (!(r = exps_rel_get_rel(sa, e->r)))
    2417             :                                         return NULL;
    2418           6 :                                 if (xp) {
    2419           2 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2420           2 :                                         set_processed(xp);
    2421             :                                 } else {
    2422             :                                         xp = r;
    2423             :                                 }
    2424             :                         }
    2425          27 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2426           0 :                         if (exp_has_rel(e->l))
    2427           0 :                                 xp = exp_rel_get_rel(sa, e->l);
    2428           0 :                         if (exps_have_rel_exp(e->r)) {
    2429           0 :                                 if (!(r = exps_rel_get_rel(sa, e->r)))
    2430             :                                         return NULL;
    2431           0 :                                 if (xp) {
    2432           0 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2433           0 :                                         set_processed(xp);
    2434             :                                 } else {
    2435             :                                         xp = r;
    2436             :                                 }
    2437             :                         }
    2438             :                 } else {
    2439          27 :                         if (exp_has_rel(e->l))
    2440          25 :                                 xp = exp_rel_get_rel(sa, e->l);
    2441          27 :                         if (exp_has_rel(e->r)) {
    2442           7 :                                 if (!(r = exp_rel_get_rel(sa, e->r)))
    2443             :                                         return NULL;
    2444           7 :                                 if (xp) {
    2445           5 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2446           5 :                                         set_processed(xp);
    2447             :                                 } else {
    2448             :                                         xp = r;
    2449             :                                 }
    2450             :                         }
    2451          27 :                         if (e->f && exp_has_rel(e->f)) {
    2452           0 :                                 if (!(r = exp_rel_get_rel(sa, e->f)))
    2453             :                                         return NULL;
    2454           0 :                                 if (xp) {
    2455           0 :                                         xp = rel_crossproduct(sa, xp, r, op_join);
    2456           0 :                                         set_processed(xp);
    2457             :                                 } else {
    2458             :                                         xp = r;
    2459             :                                 }
    2460             :                         }
    2461             :                 }
    2462             :                 return xp;
    2463             :         }
    2464        1084 :         case e_convert:
    2465        1084 :                 return exp_rel_get_rel(sa, e->l);
    2466       79983 :         case e_psm:
    2467       79983 :                 if (exp_is_rel(e))
    2468       79983 :                         return e->l;
    2469             :                 return NULL;
    2470          15 :         case e_atom:
    2471          15 :                 if (e->f && exps_have_rel_exp(e->f))
    2472          15 :                         return exps_rel_get_rel(sa, e->f);
    2473             :                 return NULL;
    2474             :         case e_column:
    2475             :                 return NULL;
    2476             :         }
    2477             :         return NULL;
    2478             : }
    2479             : 
    2480             : static void exp_rel_update_set_freevar(sql_exp *e);
    2481             : 
    2482             : static void
    2483         925 : exps_rel_update_set_freevar(list *exps)
    2484             : {
    2485         925 :         if (!list_empty(exps))
    2486        3016 :                 for (node *n=exps->h; n ; n=n->next)
    2487        2091 :                         exp_rel_update_set_freevar(n->data);
    2488         925 : }
    2489             : 
    2490             : static void
    2491        2382 : exp_rel_update_set_freevar(sql_exp *e)
    2492             : {
    2493        2394 :         if (!e)
    2494             :                 return ;
    2495             : 
    2496        2394 :         switch(e->type){
    2497         923 :         case e_func:
    2498             :         case e_aggr:
    2499         923 :                 exps_rel_update_set_freevar(e->l);
    2500         923 :                 break;
    2501           8 :         case e_cmp:
    2502           8 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2503           0 :                         exps_rel_update_set_freevar(e->l);
    2504           0 :                         exps_rel_update_set_freevar(e->r);
    2505           8 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2506           0 :                         exp_rel_update_set_freevar(e->l);
    2507           0 :                         exps_rel_update_set_freevar(e->r);
    2508             :                 } else {
    2509           8 :                         exp_rel_update_set_freevar(e->l);
    2510           8 :                         exp_rel_update_set_freevar(e->r);
    2511           8 :                         if (e->f)
    2512             :                                 exp_rel_update_set_freevar(e->f);
    2513             :                 }
    2514             :                 break;
    2515           9 :         case e_convert:
    2516           9 :                 exp_rel_update_set_freevar(e->l);
    2517           9 :                 break;
    2518        1171 :         case e_atom:
    2519        1171 :                 if (e->f)
    2520           2 :                         exps_rel_update_set_freevar(e->f);
    2521             :                 break;
    2522         283 :         case e_column:
    2523         283 :                 set_freevar(e, 1);
    2524         283 :                 break;
    2525             :         case e_psm:
    2526             :                 break;
    2527             :         }
    2528             : }
    2529             : 
    2530             : static list *
    2531         572 : exp_rel_update_exps(mvc *sql, list *exps, bool up)
    2532             : {
    2533         572 :         if (list_empty(exps))
    2534             :                 return exps;
    2535        1680 :         for (node *n = exps->h; n; n=n->next){
    2536        1108 :                 sql_exp *e = n->data;
    2537             : 
    2538        1108 :                 if (exp_has_rel(e))
    2539         578 :                         n->data = exp_rel_update_exp(sql, e, up);
    2540         530 :                 else if (!exp_is_atom(e) && !up)
    2541         269 :                         exp_rel_update_set_freevar(e);
    2542             :         }
    2543             :         return exps;
    2544             : }
    2545             : 
    2546             : static sql_exp *
    2547          57 : exp_rel_update_exp_(mvc *sql, sql_exp *e, bool up)
    2548             : {
    2549          57 :         if (exp_has_rel(e))
    2550          31 :                 e = exp_rel_update_exp(sql, e, up);
    2551          26 :         else if (!exp_is_atom(e) && !up)
    2552           6 :                 exp_rel_update_set_freevar(e);
    2553          57 :         return e;
    2554             : }
    2555             : 
    2556             : sql_exp *
    2557       14032 : exp_rel_update_exp(mvc *sql, sql_exp *e, bool up)
    2558             : {
    2559       14032 :         if (!e)
    2560             :                 return NULL;
    2561             : 
    2562       14032 :         switch(e->type){
    2563         544 :         case e_func:
    2564             :         case e_aggr:
    2565         544 :                 if (exps_have_rel_exp(e->l))
    2566         544 :                         e->l = exp_rel_update_exps(sql, e->l, up);
    2567             :                 return e;
    2568          37 :         case e_cmp:
    2569          37 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2570          11 :                         if (exps_have_rel_exp(e->l))
    2571           7 :                                 e->l = exp_rel_update_exps(sql, e->l, up);
    2572          11 :                         if (exps_have_rel_exp(e->r))
    2573           6 :                                 e->r = exp_rel_update_exps(sql, e->r, up);
    2574          26 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2575           0 :                         if (exp_has_rel(e->l))
    2576           0 :                                 e->l = exp_rel_update_exp(sql, e->l, up);
    2577           0 :                         if (exps_have_rel_exp(e->r))
    2578           0 :                                 e->r = exp_rel_update_exps(sql, e->r, up);
    2579             :                 } else {
    2580             :                         //if (exp_has_rel(e->l))
    2581          26 :                                 e->l = exp_rel_update_exp_(sql, e->l, up);
    2582             :                         //if (exp_has_rel(e->r))
    2583          26 :                                 e->r = exp_rel_update_exp_(sql, e->r, up);
    2584          26 :                         if (e->f /*&& exp_has_rel(e->f)*/)
    2585           5 :                                 e->f = exp_rel_update_exp_(sql, e->f, up);
    2586             :                 }
    2587             :                 return e;
    2588        1084 :         case e_convert:
    2589        1084 :                 if (exp_has_rel(e->l))
    2590        1084 :                         e->l = exp_rel_update_exp(sql, e->l, up);
    2591             :                 return e;
    2592       12352 :         case e_psm:
    2593       12352 :                 if (exp_is_rel(e)) {
    2594       12352 :                         sql_rel *r = exp_rel_get_rel(sql->sa, e), *nr = r;
    2595       12352 :                         if (is_topn(r->op)) {
    2596           2 :                                 nr = r->l;
    2597           2 :                                 if (nr && !is_project(nr->op))
    2598           0 :                                         r->l = nr = rel_project(sql->sa, nr, rel_projections(sql, nr, NULL, 1, 0));
    2599             :                         }
    2600       12352 :                         e = nr->exps->t->data;
    2601       12352 :                         e = exp_ref(sql, e);
    2602       12352 :                         if (up)
    2603           0 :                                 set_freevar(e, 1);
    2604       12352 :                         return e;
    2605             :                 }
    2606             :                 return e;
    2607          15 :         case e_atom:
    2608          15 :                 if (e->f && exps_have_rel_exp(e->f))
    2609          15 :                         e->f = exp_rel_update_exps(sql, e->f, up);
    2610             :                 return e;
    2611             :         case e_column:
    2612             :                 return e;
    2613             :         }
    2614             :         return e;
    2615             : }
    2616             : 
    2617             : sql_exp *
    2618        4160 : exp_rel_label(mvc *sql, sql_exp *e)
    2619             : {
    2620        4160 :         if (exp_is_rel(e))
    2621        4160 :                 e->l = rel_label(sql, e->l, 1);
    2622        4160 :         return e;
    2623             : }
    2624             : 
    2625             : int
    2626      150779 : exps_are_atoms( list *exps)
    2627             : {
    2628      150779 :         int atoms = 1;
    2629      150779 :         if (!list_empty(exps))
    2630      436161 :                 for(node *n=exps->h; n && atoms; n=n->next)
    2631      316693 :                         atoms &= exp_is_atom(n->data);
    2632      150779 :         return atoms;
    2633             : }
    2634             : 
    2635             : int
    2636         142 : exps_have_func(list *exps)
    2637             : {
    2638         142 :         if (list_empty(exps))
    2639             :                 return 0;
    2640         173 :         for(node *n=exps->h; n; n=n->next) {
    2641         146 :                 sql_exp *e = n->data;
    2642             : 
    2643         146 :                 if (exp_has_func(e))
    2644             :                         return 1;
    2645             :         }
    2646             :         return 0;
    2647             : }
    2648             : 
    2649             : static int exp_has_func_or_cmp(sql_exp *e, bool cmp);
    2650             : 
    2651             : static int
    2652       69571 : exps_have_func_or_cmp(list *exps, bool cmp)
    2653             : {
    2654       69571 :         if (list_empty(exps))
    2655             :                 return 0;
    2656      200089 :         for(node *n=exps->h; n; n=n->next) {
    2657      139816 :                 sql_exp *e = n->data;
    2658             : 
    2659      139816 :                 if (exp_has_func_or_cmp(e, cmp))
    2660             :                         return 1;
    2661             :         }
    2662             :         return 0;
    2663             : }
    2664             : 
    2665             : static int
    2666     2089485 : exp_has_func_or_cmp(sql_exp *e, bool cmp)
    2667             : {
    2668     2089485 :         if (!e)
    2669             :                 return 0;
    2670     2089485 :         switch (e->type) {
    2671      311170 :         case e_atom:
    2672      311170 :                 if (e->f)
    2673           4 :                         return exps_have_func_or_cmp(e->f, true);
    2674             :                 return 0;
    2675       16612 :         case e_convert:
    2676             :                 {
    2677       16612 :                         sql_subtype *t = exp_totype(e);
    2678       16612 :                         sql_subtype *f = exp_fromtype(e);
    2679       16612 :                         if (t->type->eclass == EC_FLT && (f->type->eclass == EC_DEC || f->type->eclass == EC_NUM))
    2680         170 :                                 return exp_has_func_or_cmp(e->l, cmp);
    2681       16442 :                         if (f->type->localtype > t->type->localtype)
    2682             :                                 return true;
    2683             :                 }
    2684       14238 :                 return exp_has_func_or_cmp(e->l, cmp);
    2685             :         case e_func:
    2686             :                 return 1;
    2687       20678 :         case e_aggr:
    2688       20678 :                 if (e->l)
    2689       17850 :                         return exps_have_func_or_cmp(e->l, true);
    2690             :                 return 0;
    2691      273077 :         case e_cmp:
    2692      273077 :                 if (cmp)
    2693             :                         return 1;
    2694      263892 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    2695       22094 :                         return (exps_have_func_or_cmp(e->l, true) || exps_have_func_or_cmp(e->r, true));
    2696      251017 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    2697       35243 :                         return (exp_has_func_or_cmp(e->l, true) || exps_have_func_or_cmp(e->r, true));
    2698             :                 } else {
    2699      431660 :                         return (exp_has_func_or_cmp(e->l, true) || exp_has_func_or_cmp(e->r, true) ||
    2700      200642 :                                         (e->f && exp_has_func_or_cmp(e->f, true)));
    2701             :                 }
    2702             :         case e_column:
    2703             :         case e_psm:
    2704             :                 return 0;
    2705             :         }
    2706             :         return 0;
    2707             : }
    2708             : 
    2709             : int
    2710     1480787 : exp_has_func(sql_exp *e)
    2711             : {
    2712     1480787 :         return exp_has_func_or_cmp(e, false);
    2713             : }
    2714             : 
    2715             : static int
    2716      731462 : exps_have_sideeffect( list *exps)
    2717             : {
    2718      731462 :         node *n;
    2719      731462 :         int has_sideeffect = 0;
    2720             : 
    2721     2246208 :         for(n=exps->h; n && !has_sideeffect; n=n->next)
    2722     1514745 :                 has_sideeffect |= exp_has_sideeffect(n->data);
    2723      731463 :         return has_sideeffect;
    2724             : }
    2725             : 
    2726             : int
    2727     1701766 : exp_has_sideeffect( sql_exp *e )
    2728             : {
    2729     1726724 :         switch (e->type) {
    2730       24958 :         case e_convert:
    2731       24958 :                 return exp_has_sideeffect(e->l);
    2732      731501 :         case e_func:
    2733             :                 {
    2734      731501 :                         sql_subfunc *f = e->f;
    2735             : 
    2736      731501 :                         if (f->func->side_effect)
    2737             :                                 return 1;
    2738      731487 :                         if (e->l)
    2739      731462 :                                 return exps_have_sideeffect(e->l);
    2740             :                         return 0;
    2741             :                 }
    2742      479854 :         case e_atom:
    2743      479854 :                 if (e->f)
    2744           0 :                         return exps_have_sideeffect(e->f);
    2745             :                 return 0;
    2746             :         case e_aggr:
    2747             :         case e_cmp:
    2748             :         case e_column:
    2749             :         case e_psm:
    2750             :                 return 0;
    2751             :         }
    2752             :         return 0;
    2753             : }
    2754             : 
    2755             : bool
    2756     1060859 : exps_have_unsafe(list *exps, bool allow_identity, bool card)
    2757             : {
    2758     1060859 :         int unsafe = 0;
    2759             : 
    2760     1060859 :         if (list_empty(exps))
    2761             :                 return 0;
    2762     3698768 :         for (node *n = exps->h; n && !unsafe; n = n->next)
    2763     2658619 :                 unsafe |= exp_unsafe(n->data, allow_identity, card);
    2764     1040149 :         return unsafe;
    2765             : }
    2766             : 
    2767             : bool
    2768    12748537 : exp_unsafe(sql_exp *e, bool allow_identity, bool card)
    2769             : {
    2770    12748537 :         switch (e->type) {
    2771      792267 :         case e_convert:
    2772      792267 :                 if (card) {
    2773        9036 :                         sql_subtype *t = exp_totype(e);
    2774        9036 :                         sql_subtype *f = exp_fromtype(e);
    2775        9036 :                         if (t->type->eclass == EC_FLT && (f->type->eclass == EC_DEC || f->type->eclass == EC_NUM))
    2776             :                                 return false;
    2777        8951 :                         if (f->type->localtype > t->type->localtype)
    2778             :                                 return true;
    2779             :                         return false;
    2780             :                 }
    2781      783231 :                 return exp_unsafe(e->l, allow_identity, card);
    2782      995691 :         case e_aggr:
    2783             :         case e_func: {
    2784      995691 :                 sql_subfunc *f = e->f;
    2785             : 
    2786      995691 :                 if (IS_ANALYTIC(f->func) || !LANG_INT_OR_MAL(f->func->lang) || f->func->side_effect || (!allow_identity && is_identity(e, NULL)))
    2787       45589 :                         return 1;
    2788      950102 :                 return exps_have_unsafe(e->l, allow_identity, card);
    2789       51597 :         } break;
    2790       51597 :         case e_cmp: {
    2791       51597 :                 if (e->flag == cmp_in || e->flag == cmp_notin) {
    2792        6551 :                         return exp_unsafe(e->l, allow_identity, card) || exps_have_unsafe(e->r, allow_identity, card);
    2793       45046 :                 } else if (e->flag == cmp_or || e->flag == cmp_filter) {
    2794       10341 :                         return exps_have_unsafe(e->l, allow_identity, card) || exps_have_unsafe(e->r, allow_identity, card);
    2795             :                 } else {
    2796       69442 :                         return exp_unsafe(e->l, allow_identity, card) || exp_unsafe(e->r, allow_identity, card) || (e->f && exp_unsafe(e->f, allow_identity, card));
    2797             :                 }
    2798     1158977 :         } break;
    2799     1158977 :         case e_atom: {
    2800     1158977 :                 if (e->f)
    2801        8331 :                         return exps_have_unsafe(e->f, allow_identity, card);
    2802             :                 return 0;
    2803             :         } break;
    2804             :         case e_column:
    2805             :         case e_psm:
    2806             :                 return 0;
    2807             :         }
    2808             :         return 0;
    2809             : }
    2810             : 
    2811             : static inline int
    2812     3560016 : exp_key( sql_exp *e )
    2813             : {
    2814     3560016 :         if (e->alias.name)
    2815     3560015 :                 return hash_key(e->alias.name);
    2816             :         return 0;
    2817             : }
    2818             : 
    2819             : sql_exp *
    2820          82 : exps_uses_nid(list *exps, int nid)
    2821             : {
    2822          82 :         if (exps) {
    2823         153 :                 for (node *en = exps->h; en; en = en->next ) {
    2824         147 :                         sql_exp *e = en->data;
    2825             : 
    2826         147 :                         if (e->nid == nid)
    2827          76 :                                 return e;
    2828             :                 }
    2829             :         }
    2830             :         return NULL;
    2831             : }
    2832             : 
    2833             : sql_exp *
    2834    71476846 : exps_bind_nid(list *exps, int nid)
    2835             : {
    2836    71476846 :         if (exps) {
    2837  5431921010 :                 for (node *en = exps->h; en; en = en->next ) {
    2838  5389973771 :                         sql_exp *e = en->data;
    2839             : 
    2840  5389973771 :                         if (e->alias.label == nid)
    2841    29160285 :                                 return e;
    2842             :                 }
    2843             :         }
    2844             :         return NULL;
    2845             : }
    2846             : 
    2847             : sql_exp *
    2848     1009597 : exps_bind_column(list *exps, const char *cname, int *ambiguous, int *multiple, int no_tname)
    2849             : {
    2850     1009597 :         sql_exp *res = NULL;
    2851             : 
    2852     1009597 :         if (exps && cname) {
    2853     1009596 :                 node *en;
    2854             : 
    2855     1009596 :                 if (exps) {
    2856     1009596 :                         if (!exps->ht && list_length(exps) > HASH_MIN_SIZE) {
    2857      110668 :                                 exps->ht = hash_new(exps->sa, list_length(exps), (fkeyvalue)&exp_key);
    2858      110668 :                                 if (exps->ht == NULL)
    2859             :                                         return NULL;
    2860      834449 :                                 for (en = exps->h; en; en = en->next ) {
    2861      723781 :                                         sql_exp *e = en->data;
    2862      723781 :                                         if (e->alias.name) {
    2863      723781 :                                                 int key = exp_key(e);
    2864             : 
    2865      723781 :                                                 if (hash_add(exps->ht, key, e) == NULL)
    2866             :                                                         return NULL;
    2867             :                                         }
    2868             :                                 }
    2869             :                         }
    2870     1009596 :                         if (exps->ht) {
    2871      432026 :                                 int key = hash_key(cname);
    2872      432026 :                                 sql_hash_e *he = exps->ht->buckets[key&(exps->ht->size-1)];
    2873             : 
    2874      835946 :                                 for (; he; he = he->chain) {
    2875      403924 :                                         sql_exp *e = he->value;
    2876             : 
    2877      403924 :                                         if (e->alias.name && strcmp(e->alias.name, cname) == 0 && (!no_tname || !e->alias.rname)) {
    2878      143099 :                                                 if (res && multiple)
    2879           4 :                                                         *multiple = 1;
    2880      143099 :                                                 if (!res)
    2881      143099 :                                                         res = e;
    2882             : 
    2883      143099 :                                                 if (res && res != e && e->alias.rname && res->alias.rname && strcmp(e->alias.rname, res->alias.rname) != 0 ) {
    2884           4 :                                                         if (ambiguous)
    2885           4 :                                                                 *ambiguous = 1;
    2886           4 :                                                         return NULL;
    2887             :                                                 }
    2888             :                                                 res = e;
    2889             :                                         }
    2890             :                                 }
    2891      432022 :                                 return res;
    2892             :                         }
    2893             :                 }
    2894     1689277 :                 for (en = exps->h; en; en = en->next ) {
    2895     1111712 :                         sql_exp *e = en->data;
    2896             : 
    2897     1111712 :                         if (e->alias.name && strcmp(e->alias.name, cname) == 0 && (!no_tname || !e->alias.rname)) {
    2898       63741 :                                 if (res && multiple)
    2899           8 :                                         *multiple = 1;
    2900       63741 :                                 if (!res)
    2901       63741 :                                         res = e;
    2902             : 
    2903       63741 :                                 if (res && res != e && e->alias.rname && res->alias.rname && strcmp(e->alias.rname, res->alias.rname) != 0 ) {
    2904           5 :                                         if (ambiguous)
    2905           5 :                                                 *ambiguous = 1;
    2906           5 :                                         return NULL;
    2907             :                                 }
    2908             :                                 res = e;
    2909             :                         }
    2910             :                 }
    2911             :         }
    2912             :         return res;
    2913             : }
    2914             : 
    2915             : sql_exp *
    2916     1753160 : exps_bind_column2(list *exps, const char *rname, const char *cname, int *multiple)
    2917             : {
    2918     1753160 :         sql_exp *res = NULL;
    2919             : 
    2920     1753160 :         if (exps) {
    2921     1753130 :                 node *en;
    2922             : 
    2923     1753130 :                 if (!exps->ht && list_length(exps) > HASH_MIN_SIZE) {
    2924      130495 :                         exps->ht = hash_new(exps->sa, list_length(exps), (fkeyvalue)&exp_key);
    2925      130495 :                         if (exps->ht == NULL)
    2926             :                                 return res;
    2927             : 
    2928     2182537 :                         for (en = exps->h; en; en = en->next ) {
    2929     2052042 :                                 sql_exp *e = en->data;
    2930     2052042 :                                 if (e->alias.name) {
    2931     2052042 :                                         int key = exp_key(e);
    2932             : 
    2933     2052042 :                                         if (hash_add(exps->ht, key, e) == NULL)
    2934             :                                                 return res;
    2935             :                                 }
    2936             :                         }
    2937             :                 }
    2938     1753131 :                 if (exps->ht) {
    2939     1038228 :                         int key = hash_key(cname);
    2940     1038228 :                         sql_hash_e *he = exps->ht->buckets[key&(exps->ht->size-1)];
    2941             : 
    2942     2897524 :                         for (; he; he = he->chain) {
    2943     1861408 :                                 sql_exp *e = he->value;
    2944             : 
    2945     1861408 :                                 if (e && e->alias.name && e->alias.rname && strcmp(e->alias.name, cname) == 0 && strcmp(e->alias.rname, rname) == 0) {
    2946      762681 :                                         if (res && multiple)
    2947           0 :                                                 *multiple = 1;
    2948      762681 :                                         if (!res)
    2949             :                                                 res = e;
    2950      762681 :                                         if (res && has_label(res)) /* aliases maybe used multiple times without problems */
    2951        2112 :                                                 return res;
    2952             :                                 }
    2953             :                         }
    2954     1036116 :                         return res;
    2955             :                 }
    2956     2439800 :                 for (en = exps->h; en; en = en->next ) {
    2957     1732090 :                         sql_exp *e = en->data;
    2958             : 
    2959     1732090 :                         if (e && e->alias.name && e->alias.rname && strcmp(e->alias.name, cname) == 0 && strcmp(e->alias.rname, rname) == 0) {
    2960      491090 :                                 if (res && multiple)
    2961           1 :                                         *multiple = 1;
    2962      491090 :                                 if (!res)
    2963             :                                         res = e;
    2964      491090 :                                 if (res && has_label(res)) /* aliases maybe used multiple times without problems */
    2965        7193 :                                         return res;
    2966             :                         }
    2967             :                 }
    2968             :         }
    2969             :         return res;
    2970             : }
    2971             : 
    2972             : /* find an column based on the original name, not the alias it got */
    2973             : sql_exp *
    2974           0 : exps_bind_alias( list *exps, const char *rname, const char *cname )
    2975             : {
    2976           0 :         if (exps) {
    2977           0 :                 node *en;
    2978             : 
    2979           0 :                 for (en = exps->h; en; en = en->next ) {
    2980           0 :                         sql_exp *e = en->data;
    2981             : 
    2982           0 :                         if (e && is_column(e->type) && !rname && e->r && strcmp(e->r, cname) == 0)
    2983             :                         {
    2984           0 :                                 assert(0);
    2985             :                                 return e;
    2986             :                         }
    2987           0 :                         if (e && e->type == e_column && rname && e->l && e->r && strcmp(e->r, cname) == 0 && strcmp(e->l, rname) == 0) {
    2988           0 :                                 assert(0);
    2989             :                                 return e;
    2990             :                         }
    2991             :                 }
    2992             :         }
    2993           0 :         return NULL;
    2994             : }
    2995             : 
    2996             : unsigned int
    2997     3281558 : exps_card( list *l )
    2998             : {
    2999     3281558 :         node *n;
    3000     3281558 :         unsigned int card = CARD_ATOM;
    3001             : 
    3002    14685335 :         if (l) for(n = l->h; n; n = n->next) {
    3003    11403777 :                 sql_exp *e = n->data;
    3004             : 
    3005    11403777 :                 if (e && card < e->card)
    3006    11403777 :                         card = e->card;
    3007             :         }
    3008     3281558 :         return card;
    3009             : }
    3010             : 
    3011             : void
    3012       43068 : exps_fix_card( list *exps, unsigned int card)
    3013             : {
    3014       43068 :         if (exps)
    3015     1070040 :                 for (node *n = exps->h; n; n = n->next) {
    3016     1026972 :                 sql_exp *e = n->data;
    3017             : 
    3018     1026972 :                 if (e && e->card > card)
    3019           0 :                         e->card = card;
    3020             :         }
    3021       43068 : }
    3022             : 
    3023             : void
    3024        6102 : exps_setcard( list *exps, unsigned int card)
    3025             : {
    3026        6102 :         if (exps)
    3027       31231 :                 for (node *n = exps->h; n; n = n->next) {
    3028       25129 :                         sql_exp *e = n->data;
    3029             : 
    3030       25129 :                         if (e && e->card != CARD_ATOM)
    3031       25098 :                                 e->card = card;
    3032             :                 }
    3033        6102 : }
    3034             : 
    3035             : int
    3036           0 : exps_intern(list *exps)
    3037             : {
    3038           0 :         if (exps)
    3039           0 :                 for (node *n=exps->h; n; n = n->next) {
    3040           0 :                         sql_exp *e = n->data;
    3041             : 
    3042           0 :                         if (is_intern(e))
    3043             :                                 return 1;
    3044             :                 }
    3045             :         return 0;
    3046             : }
    3047             : 
    3048             : sql_exp *
    3049        3691 : exps_find_one_multi_exp(list *exps)
    3050             : {
    3051        3691 :         sql_exp *l = NULL;
    3052        3691 :         int skip = 0;
    3053             : 
    3054             :         /* Find one and only 1 expression with card > CARD_ATOM */
    3055        3691 :         if (!list_empty(exps)) {
    3056        7473 :                 for (node *m = exps->h ; m && !skip ; m = m->next) {
    3057        3782 :                         sql_exp *e = m->data;
    3058             : 
    3059        3782 :                         if (e->card > CARD_ATOM) {
    3060        3695 :                                 skip |= l != NULL;
    3061        3695 :                                 l = e;
    3062             :                         }
    3063             :                 }
    3064             :         }
    3065        3691 :         if (skip)
    3066           5 :                 l = NULL;
    3067        3691 :         return l;
    3068             : }
    3069             : 
    3070             : const char *
    3071      130684 : compare_func( comp_type t, int anti )
    3072             : {
    3073      130684 :         switch(t) {
    3074       75494 :         case cmp_equal:
    3075       75494 :                 return anti?"<>":"=";
    3076        8132 :         case cmp_lt:
    3077        8132 :                 return anti?">":"<";
    3078        2106 :         case cmp_lte:
    3079        2106 :                 return anti?">=":"<=";
    3080        1165 :         case cmp_gte:
    3081        1165 :                 return anti?"<=":">=";
    3082       31719 :         case cmp_gt:
    3083       31719 :                 return anti?"<":">";
    3084       12068 :         case cmp_notequal:
    3085       12068 :                 return anti?"=":"<>";
    3086             :         default:
    3087             :                 return NULL;
    3088             :         }
    3089             : }
    3090             : 
    3091             : int
    3092     9689339 : is_identity( sql_exp *e, sql_rel *r)
    3093             : {
    3094     9700212 :         switch(e->type) {
    3095       38022 :         case e_column:
    3096       38022 :                 if (r && is_project(r->op) && !is_set(r->op)) {
    3097       13699 :                         sql_exp *re = NULL;
    3098       13699 :                         assert(e->nid);
    3099       13699 :                         re = exps_bind_nid(r->exps, e->nid);
    3100       13699 :                         if (re)
    3101       10873 :                                 return is_identity(re, r->l);
    3102             :                 }
    3103             :                 return 0;
    3104     9655150 :         case e_func: {
    3105     9655150 :                 sql_subfunc *f = e->f;
    3106     9655150 :                 return !f->func->s && strcmp(f->func->base.name, "identity") == 0;
    3107             :         }
    3108             :         default:
    3109             :                 return 0;
    3110             :         }
    3111             : }
    3112             : 
    3113             : list *
    3114          16 : exps_alias(mvc *sql, list *exps)
    3115             : {
    3116          16 :         list *nl = new_exp_list(sql->sa);
    3117             : 
    3118          16 :         if (exps)
    3119          68 :                 for (node *n = exps->h; n; n = n->next) {
    3120          52 :                         sql_exp *e = n->data, *ne;
    3121             : 
    3122          52 :                         assert(exp_name(e));
    3123          52 :                         ne = exp_ref(sql, e);
    3124          52 :                         append(nl, ne);
    3125             :                 }
    3126          16 :         return nl;
    3127             : }
    3128             : 
    3129             : list *
    3130      143242 : exps_copy(mvc *sql, list *exps)
    3131             : {
    3132      143242 :         list *nl;
    3133             : 
    3134      143242 :         if (mvc_highwater(sql))
    3135           0 :                 return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    3136             : 
    3137      143242 :         if (!exps)
    3138             :                 return NULL;
    3139      124813 :         nl = new_exp_list(sql->sa);
    3140      572061 :         for (node *n = exps->h; n; n = n->next) {
    3141      447248 :                 sql_exp *arg = n->data;
    3142             : 
    3143      447248 :                 arg = exp_copy(sql, arg);
    3144      447248 :                 if (!arg)
    3145             :                         return NULL;
    3146      447248 :                 append(nl, arg);
    3147             :         }
    3148             :         return nl;
    3149             : }
    3150             : 
    3151             : sql_exp *
    3152     2697134 : exp_copy(mvc *sql, sql_exp * e)
    3153             : {
    3154     2697134 :         sql_exp *l, *r, *r2, *ne = NULL;
    3155             : 
    3156     2697134 :         if (mvc_highwater(sql))
    3157           0 :                 return sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    3158             : 
    3159     2697134 :         if (!e)
    3160             :                 return NULL;
    3161     2697134 :         switch(e->type){
    3162     2315084 :         case e_column:
    3163     2315084 :                 ne = exp_column(sql->sa, e->l, e->r, exp_subtype(e), e->card, has_nil(e), is_unique(e), is_intern(e));
    3164     2315084 :                 ne->flag = e->flag;
    3165     2315084 :                 ne->alias.label = e->alias.label;
    3166     2315084 :                 ne->nid = e->nid;
    3167     2315084 :                 break;
    3168       42377 :         case e_cmp:
    3169       42377 :                 if (e->flag == cmp_or || e->flag == cmp_filter) {
    3170        2683 :                         list *l = exps_copy(sql, e->l);
    3171        2683 :                         list *r = exps_copy(sql, e->r);
    3172             : 
    3173        2683 :                         if (e->flag == cmp_filter)
    3174         688 :                                 ne = exp_filter(sql->sa, l, r, e->f, is_anti(e));
    3175             :                         else
    3176        1995 :                                 ne = exp_or(sql->sa, l, r, is_anti(e));
    3177       39694 :                 } else if (e->flag == cmp_in || e->flag == cmp_notin) {
    3178        1432 :                         sql_exp *l = exp_copy(sql, e->l);
    3179        1432 :                         list *r = exps_copy(sql, e->r);
    3180             : 
    3181        1432 :                         ne = exp_in(sql->sa, l, r, e->flag);
    3182             :                 } else {
    3183       38262 :                         l = exp_copy(sql, e->l);
    3184       38262 :                         r = exp_copy(sql, e->r);
    3185             : 
    3186       38262 :                         if (e->f) {
    3187         691 :                                 r2 = exp_copy(sql, e->f);
    3188         691 :                                 ne = exp_compare2(sql->sa, l, r, r2, e->flag, is_symmetric(e));
    3189             :                         } else {
    3190       37571 :                                 ne = exp_compare(sql->sa, l, r, e->flag);
    3191             :                         }
    3192             :                 }
    3193             :                 break;
    3194       29099 :         case e_convert:
    3195       29099 :                 ne = exp_convert(sql, exp_copy(sql, e->l), exp_fromtype(e), exp_totype(e));
    3196       29099 :                 break;
    3197       13778 :         case e_aggr:
    3198             :         case e_func: {
    3199       13778 :                 list *l = exps_copy(sql, e->l);
    3200             : 
    3201       13778 :                 if (e->type == e_func)
    3202       11834 :                         ne = exp_op(sql->sa, l, e->f);
    3203             :                 else
    3204        1944 :                         ne = exp_aggr(sql->sa, l, e->f, need_distinct(e), need_no_nil(e), e->card, has_nil(e));
    3205       13778 :                 if (e->r) { /* copy obe and gbe lists */
    3206           1 :                         list *er = (list*) e->r;
    3207           1 :                         assert(list_length(er) <= 2);
    3208           1 :                         if (list_length(er) == 2)
    3209           0 :                                 ne->r = list_append(list_append(sa_list(sql->sa), exps_copy(sql, er->h->data)), exps_copy(sql, er->h->next->data));
    3210             :                         else
    3211           1 :                                 ne->r = list_append(sa_list(sql->sa), exps_copy(sql, er->h->data));
    3212             :                 }
    3213             :                 break;
    3214             :         }
    3215      296792 :         case e_atom:
    3216      296792 :                 if (e->l)
    3217      291890 :                         ne = exp_atom(sql->sa, e->l);
    3218        4902 :                 else if (e->r) {
    3219        3586 :                         sql_var_name *vname = (sql_var_name*) e->r;
    3220        3586 :                         ne = exp_param_or_declared(sql->sa, vname->sname, vname->name, &e->tpe, e->flag);
    3221        1316 :                 } else if (e->f)
    3222         759 :                         ne = exp_values(sql->sa, exps_copy(sql, e->f));
    3223             :                 else
    3224         557 :                         ne = exp_atom_ref(sql->sa, e->flag, &e->tpe);
    3225             :                 break;
    3226           4 :         case e_psm:
    3227           4 :                 if (e->flag & PSM_SET) {
    3228           0 :                         ne = exp_set(sql->sa, e->alias.rname, e->alias.name, exp_copy(sql, e->l), GET_PSM_LEVEL(e->flag));
    3229           4 :                 } else if (e->flag & PSM_VAR) {
    3230           0 :                         if (e->f)
    3231           0 :                                 ne = exp_table(sql->sa, e->alias.name, e->f, GET_PSM_LEVEL(e->flag));
    3232             :                         else
    3233           0 :                                 ne = exp_var(sql->sa, e->alias.rname, e->alias.name, &e->tpe, GET_PSM_LEVEL(e->flag));
    3234           4 :                 } else if (e->flag & PSM_RETURN) {
    3235           0 :                         ne = exp_return(sql->sa, exp_copy(sql, e->l), GET_PSM_LEVEL(e->flag));
    3236           4 :                 } else if (e->flag & PSM_WHILE) {
    3237           0 :                         ne = exp_while(sql->sa, exp_copy(sql, e->l), exps_copy(sql, e->r));
    3238           4 :                 } else if (e->flag & PSM_IF) {
    3239           0 :                         ne = exp_if(sql->sa, exp_copy(sql, e->l), exps_copy(sql, e->r), exps_copy(sql, e->f));
    3240           4 :                 } else if (e->flag & PSM_REL) {
    3241           4 :                         if (!e->alias.label)
    3242           4 :                                 exp_label(sql->sa, e, ++sql->label);
    3243           4 :                         return exp_ref(sql, e);
    3244           0 :                 } else if (e->flag & PSM_EXCEPTION) {
    3245           0 :                         ne = exp_exception(sql->sa, exp_copy(sql, e->l), (const char *) e->r);
    3246             :                 }
    3247             :                 break;
    3248             :         }
    3249     2697130 :         if (!ne)
    3250           0 :                 return ne;
    3251     2697130 :         if (e->alias.name)
    3252     2473674 :                 exp_prop_alias(sql->sa, ne, e);
    3253     2697130 :         ne = exp_propagate(sql->sa, ne, e);
    3254     2697130 :         if (is_freevar(e))
    3255        8332 :                 set_freevar(ne, is_freevar(e)-1);
    3256             :         return ne;
    3257             : }
    3258             : 
    3259             : /* scaling for the division operator */
    3260             : static sql_exp *
    3261        2613 : exp_scale_algebra(mvc *sql, sql_subfunc *f, sql_rel *rel, sql_exp *l, sql_exp *r)
    3262             : {
    3263        2613 :         sql_subtype *lt = exp_subtype(l);
    3264        2613 :         sql_subtype *rt = exp_subtype(r);
    3265             : 
    3266        2613 :         if (!EC_INTERVAL(lt->type->eclass) && lt->type->scale == SCALE_FIX &&
    3267        2561 :                 (lt->scale || rt->scale) && strcmp(sql_func_imp(f->func), "/") == 0) {
    3268         170 :                 sql_subtype *res = f->res->h->data;
    3269         170 :                 unsigned int scale, digits, digL, scaleL;
    3270         170 :                 sql_subtype nlt;
    3271             : 
    3272             :                 /* scale fixing may require a larger type ! */
    3273         170 :                 scaleL = (lt->scale < sql->div_min_scale) ? sql->div_min_scale : lt->scale;
    3274         170 :                 scaleL += (scaleL < rt->scale) ? rt->scale - scaleL : 0;
    3275         170 :                 scale = scaleL;
    3276         170 :                 scaleL += rt->scale;
    3277         170 :                 digL = lt->digits + (scaleL - lt->scale);
    3278         170 :                 digits = (digL > rt->digits) ? digL : rt->digits;
    3279             : 
    3280             :                 /* HACK alert: digits should be less than max */
    3281             : #ifdef HAVE_HGE
    3282         170 :                 if (res->type->radix == 10 && digits > 38)
    3283         170 :                         digits = 38;
    3284         170 :                 if (res->type->radix == 2 && digits > 127)
    3285         170 :                         digits = 127;
    3286             : #else
    3287             :                 if (res->type->radix == 10 && digits > 18)
    3288             :                         digits = 18;
    3289             :                 if (res->type->radix == 2 && digits > 63)
    3290             :                         digits = 63;
    3291             : #endif
    3292             : 
    3293         170 :                 sql_find_subtype(&nlt, lt->type->base.name, digL, scaleL);
    3294         170 :                 if (nlt.digits < scaleL)
    3295           2 :                         return sql_error(sql, 01, SQLSTATE(42000) "Scale (%d) overflows type", scaleL);
    3296         168 :                 l = exp_check_type(sql, &nlt, rel, l, type_equal);
    3297             : 
    3298         168 :                 sql_find_subtype(res, lt->type->base.name, digits, scale);
    3299        2443 :         } else if (lt->type->scale == SCALE_FIX) {
    3300        2244 :                 sql_subtype *res = f->res->h->data;
    3301        2244 :                 if (res->type->eclass == EC_NUM)
    3302        2223 :                         res->digits = MAX(lt->digits, rt->digits);
    3303             :         }
    3304             :         return l;
    3305             : }
    3306             : 
    3307             : sql_exp *
    3308        2613 : exps_scale_algebra(mvc *sql, sql_subfunc *f, sql_rel *rel, list *exps)
    3309             : {
    3310        2613 :         if (list_length(exps) != 2)
    3311             :                 return NULL;
    3312        2613 :         sql_exp *e = exp_scale_algebra(sql, f, rel, exps->h->data, exps->h->next->data);
    3313        2613 :         if (e)
    3314        2611 :                 exps->h->data = e;
    3315             :         return e;
    3316             : }
    3317             : 
    3318             : void
    3319      186616 : exps_digits_add(sql_subfunc *f, list *exps)
    3320             : {
    3321             :         /* concat and friends need larger results */
    3322      186616 :         if (!f->func->res)
    3323             :                 return;
    3324      186616 :         int digits = 0;
    3325      332051 :         for(node *n = exps->h; n; n = n->next) {
    3326      271866 :                 sql_subtype *t = exp_subtype(n->data);
    3327             : 
    3328      271866 :                 if (!t->digits) {
    3329             :                         digits = 0;
    3330             :                         break;
    3331             :                 }
    3332      145435 :                 digits += t->digits;
    3333             :         }
    3334      186616 :         sql_subtype *res = f->res->h->data;
    3335      186616 :         res->digits = digits;
    3336             : }
    3337             : 
    3338             : void
    3339       25266 : exps_sum_scales(sql_subfunc *f, list *exps)
    3340             : {
    3341             :         /* sum scales and digits for multiply operation */
    3342       25266 :         sql_arg *ares = f->func->res->h->data;
    3343             : 
    3344       25266 :         if (ares->type.type->scale == SCALE_FIX && strcmp(sql_func_imp(f->func), "*") == 0) {
    3345       23967 :                 unsigned int digits = 0, scale = 0;
    3346       23967 :                 sql_type *largesttype = ares->type.type;
    3347             : 
    3348       71901 :                 for(node *n = exps->h; n; n = n->next) {
    3349       47934 :                         sql_exp *e = n->data;
    3350       47934 :                         sql_subtype *t = exp_subtype(e);
    3351             : 
    3352       47934 :                         scale += t->scale;
    3353       47934 :                         digits += t->digits;
    3354       47934 :                         if (largesttype->localtype < t->type->localtype)
    3355           0 :                                 largesttype = t->type;
    3356             :                 }
    3357       23967 :                 sql_subtype *res = f->res->h->data;
    3358             : 
    3359       23967 :                 res->scale = scale;
    3360       23967 :                 res->digits = digits;
    3361             : 
    3362             :                 /* HACK alert: digits should be less than max */
    3363             : #ifdef HAVE_HGE
    3364       23967 :                 if (ares->type.type->radix == 10 && res->digits > 38) {
    3365        2483 :                         res->digits = 38;
    3366        2483 :                         res->scale = MIN(res->scale, res->digits - 1);
    3367             :                 }
    3368       23967 :                 if (ares->type.type->radix == 2 && res->digits > 127) {
    3369          25 :                         res->digits = 127;
    3370          25 :                         res->scale = MIN(res->scale, res->digits - 1);
    3371             :                 }
    3372             : #else
    3373             :                 if (ares->type.type->radix == 10 && res->digits > 18) {
    3374             :                         res->digits = 18;
    3375             :                         res->scale = MIN(res->scale, res->digits - 1);
    3376             :                 }
    3377             :                 if (ares->type.type->radix == 2 && res->digits > 63) {
    3378             :                         res->digits = 63;
    3379             :                         res->scale = MIN(res->scale, res->digits - 1);
    3380             :                 }
    3381             : #endif
    3382             : 
    3383       23967 :                 sql_subtype t;
    3384             :                 /* numeric types are fixed length */
    3385       23967 :                 if (ares->type.type->eclass == EC_NUM) {
    3386             : #ifdef HAVE_HGE
    3387       21192 :                         if (ares->type.type->localtype == TYPE_hge && res->digits == 127)
    3388          25 :                                 t = *sql_bind_localtype("hge");
    3389             :                         else
    3390             : #endif
    3391       21167 :                         if (ares->type.type->localtype == TYPE_lng && res->digits == 63)
    3392           3 :                                 t = *sql_bind_localtype("lng");
    3393       21164 :                         else if (res->type->digits >= res->digits)
    3394        8860 :                                 t = *res; /* we cannot reduce types! */
    3395             :                         else
    3396       12304 :                                 sql_find_numeric(&t, ares->type.type->localtype, res->digits);
    3397             :                 } else {
    3398        2775 :                         if (res->digits > largesttype->digits)
    3399         219 :                                 sql_find_subtype(&t, largesttype->base.name, res->digits, res->scale);
    3400             :                         else
    3401        2556 :                                 sql_init_subtype(&t, largesttype, res->digits, res->scale);
    3402             :                 }
    3403       23967 :                 *res = t;
    3404             :         }
    3405       25266 : }
    3406             : 
    3407             : void
    3408      113666 : exps_max_bits(sql_subfunc *f, list *exps)
    3409             : {
    3410             :         /* + and - have max_bits + 1 */
    3411      113666 :         if (!f->func->res)
    3412             :                 return;
    3413      113666 :         unsigned int digits = 0;
    3414      340998 :         for(node *n = exps->h; n; n = n->next) {
    3415      227332 :                 sql_subtype *t = exp_subtype(n->data);
    3416             : 
    3417      227332 :                 if (!t)
    3418           0 :                         continue;
    3419      227332 :                 if (digits < t->digits)
    3420      227332 :                         digits = t->digits;
    3421             :         }
    3422             :         /* + and - (because of negative numbers) could need one extra bit (or digit) */
    3423      113666 :         digits += 1;
    3424      113666 :         sql_subtype *res = f->res->h->data;
    3425      113666 :         if (digits > res->type->digits)
    3426       49132 :                 res = sql_find_numeric(res, res->type->localtype, digits);
    3427             :         else
    3428       64534 :                 res->digits = digits;
    3429             : }
    3430             : 
    3431             : void
    3432       19444 : exps_inout(sql_subfunc *f, list *exps)
    3433             : {
    3434             :         /* output == first input */
    3435       19444 :         if (!f->func->res)
    3436             :                 return;
    3437       19444 :         sql_subtype *res = f->res->h->data;
    3438       19444 :         bool is_decimal = (res->type->eclass == EC_DEC);
    3439       19444 :         unsigned int digits = 0, scale = 0;
    3440       19444 :         sql_type *largesttype = NULL;
    3441       19444 :         for(node *n = exps->h; n; n = n->next) {
    3442       19444 :                 sql_subtype *t = exp_subtype(n->data);
    3443             : 
    3444       19444 :                 if (!t)
    3445           0 :                         continue;
    3446             : 
    3447       19444 :                 if (is_decimal && t->type->eclass == EC_DEC && (!largesttype || largesttype->localtype < t->type->localtype))
    3448         390 :                         largesttype = t->type;
    3449         390 :                 if (is_decimal && t->type->eclass == EC_NUM) {
    3450           0 :                         unsigned int d = bits2digits(t->digits);
    3451           0 :                         digits = d>digits?d:digits;
    3452       19444 :                 } else if (digits < t->digits)
    3453             :                         digits = t->digits;
    3454       19444 :                 if (scale < t->scale)
    3455             :                         scale = t->scale;
    3456             :                 break;
    3457             :         }
    3458       19444 :         if (digits > res->digits || scale > res->scale) {
    3459        9429 :                 if (largesttype)
    3460         376 :                         sql_init_subtype(res, largesttype, digits, scale);
    3461             :                 else
    3462        9053 :                         sql_find_subtype(res, res->type->base.name, digits, scale);
    3463             :         } else
    3464       10015 :                 res->digits = digits;
    3465             : }
    3466             : 
    3467             : /* for aggregates we can reduce the result types size based on real digits/bits used number of known input rows */
    3468             : void
    3469        9382 : exps_largest_int(sql_subfunc *f, list *exps, lng cnt)
    3470             : {
    3471        9382 :         if (!f->func->res || cnt == 0)
    3472             :                 return;
    3473         565 :         sql_subtype *res = f->res->h->data;
    3474         565 :         if (res->type->eclass != EC_DEC && res->type->eclass != EC_NUM)
    3475             :                 return;
    3476         489 :         bool is_decimal = (res->type->eclass == EC_DEC);
    3477         489 :         unsigned int digits = 0, scale = 0, mdigits = is_decimal ? decimal_digits(cnt) : number_bits(cnt);
    3478         489 :         sql_type *largesttype = NULL;
    3479         489 :         for(node *n = exps->h; n; n = n->next) {
    3480         489 :                 sql_subtype *t = exp_subtype(n->data);
    3481             : 
    3482         489 :                 if (!t)
    3483           0 :                         continue;
    3484             : 
    3485         489 :                 largesttype = t->type;
    3486         489 :                 if (is_decimal && t->type->eclass == EC_NUM) {
    3487           0 :                         unsigned int d = bits2digits(t->digits);
    3488           0 :                         digits = d>digits?d:digits;
    3489         489 :                 } else if (digits < t->digits)
    3490             :                         digits = t->digits;
    3491         489 :                 if (scale < t->scale)
    3492             :                         scale = t->scale;
    3493             :                 break;
    3494             :         }
    3495         489 :         digits += mdigits;
    3496         489 :         if (largesttype && digits <= largesttype->digits)
    3497         416 :                 sql_init_subtype(res, largesttype, digits, scale);
    3498          73 :         else if (is_decimal)
    3499           8 :                 sql_find_subtype(res, res->type->base.name, digits, scale);
    3500             :         else
    3501          65 :                 sql_find_numeric(res, 1, digits);
    3502             : }
    3503             : 
    3504             : #define is_addition(fname) (strcmp(fname, "sql_add") == 0)
    3505             : #define is_subtraction(fname) (strcmp(fname, "sql_sub") == 0)
    3506             : void
    3507      269544 : exps_scale_fix(sql_subfunc *f, list *exps, sql_subtype *atp)
    3508             : {
    3509      269544 :         if (!f->func->res)
    3510             :                 return;
    3511             : 
    3512      269544 :         sql_subtype *res = f->res->h->data;
    3513      269544 :         if (res->type->eclass != EC_ANY && res->type->eclass != EC_DEC)
    3514             :                 return;
    3515             : 
    3516       61254 :         unsigned int digits = 0, scale = 0;
    3517       61254 :         sql_type *largesttype = NULL;
    3518      241862 :         for(node *n = exps->h; n; n = n->next) {
    3519      180608 :                 sql_subtype *t = exp_subtype(n->data);
    3520             : 
    3521      180608 :                 if (!t)
    3522           0 :                         continue;
    3523      180608 :                 if (digits < t->digits)
    3524             :                         digits = t->digits;
    3525      180608 :                 if (scale < t->scale)
    3526             :                         scale = t->scale;
    3527      180608 :                 if (t->type->eclass == EC_DEC && (!largesttype || largesttype->localtype < t->type->localtype))
    3528      180608 :                         largesttype = t->type;
    3529             :         }
    3530       61254 :         res->scale = scale;
    3531       61254 :         if (res->type->eclass == EC_DEC)
    3532         646 :                 digits += (is_addition(f->func->base.name) || is_subtraction(f->func->base.name));
    3533       61254 :         if (digits > res->type->digits) {
    3534       60932 :                 if (largesttype && largesttype->localtype > res->type->localtype)
    3535          75 :                         sql_init_subtype(res, largesttype, digits, scale);
    3536             :                 else
    3537       60857 :                         sql_find_subtype(res, res->type->localtype?res->type->base.name:atp->type->base.name, digits, scale);
    3538         322 :         } else if (res->type->eclass == EC_DEC || res->type->eclass == EC_NUM)
    3539         252 :                 res->digits = digits;
    3540             : }
    3541             : 
    3542             : int
    3543      128899 : exp_aggr_is_count(sql_exp *e)
    3544             : {
    3545      128899 :         if (e->type == e_aggr && !((sql_subfunc *)e->f)->func->s && strcmp(((sql_subfunc *)e->f)->func->base.name, "count") == 0)
    3546       35176 :                 return 1;
    3547             :         return 0;
    3548             : }
    3549             : 
    3550             : list *
    3551       67812 : check_distinct_exp_names(mvc *sql, list *exps)
    3552             : {
    3553       67812 :         list *distinct_exps = NULL;
    3554       67812 :         bool duplicates = false;
    3555             : 
    3556       67812 :         if (list_length(exps) < 2) {
    3557             :                 return exps; /* always true */
    3558       65937 :         } else if (list_length(exps) < 5) {
    3559       15078 :                 distinct_exps = list_distinct(exps, (fcmp) exp_equal, (fdup) NULL);
    3560             :         } else { /* for longer lists, use hashing */
    3561       50859 :                 sql_hash *ht = hash_new(sql->ta, list_length(exps), (fkeyvalue)&exp_key);
    3562             : 
    3563      502902 :                 for (node *n = exps->h; n && !duplicates; n = n->next) {
    3564      452043 :                         sql_exp *e = n->data;
    3565      452043 :                         int key = ht->key(e);
    3566      452043 :                         sql_hash_e *he = ht->buckets[key&(ht->size-1)];
    3567             : 
    3568      584419 :                         for (; he && !duplicates; he = he->chain) {
    3569      132375 :                                 sql_exp *f = he->value;
    3570             : 
    3571      132375 :                                 if (!exp_equal(e, f))
    3572           0 :                                         duplicates = true;
    3573             :                         }
    3574      452044 :                         hash_add(ht, key, e);
    3575             :                 }
    3576             :         }
    3577       65937 :         if ((distinct_exps && list_length(distinct_exps) != list_length(exps)) || duplicates)
    3578           1 :                 return NULL;
    3579             :         return exps;
    3580             : }
    3581             : 
    3582             : static int rel_find_parameter(mvc *sql, sql_subtype *type, sql_rel *rel, int nid, const char *relname, const char *expname);
    3583             : 
    3584             : static int
    3585        1634 : set_exp_type(mvc *sql, sql_subtype *type, sql_rel *rel, sql_exp *e)
    3586             : {
    3587        1640 :         if (mvc_highwater(sql)) {
    3588           0 :                 (void) sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    3589           0 :                 return -1;
    3590             :         }
    3591        1640 :         if (e->type == e_column) {
    3592          60 :                 const char *nrname = (const char*) e->l, *nename = (const char*) e->r;
    3593             :                 /* find all the column references and set the type */
    3594          60 :                 e->tpe = *type;
    3595          60 :                 assert(e->nid);
    3596          60 :                 return rel_find_parameter(sql, type, rel, e->nid, nrname, nename);
    3597        1580 :         } else if (e->type == e_atom && e->f) {
    3598          25 :                 list *atoms = e->f;
    3599          25 :                 if (!list_empty(atoms))
    3600          61 :                         for (node *n = atoms->h; n; n = n->next)
    3601          36 :                                 if (set_exp_type(sql, type, rel, n->data) < 0) /* set recursively */
    3602             :                                         return -1;
    3603          25 :                 e->tpe = *type;
    3604          25 :                 return 1; /* on a list of atoms, everything should be found */
    3605        1555 :         } else if (e->type == e_atom && !e->l && !e->r && !e->f) {
    3606        1549 :                 e->tpe = *type;
    3607        1549 :                 return set_type_param(sql, type, e->flag) == 0 ? 1 : 0;
    3608           6 :         } else if (exp_is_rel(e)) { /* for relation expressions, restart cycle */
    3609           6 :                 rel = (sql_rel*) e->l;
    3610             :                 /* limiting to these cases */
    3611           6 :                 if (!is_project(rel->op) || list_length(rel->exps) != 1)
    3612           0 :                         return 0;
    3613           6 :                 sql_exp *re = rel->exps->h->data;
    3614             : 
    3615           6 :                 e->tpe = *type;
    3616           6 :                 return set_exp_type(sql, type, rel, re); /* set recursively */
    3617             :         }
    3618             :         return 0;
    3619             : }
    3620             : 
    3621             : int
    3622        1542 : rel_set_type_param(mvc *sql, sql_subtype *type, sql_rel *rel, sql_exp *exp, int upcast)
    3623             : {
    3624        1542 :         if (!type || !exp || (exp->type != e_atom && exp->type != e_column && !exp_is_rel(exp)))
    3625           0 :                 return -1;
    3626             : 
    3627             :         /* use largest numeric types */
    3628        1542 :         if (upcast && type->type->eclass == EC_NUM)
    3629             : #ifdef HAVE_HGE
    3630           9 :                 type = sql_bind_localtype("hge");
    3631             : #else
    3632             :                 type = sql_bind_localtype("lng");
    3633             : #endif
    3634           6 :         else if (upcast && type->type->eclass == EC_FLT)
    3635           1 :                 type = sql_bind_localtype("dbl");
    3636             : 
    3637             :         /* TODO we could use the sql_query* struct to set parameters used as freevars,
    3638             :            but it requires to change a lot of interfaces */
    3639             :         /* if (is_freevar(exp))
    3640             :                 rel = query_fetch_outer(query, is_freevar(exp)-1); */
    3641        1542 :         return set_exp_type(sql, type, rel, exp);
    3642             : }
    3643             : 
    3644             : /* try to do an in-place conversion
    3645             :  *
    3646             :  * in-place conversion is only possible if the exp is a variable.
    3647             :  * This is only done to be able to map more cached queries onto the same
    3648             :  * interface.
    3649             :  */
    3650             : sql_exp *
    3651     5160275 : exp_convert_inplace(mvc *sql, sql_subtype *t, sql_exp *exp)
    3652             : {
    3653     5160275 :         atom *a, *na;
    3654             : 
    3655             :         /* exclude named variables and variable lists */
    3656     5160275 :         if (exp->type != e_atom || exp->r /* named */ || exp->f /* list */ || !exp->l /* not direct atom */)
    3657             :                 return NULL;
    3658             : 
    3659     2967067 :         a = exp->l;
    3660     2967067 :         if (!a->isnull && t->scale && t->type->eclass != EC_FLT)
    3661             :                 return NULL;
    3662             : 
    3663     2961774 :         if ((na = atom_cast(sql->sa, a, t))) {
    3664     2958555 :                 exp->l = na;
    3665     2958555 :                 return exp;
    3666             :         }
    3667             :         return NULL;
    3668             : }
    3669             : 
    3670             : sql_exp *
    3671           0 : exp_numeric_supertype(mvc *sql, sql_exp *e )
    3672             : {
    3673           0 :         sql_subtype *tp = exp_subtype(e);
    3674             : 
    3675           0 :         if (tp->type->eclass == EC_DEC) {
    3676           0 :                 sql_subtype *dtp = sql_bind_localtype("dbl");
    3677             : 
    3678           0 :                 return exp_check_type(sql, dtp, NULL, e, type_cast);
    3679             :         }
    3680           0 :         if (tp->type->eclass == EC_NUM) {
    3681             : #ifdef HAVE_HGE
    3682           0 :                 sql_subtype *ltp = sql_bind_localtype("hge");
    3683             : #else
    3684             :                 sql_subtype *ltp = sql_bind_localtype("lng");
    3685             : #endif
    3686             : 
    3687           0 :                 return exp_check_type(sql, ltp, NULL, e, type_cast);
    3688             :         }
    3689             :         return e;
    3690             : }
    3691             : 
    3692             : sql_exp *
    3693     5159749 : exp_check_type(mvc *sql, sql_subtype *t, sql_rel *rel, sql_exp *exp, check_type tpe)
    3694             : {
    3695     5159749 :         int c, err = 0;
    3696     5159749 :         sql_exp* nexp = NULL;
    3697     5159749 :         sql_subtype *fromtype = exp_subtype(exp);
    3698             : 
    3699     5159729 :         if ((!fromtype || !fromtype->type) && rel_set_type_param(sql, t, rel, exp, 0) == 0)
    3700             :                 return exp;
    3701             : 
    3702             :         /* first try cheap internal (in-place) conversions ! */
    3703     5159728 :         if ((nexp = exp_convert_inplace(sql, t, exp)) != NULL)
    3704             :                 return nexp;
    3705             : 
    3706     2201406 :         if (fromtype && subtype_cmp(t, fromtype) != 0) {
    3707      263751 :                 if (EC_INTERVAL(fromtype->type->eclass) && (t->type->eclass == EC_NUM || t->type->eclass == EC_POS) && t->digits < fromtype->digits) {
    3708             :                         err = 1; /* conversion from interval to num depends on the number of digits */
    3709             :                 } else {
    3710      263751 :                         c = sql_type_convert(fromtype->type->eclass, t->type->eclass);
    3711      263751 :                         if (!c || (c == 2 && tpe == type_set) || (c == 3 && tpe != type_cast)) {
    3712             :                                 err = 1;
    3713             :                         } else {
    3714      263236 :                                 exp = exp_convert(sql, exp, fromtype, t);
    3715             :                         }
    3716             :                 }
    3717             :         }
    3718      263236 :         if (err) {
    3719         515 :                 const char *name = (exp->type == e_column && !has_label(exp)) ? exp_name(exp) : "%";
    3720         578 :                 sql_exp *res = sql_error( sql, 03, SQLSTATE(42000) "types %s(%u,%u) and %s(%u,%u) are not equal%s%s%s",
    3721         515 :                         fromtype->type->base.name,
    3722             :                         fromtype->digits,
    3723             :                         fromtype->scale,
    3724         515 :                         t->type->base.name,
    3725             :                         t->digits,
    3726             :                         t->scale,
    3727             :                         (name[0] != '%' ? " for column '" : ""),
    3728             :                         (name[0] != '%' ? name : ""),
    3729         515 :                         (name[0] != '%' ? "'" : "")
    3730             :                 );
    3731         515 :                 return res;
    3732             :         }
    3733             :         return exp;
    3734             : }
    3735             : 
    3736             : sql_exp *
    3737        7192 : exp_values_set_supertype(mvc *sql, sql_exp *values, sql_subtype *opt_super)
    3738             : {
    3739        7192 :         assert(is_values(values));
    3740        7192 :         list *vals = exp_get_values(values), *nexps;
    3741        7192 :         sql_subtype *tpe = opt_super?opt_super:exp_subtype(vals->h->data);
    3742             : 
    3743        7193 :         if (!opt_super && tpe)
    3744        7093 :                 values->tpe = *tpe;
    3745             : 
    3746       31256 :         for (node *m = vals->h; m; m = m->next) {
    3747       24064 :                 sql_exp *e = m->data;
    3748       24064 :                 sql_subtype super, *ttpe;
    3749             : 
    3750             :                 /* if the expression is a parameter set its type */
    3751       24064 :                 if (tpe && e->type == e_atom && !e->l && !e->r && !e->f && !e->tpe.type) {
    3752           4 :                         if (set_type_param(sql, tpe, e->flag) == 0)
    3753           4 :                                 e->tpe = *tpe;
    3754             :                         else
    3755           0 :                                 return NULL;
    3756             :                 }
    3757       24064 :                 ttpe = exp_subtype(e);
    3758       24062 :                 if (tpe && ttpe) {
    3759       24010 :                         supertype(&super, ttpe, tpe);
    3760       24011 :                         values->tpe = super;
    3761       24011 :                         tpe = &values->tpe;
    3762             :                 } else {
    3763             :                         tpe = ttpe;
    3764             :                 }
    3765             :         }
    3766             : 
    3767        7192 :         if (tpe) {
    3768             :                 /* if the expression is a parameter set its type */
    3769       31166 :                 for (node *m = vals->h; m; m = m->next) {
    3770       24012 :                         sql_exp *e = m->data;
    3771       24012 :                         if (e->type == e_atom && !e->l && !e->r && !e->f && !e->tpe.type) {
    3772           1 :                                 if (set_type_param(sql, tpe, e->flag) == 0)
    3773           1 :                                         e->tpe = *tpe;
    3774             :                                 else
    3775             :                                         return NULL;
    3776             :                         }
    3777             :                 }
    3778        7154 :                 values->tpe = *tpe;
    3779        7154 :                 nexps = sa_list(sql->sa);
    3780       31163 :                 for (node *m = vals->h; m; m = m->next) {
    3781       24011 :                         sql_exp *e = m->data;
    3782       24011 :                         e = exp_check_type(sql, &values->tpe, NULL, e, type_equal);
    3783       24011 :                         if (!e)
    3784             :                                 return NULL;
    3785       24008 :                         exp_label(sql->sa, e, ++sql->label);
    3786       24010 :                         append(nexps, e);
    3787             :                 }
    3788        7152 :                 values->f = nexps;
    3789             :         }
    3790             :         return values;
    3791             : }
    3792             : 
    3793             : /* return -1 on error, 0 not found, 1 found */
    3794             : static int
    3795          86 : rel_find_parameter(mvc *sql, sql_subtype *type, sql_rel *rel, int nid, const char *relname, const char *expname)
    3796             : {
    3797         138 :         int res = 0;
    3798             : 
    3799         138 :         if (mvc_highwater(sql)) {
    3800           0 :                 (void) sql_error(sql, 10, SQLSTATE(42000) "Query too complex: running out of stack space");
    3801           0 :                 return -1;
    3802             :         }
    3803         138 :         if (!rel)
    3804             :                 return 0;
    3805             : 
    3806         135 :         const char *nrname = relname, *nename = expname;
    3807         135 :         if (is_project(rel->op) && !list_empty(rel->exps)) {
    3808         111 :                 sql_exp *e = NULL;
    3809             : 
    3810         111 :                 assert(nid);
    3811         111 :                 e = exps_bind_nid(rel->exps, nid);
    3812         111 :                 if (!e)
    3813             :                         return 0; /* not found */
    3814         108 :                 if (is_mset(rel->op)) { /* TODO for set relations this needs further improvement */
    3815           0 :                         (void) sql_error(sql, 10, SQLSTATE(42000) "Cannot set parameter types under set relations at the moment");
    3816           0 :                         return -1;
    3817             :                 }
    3818             :                 /* set order by column types */
    3819         108 :                 if (is_simple_project(rel->op) && !list_empty(rel->r)) {
    3820           0 :                         sql_exp *ordere = NULL;
    3821           0 :                         ordere = exps_bind_nid(rel->r, nid);
    3822           0 :                         if (ordere && ordere->type == e_column)
    3823           0 :                                 ordere->tpe = *type;
    3824             :                 }
    3825         108 :                 if (e->type == e_column) {
    3826          52 :                         nid = e->nid;
    3827          52 :                         nrname = (const char*) e->l;
    3828          52 :                         nename = (const char*) e->r;
    3829          52 :                         e->tpe = *type;
    3830          52 :                         res = 1; /* found */
    3831          56 :                 } else if ((e->type == e_atom || exp_is_rel(e)) && (res = set_exp_type(sql, type, rel, e)) <= 0) {
    3832             :                         return res; /* don't search further */
    3833             :                 }
    3834             :                 /* group by columns can have aliases! */
    3835         108 :                 if (is_groupby(rel->op) && !list_empty(rel->r)) {
    3836           0 :                         e = exps_bind_nid(rel->r, nid);
    3837           0 :                         if (!e)
    3838             :                                 return res; /* don't search further */
    3839           0 :                         if (e->type == e_column) {
    3840           0 :                                 nid = e->nid;
    3841           0 :                                 nrname = (const char*) e->l;
    3842           0 :                                 nename = (const char*) e->r;
    3843           0 :                                 e->tpe = *type;
    3844           0 :                         } else if ((e->type == e_atom || exp_is_rel(e)) && (res = set_exp_type(sql, type, rel, e)) <= 0) {
    3845             :                                 return res; /* don't search further */
    3846             :                         }
    3847             :                 }
    3848         108 :                 if (e->type != e_column)
    3849             :                         return res; /* don't search further */
    3850             :         }
    3851             : 
    3852          76 :         switch (rel->op) {
    3853          14 :                 case op_join:
    3854             :                 case op_left:
    3855             :                 case op_right:
    3856             :                 case op_full:
    3857          14 :                         if (rel->l)
    3858          14 :                                 res = rel_find_parameter(sql, type, rel->l, nid, nrname, nename);
    3859          14 :                         if (rel->r && res <= 0) { /* try other relation if not found */
    3860          12 :                                 int err = sql->session->status, lres = res;
    3861          12 :                                 char buf[ERRSIZE];
    3862             : 
    3863          12 :                                 strcpy(buf, sql->errstr); /* keep error found and try other join relation */
    3864          12 :                                 sql->session->status = 0;
    3865          12 :                                 sql->errstr[0] = '\0';
    3866          12 :                                 res = rel_find_parameter(sql, type, rel->r, nid, nrname, nename);
    3867          12 :                                 if (res == 0) { /* parameter wasn't found, set error */
    3868           1 :                                         res = lres;
    3869           1 :                                         sql->session->status = err;
    3870           1 :                                         strcpy(sql->errstr, buf);
    3871             :                                 }
    3872             :                         }
    3873             :                         break;
    3874          52 :                 case op_semi:
    3875             :                 case op_anti:
    3876             :                 case op_groupby:
    3877             :                 case op_project:
    3878             :                 case op_select:
    3879             :                 case op_topn:
    3880             :                 case op_sample:
    3881          52 :                         if (rel->l)
    3882             :                                 res = rel_find_parameter(sql, type, rel->l, nid, nrname, nename);
    3883             :                         break;
    3884           0 :                 case op_union: /* TODO for set relations this needs further improvement */
    3885             :                 case op_inter:
    3886             :                 case op_except:
    3887             :                 case op_munion: {
    3888           0 :                         (void) sql_error(sql, 10, SQLSTATE(42000) "Cannot set parameter types under set relations at the moment");
    3889           0 :                         return -1;
    3890             :                 }
    3891             :                 default: /* For table returning functions, the type must be set when the relation is created */
    3892             :                         return 0;
    3893             :         }
    3894             :         return res;
    3895             : }
    3896             : 
    3897             : sql_exp *
    3898       19658 : list_find_exp( list *exps, sql_exp *e)
    3899             : {
    3900       19658 :         if (e->type != e_column)
    3901             :                 return NULL;
    3902       19617 :         return exps_bind_nid(exps, e->nid);
    3903             : }

Generated by: LCOV version 1.14