sql_lex.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:45k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* A lexical scanner on a temporary buffer with a yacc interface */
  14. #include "mysql_priv.h"
  15. #include "item_create.h"
  16. #include <m_ctype.h>
  17. #include <hash.h>
  18. /*
  19.   Fake table list object, pointer to which is used as special value for
  20.   st_lex::time_zone_tables_used indicating that we implicitly use time
  21.   zone tables in this statement but real table list was not yet created.
  22.   Pointer to it is also returned by my_tz_get_tables_list() as indication
  23.   of transient error;
  24. */
  25. TABLE_LIST fake_time_zone_tables_list;
  26. /* Macros to look like lex */
  27. #define yyGet() *(lex->ptr++)
  28. #define yyGetLast() lex->ptr[-1]
  29. #define yyPeek() lex->ptr[0]
  30. #define yyPeek2() lex->ptr[1]
  31. #define yyUnget() lex->ptr--
  32. #define yySkip() lex->ptr++
  33. #define yyLength() ((uint) (lex->ptr - lex->tok_start)-1)
  34. #if MYSQL_VERSION_ID < 32300
  35. #define FLOAT_NUM REAL_NUM
  36. #endif
  37. pthread_key(LEX*,THR_LEX);
  38. /* Longest standard keyword name */
  39. #define TOCK_NAME_LENGTH 24
  40. /*
  41.   The following data is based on the latin1 character set, and is only
  42.   used when comparing keywords
  43. */
  44. uchar to_upper_lex[] = {
  45.     0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
  46.    16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
  47.    32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
  48.    48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
  49.    64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
  50.    80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
  51.    96, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
  52.    80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,123,124,125,126,127,
  53.   128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
  54.   144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,
  55.   160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,
  56.   176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,
  57.   192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,
  58.   208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,
  59.   192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,
  60.   208,209,210,211,212,213,214,247,216,217,218,219,220,221,222,255
  61. };
  62. inline int lex_casecmp(const char *s, const char *t, uint len)
  63. {
  64.   while (len-- != 0 &&
  65.  to_upper_lex[(uchar) *s++] == to_upper_lex[(uchar) *t++]) ;
  66.   return (int) len+1;
  67. }
  68. #include "lex_hash.h"
  69. void lex_init(void)
  70. {
  71.   uint i;
  72.   DBUG_ENTER("lex_init");
  73.   for (i=0 ; i < array_elements(symbols) ; i++)
  74.     symbols[i].length=(uchar) strlen(symbols[i].name);
  75.   for (i=0 ; i < array_elements(sql_functions) ; i++)
  76.     sql_functions[i].length=(uchar) strlen(sql_functions[i].name);
  77.   VOID(pthread_key_create(&THR_LEX,NULL));
  78.   DBUG_VOID_RETURN;
  79. }
  80. void lex_free(void)
  81. { // Call this when daemon ends
  82.   DBUG_ENTER("lex_free");
  83.   DBUG_VOID_RETURN;
  84. }
  85. /*
  86.   This is called before every query that is to be parsed.
  87.   Because of this, it's critical to not do too much things here.
  88.   (We already do too much here)
  89. */
  90. void lex_start(THD *thd, uchar *buf,uint length)
  91. {
  92.   LEX *lex= thd->lex;
  93.   lex->unit.init_query();
  94.   lex->unit.init_select();
  95.   lex->thd= thd;
  96.   lex->unit.thd= thd;
  97.   lex->select_lex.init_query();
  98.   lex->value_list.empty();
  99.   lex->update_list.empty();
  100.   lex->param_list.empty();
  101.   lex->unit.next= lex->unit.master=
  102.     lex->unit.link_next= lex->unit.return_to= 0;
  103.   lex->unit.prev= lex->unit.link_prev= 0;
  104.   lex->unit.slave= lex->unit.global_parameters= lex->current_select=
  105.     lex->all_selects_list= &lex->select_lex;
  106.   lex->select_lex.master= &lex->unit;
  107.   lex->select_lex.prev= &lex->unit.slave;
  108.   lex->select_lex.link_next= lex->select_lex.slave= lex->select_lex.next= 0;
  109.   lex->select_lex.link_prev= (st_select_lex_node**)&(lex->all_selects_list);
  110.   lex->select_lex.options= 0;
  111.   lex->describe= 0;
  112.   lex->subqueries= lex->derived_tables= FALSE;
  113.   lex->lock_option= TL_READ;
  114.   lex->found_colon= 0;
  115.   lex->safe_to_cache_query= 1;
  116.   lex->time_zone_tables_used= 0;
  117.   lex->select_lex.select_number= 1;
  118.   lex->next_state=MY_LEX_START;
  119.   lex->end_of_query=(lex->ptr=buf)+length;
  120.   lex->yylineno = 1;
  121.   lex->in_comment=0;
  122.   lex->length=0;
  123.   lex->select_lex.in_sum_expr=0;
  124.   lex->select_lex.expr_list.empty();
  125.   lex->select_lex.ftfunc_list_alloc.empty();
  126.   lex->select_lex.ftfunc_list= &lex->select_lex.ftfunc_list_alloc;
  127.   lex->select_lex.group_list.empty();
  128.   lex->select_lex.order_list.empty();
  129.   lex->current_select= &lex->select_lex;
  130.   lex->yacc_yyss=lex->yacc_yyvs=0;
  131.   lex->ignore_space=test(thd->variables.sql_mode & MODE_IGNORE_SPACE);
  132.   lex->sql_command=SQLCOM_END;
  133.   lex->duplicates= DUP_ERROR;
  134.   lex->ignore= 0;
  135.   lex->proc_list.first= 0;
  136. }
  137. void lex_end(LEX *lex)
  138. {
  139.   for (SELECT_LEX *sl= lex->all_selects_list;
  140.        sl;
  141.        sl= sl->next_select_in_list())
  142.     sl->expr_list.delete_elements(); // If error when parsing sql-varargs
  143.   x_free(lex->yacc_yyss);
  144.   x_free(lex->yacc_yyvs);
  145. }
  146. static int find_keyword(LEX *lex, uint len, bool function)
  147. {
  148.   uchar *tok=lex->tok_start;
  149.   SYMBOL *symbol = get_hash_symbol((const char *)tok,len,function);
  150.   if (symbol)
  151.   {
  152.     lex->yylval->symbol.symbol=symbol;
  153.     lex->yylval->symbol.str= (char*) tok;
  154.     lex->yylval->symbol.length=len;
  155.     return symbol->tok;
  156.   }
  157. #ifdef HAVE_DLOPEN
  158.   udf_func *udf;
  159.   if (function && using_udf_functions && (udf=find_udf((char*) tok, len)))
  160.   {
  161.     lex->safe_to_cache_query=0;
  162.     lex->yylval->udf=udf;
  163.     switch (udf->returns) {
  164.     case STRING_RESULT:
  165.       return (udf->type == UDFTYPE_FUNCTION) ? UDF_CHAR_FUNC : UDA_CHAR_SUM;
  166.     case REAL_RESULT:
  167.       return (udf->type == UDFTYPE_FUNCTION) ? UDF_FLOAT_FUNC : UDA_FLOAT_SUM;
  168.     case INT_RESULT:
  169.       return (udf->type == UDFTYPE_FUNCTION) ? UDF_INT_FUNC : UDA_INT_SUM;
  170.     case ROW_RESULT:
  171.     default:
  172.       // This case should never be choosen
  173.       DBUG_ASSERT(0);
  174.       return 0;
  175.     }
  176.   }
  177. #endif
  178.   return 0;
  179. }
  180. /*
  181.   Check if name is a keyword
  182.   SYNOPSIS
  183.     is_keyword()
  184.     name      checked name
  185.     len       length of checked name
  186.   RETURN VALUES
  187.     0         name is a keyword
  188.     1         name isn't a keyword
  189. */
  190. bool is_keyword(const char *name, uint len)
  191. {
  192.   return get_hash_symbol(name,len,0)!=0;
  193. }
  194. /* make a copy of token before ptr and set yytoklen */
  195. static LEX_STRING get_token(LEX *lex,uint length)
  196. {
  197.   LEX_STRING tmp;
  198.   yyUnget(); // ptr points now after last token char
  199.   tmp.length=lex->yytoklen=length;
  200.   tmp.str=(char*) lex->thd->strmake((char*) lex->tok_start,tmp.length);
  201.   return tmp;
  202. }
  203. /* 
  204.  todo: 
  205.    There are no dangerous charsets in mysql for function 
  206.    get_quoted_token yet. But it should be fixed in the 
  207.    future to operate multichar strings (like ucs2)
  208. */
  209. static LEX_STRING get_quoted_token(LEX *lex,uint length, char quote)
  210. {
  211.   LEX_STRING tmp;
  212.   byte *from, *to, *end;
  213.   yyUnget(); // ptr points now after last token char
  214.   tmp.length=lex->yytoklen=length;
  215.   tmp.str=(char*) lex->thd->alloc(tmp.length+1);
  216.   for (from= (byte*) lex->tok_start, to= (byte*) tmp.str, end= to+length ;
  217.        to != end ;
  218.        )
  219.   {
  220.     if ((*to++= *from++) == quote)
  221.       from++; // Skip double quotes
  222.   }
  223.   *to= 0; // End null for safety
  224.   return tmp;
  225. }
  226. /*
  227.   Return an unescaped text literal without quotes
  228.   Fix sometimes to do only one scan of the string
  229. */
  230. static char *get_text(LEX *lex)
  231. {
  232.   reg1 uchar c,sep;
  233.   uint found_escape=0;
  234.   CHARSET_INFO *cs= lex->thd->charset();
  235.   sep= yyGetLast(); // String should end with this
  236.   //lex->tok_start=lex->ptr-1; // Remember '
  237.   while (lex->ptr != lex->end_of_query)
  238.   {
  239.     c = yyGet();
  240. #ifdef USE_MB
  241.     int l;
  242.     if (use_mb(cs) &&
  243.         (l = my_ismbchar(cs,
  244.                          (const char *)lex->ptr-1,
  245.                          (const char *)lex->end_of_query))) {
  246. lex->ptr += l-1;
  247. continue;
  248.     }
  249. #endif
  250.     if (c == '\')
  251.     { // Escaped character
  252.       found_escape=1;
  253.       if (lex->ptr == lex->end_of_query)
  254. return 0;
  255. #ifdef USE_MB
  256.       int l;
  257.       if (use_mb(cs) &&
  258.           (l = my_ismbchar(cs,
  259.                            (const char *)lex->ptr,
  260.                            (const char *)lex->end_of_query))) {
  261.           lex->ptr += l;
  262.           continue;
  263.       }
  264.       else
  265. #endif
  266.         yySkip();
  267.     }
  268.     else if (c == sep)
  269.     {
  270.       if (c == yyGet()) // Check if two separators in a row
  271.       {
  272. found_escape=1; // dupplicate. Remember for delete
  273. continue;
  274.       }
  275.       else
  276. yyUnget();
  277.       /* Found end. Unescape and return string */
  278.       uchar *str,*end,*start;
  279.       str=lex->tok_start+1;
  280.       end=lex->ptr-1;
  281.       if (!(start=(uchar*) lex->thd->alloc((uint) (end-str)+1)))
  282. return (char*) ""; // Sql_alloc has set error flag
  283.       if (!found_escape)
  284.       {
  285. lex->yytoklen=(uint) (end-str);
  286. memcpy(start,str,lex->yytoklen);
  287. start[lex->yytoklen]=0;
  288.       }
  289.       else
  290.       {
  291. uchar *to;
  292.         /* Re-use found_escape for tracking state of escapes */
  293.         found_escape= 0;
  294. for (to=start ; str != end ; str++)
  295. {
  296. #ifdef USE_MB
  297.   int l;
  298.   if (use_mb(cs) &&
  299.               (l = my_ismbchar(cs,
  300.                                (const char *)str, (const char *)end))) {
  301.       while (l--)
  302.   *to++ = *str++;
  303.       str--;
  304.       continue;
  305.   }
  306. #endif
  307.   if (!found_escape && *str == '\' && str+1 != end)
  308.   {
  309.     switch(*++str) {
  310.     case 'n':
  311.       *to++='n';
  312.       break;
  313.     case 't':
  314.       *to++= 't';
  315.       break;
  316.     case 'r':
  317.       *to++ = 'r';
  318.       break;
  319.     case 'b':
  320.       *to++ = 'b';
  321.       break;
  322.     case '0':
  323.       *to++= 0; // Ascii null
  324.       break;
  325.     case 'Z': // ^Z must be escaped on Win32
  326.       *to++='32';
  327.       break;
  328.     case '_':
  329.     case '%':
  330.       *to++= '\'; // remember prefix for wildcard
  331.       /* Fall through */
  332.     default:
  333.               found_escape= 1;
  334.               str--;
  335.       break;
  336.     }
  337.   }
  338.   else if (!found_escape && *str == sep)
  339.           {
  340.             found_escape= 1;
  341.           }
  342.   else
  343.           {
  344.     *to++ = *str;
  345.             found_escape= 0;
  346.           }
  347. }
  348. *to=0;
  349. lex->yytoklen=(uint) (to-start);
  350.       }
  351.       return (char*) start;
  352.     }
  353.   }
  354.   return 0; // unexpected end of query
  355. }
  356. /*
  357. ** Calc type of integer; long integer, longlong integer or real.
  358. ** Returns smallest type that match the string.
  359. ** When using unsigned long long values the result is converted to a real
  360. ** because else they will be unexpected sign changes because all calculation
  361. ** is done with longlong or double.
  362. */
  363. static const char *long_str="2147483647";
  364. static const uint long_len=10;
  365. static const char *signed_long_str="-2147483648";
  366. static const char *longlong_str="9223372036854775807";
  367. static const uint longlong_len=19;
  368. static const char *signed_longlong_str="-9223372036854775808";
  369. static const uint signed_longlong_len=19;
  370. static const char *unsigned_longlong_str="18446744073709551615";
  371. static const uint unsigned_longlong_len=20;
  372. static inline uint int_token(const char *str,uint length)
  373. {
  374.   if (length < long_len) // quick normal case
  375.     return NUM;
  376.   bool neg=0;
  377.   if (*str == '+') // Remove sign and pre-zeros
  378.   {
  379.     str++; length--;
  380.   }
  381.   else if (*str == '-')
  382.   {
  383.     str++; length--;
  384.     neg=1;
  385.   }
  386.   while (*str == '0' && length)
  387.   {
  388.     str++; length --;
  389.   }
  390.   if (length < long_len)
  391.     return NUM;
  392.   uint smaller,bigger;
  393.   const char *cmp;
  394.   if (neg)
  395.   {
  396.     if (length == long_len)
  397.     {
  398.       cmp= signed_long_str+1;
  399.       smaller=NUM; // If <= signed_long_str
  400.       bigger=LONG_NUM; // If >= signed_long_str
  401.     }
  402.     else if (length < signed_longlong_len)
  403.       return LONG_NUM;
  404.     else if (length > signed_longlong_len)
  405.       return REAL_NUM;
  406.     else
  407.     {
  408.       cmp=signed_longlong_str+1;
  409.       smaller=LONG_NUM; // If <= signed_longlong_str
  410.       bigger=REAL_NUM;
  411.     }
  412.   }
  413.   else
  414.   {
  415.     if (length == long_len)
  416.     {
  417.       cmp= long_str;
  418.       smaller=NUM;
  419.       bigger=LONG_NUM;
  420.     }
  421.     else if (length < longlong_len)
  422.       return LONG_NUM;
  423.     else if (length > longlong_len)
  424.     {
  425.       if (length > unsigned_longlong_len)
  426. return REAL_NUM;
  427.       cmp=unsigned_longlong_str;
  428.       smaller=ULONGLONG_NUM;
  429.       bigger=REAL_NUM;
  430.     }
  431.     else
  432.     {
  433.       cmp=longlong_str;
  434.       smaller=LONG_NUM;
  435.       bigger= ULONGLONG_NUM;
  436.     }
  437.   }
  438.   while (*cmp && *cmp++ == *str++) ;
  439.   return ((uchar) str[-1] <= (uchar) cmp[-1]) ? smaller : bigger;
  440. }
  441. /*
  442.   yylex remember the following states from the following yylex()
  443.   - MY_LEX_EOQ Found end of query
  444.   - MY_LEX_OPERATOR_OR_IDENT Last state was an ident, text or number
  445. (which can't be followed by a signed number)
  446. */
  447. int yylex(void *arg, void *yythd)
  448. {
  449.   reg1 uchar c;
  450.   int tokval, result_state;
  451.   uint length;
  452.   enum my_lex_states state;
  453.   LEX *lex= ((THD *)yythd)->lex;
  454.   YYSTYPE *yylval=(YYSTYPE*) arg;
  455.   CHARSET_INFO *cs= ((THD *) yythd)->charset();
  456.   uchar *state_map= cs->state_map;
  457.   uchar *ident_map= cs->ident_map;
  458.   lex->yylval=yylval; // The global state
  459.   lex->tok_start=lex->tok_end=lex->ptr;
  460.   state=lex->next_state;
  461.   lex->next_state=MY_LEX_OPERATOR_OR_IDENT;
  462.   LINT_INIT(c);
  463.   for (;;)
  464.   {
  465.     switch (state) {
  466.     case MY_LEX_OPERATOR_OR_IDENT: // Next is operator or keyword
  467.     case MY_LEX_START: // Start of token
  468.       // Skip startspace
  469.       for (c=yyGet() ; (state_map[c] == MY_LEX_SKIP) ; c= yyGet())
  470.       {
  471. if (c == 'n')
  472.   lex->yylineno++;
  473.       }
  474.       lex->tok_start=lex->ptr-1; // Start of real token
  475.       state= (enum my_lex_states) state_map[c];
  476.       break;
  477.     case MY_LEX_ESCAPE:
  478.       if (yyGet() == 'N')
  479.       { // Allow N as shortcut for NULL
  480. yylval->lex_str.str=(char*) "\N";
  481. yylval->lex_str.length=2;
  482. return NULL_SYM;
  483.       }
  484.     case MY_LEX_CHAR: // Unknown or single char token
  485.     case MY_LEX_SKIP: // This should not happen
  486.       if (c == '-' && yyPeek() == '-' &&
  487.           (my_isspace(cs,yyPeek2()) || 
  488.            my_iscntrl(cs,yyPeek2())))
  489.       {
  490.         state=MY_LEX_COMMENT;
  491.         break;
  492.       }
  493.       yylval->lex_str.str=(char*) (lex->ptr=lex->tok_start);// Set to first chr
  494.       yylval->lex_str.length=1;
  495.       c=yyGet();
  496.       if (c != ')')
  497. lex->next_state= MY_LEX_START; // Allow signed numbers
  498.       if (c == ',')
  499. lex->tok_start=lex->ptr; // Let tok_start point at next item
  500.       /*
  501.         Check for a placeholder: it should not precede a possible identifier
  502.         because of binlogging: when a placeholder is replaced with
  503.         its value in a query for the binlog, the query must stay
  504.         grammatically correct.
  505.       */
  506.       else if (c == '?' && ((THD*) yythd)->command == COM_PREPARE &&
  507.                !ident_map[yyPeek()])
  508.         return(PARAM_MARKER);
  509.       return((int) c);
  510.     case MY_LEX_IDENT_OR_NCHAR:
  511.       if (yyPeek() != ''')
  512.       { // Found x'hex-number'
  513. state= MY_LEX_IDENT;
  514. break;
  515.       }
  516.       yyGet(); // Skip '
  517.       while ((c = yyGet()) && (c !=''')) ;
  518.       length=(lex->ptr - lex->tok_start); // Length of hexnum+3
  519.       if (c != ''')
  520.       {
  521. return(ABORT_SYM); // Illegal hex constant
  522.       }
  523.       yyGet(); // get_token makes an unget
  524.       yylval->lex_str=get_token(lex,length);
  525.       yylval->lex_str.str+=2; // Skip x'
  526.       yylval->lex_str.length-=3; // Don't count x' and last '
  527.       lex->yytoklen-=3;
  528.       return (NCHAR_STRING);
  529.     case MY_LEX_IDENT_OR_HEX:
  530.       if (yyPeek() == ''')
  531.       { // Found x'hex-number'
  532. state= MY_LEX_HEX_NUMBER;
  533. break;
  534.       }
  535.       /* Fall through */
  536.     case MY_LEX_IDENT_OR_BIN: // TODO: Add binary string handling
  537.     case MY_LEX_IDENT:
  538.       uchar *start;
  539. #if defined(USE_MB) && defined(USE_MB_IDENT)
  540.       if (use_mb(cs))
  541.       {
  542. result_state= IDENT_QUOTED;
  543.         if (my_mbcharlen(cs, yyGetLast()) > 1)
  544.         {
  545.           int l = my_ismbchar(cs,
  546.                               (const char *)lex->ptr-1,
  547.                               (const char *)lex->end_of_query);
  548.           if (l == 0) {
  549.             state = MY_LEX_CHAR;
  550.             continue;
  551.           }
  552.           lex->ptr += l - 1;
  553.         }
  554.         while (ident_map[c=yyGet()])
  555.         {
  556.           if (my_mbcharlen(cs, c) > 1)
  557.           {
  558.             int l;
  559.             if ((l = my_ismbchar(cs,
  560.                               (const char *)lex->ptr-1,
  561.                               (const char *)lex->end_of_query)) == 0)
  562.               break;
  563.             lex->ptr += l-1;
  564.           }
  565.         }
  566.       }
  567.       else
  568. #endif
  569.       {
  570.         for (result_state= c; ident_map[c= yyGet()]; result_state|= c);
  571.         /* If there were non-ASCII characters, mark that we must convert */
  572.         result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
  573.       }
  574.       length= (uint) (lex->ptr - lex->tok_start)-1;
  575.       start= lex->ptr;
  576.       if (lex->ignore_space)
  577.       {
  578.         /*
  579.           If we find a space then this can't be an identifier. We notice this
  580.           below by checking start != lex->ptr.
  581.         */
  582.         for (; state_map[c] == MY_LEX_SKIP ; c= yyGet());
  583.       }
  584.       if (start == lex->ptr && c == '.' && ident_map[yyPeek()])
  585. lex->next_state=MY_LEX_IDENT_SEP;
  586.       else
  587.       { // '(' must follow directly if function
  588. yyUnget();
  589. if ((tokval = find_keyword(lex,length,c == '(')))
  590. {
  591.   lex->next_state= MY_LEX_START; // Allow signed numbers
  592.   return(tokval); // Was keyword
  593. }
  594. yySkip(); // next state does a unget
  595.       }
  596.       yylval->lex_str=get_token(lex,length);
  597.       /* 
  598.          Note: "SELECT _bla AS 'alias'"
  599.          _bla should be considered as a IDENT if charset haven't been found.
  600.          So we don't use MYF(MY_WME) with get_charset_by_csname to avoid 
  601.          producing an error.
  602.       */
  603.       if ((yylval->lex_str.str[0]=='_') && 
  604.           (lex->charset=get_charset_by_csname(yylval->lex_str.str+1,
  605.       MY_CS_PRIMARY,MYF(0))))
  606.         return(UNDERSCORE_CHARSET);
  607.       return(result_state); // IDENT or IDENT_QUOTED
  608.     case MY_LEX_IDENT_SEP: // Found ident and now '.'
  609.       yylval->lex_str.str=(char*) lex->ptr;
  610.       yylval->lex_str.length=1;
  611.       c=yyGet(); // should be '.'
  612.       lex->next_state= MY_LEX_IDENT_START;// Next is an ident (not a keyword)
  613.       if (!ident_map[yyPeek()]) // Probably ` or "
  614. lex->next_state= MY_LEX_START;
  615.       return((int) c);
  616.     case MY_LEX_NUMBER_IDENT: // number or ident which num-start
  617.       while (my_isdigit(cs,(c = yyGet()))) ;
  618.       if (!ident_map[c])
  619.       { // Can't be identifier
  620. state=MY_LEX_INT_OR_REAL;
  621. break;
  622.       }
  623.       if (c == 'e' || c == 'E')
  624.       {
  625. // The following test is written this way to allow numbers of type 1e1
  626. if (my_isdigit(cs,yyPeek()) || 
  627.             (c=(yyGet())) == '+' || c == '-')
  628. { // Allow 1E+10
  629.   if (my_isdigit(cs,yyPeek())) // Number must have digit after sign
  630.   {
  631.     yySkip();
  632.     while (my_isdigit(cs,yyGet())) ;
  633.     yylval->lex_str=get_token(lex,yyLength());
  634.     return(FLOAT_NUM);
  635.   }
  636. }
  637. yyUnget(); /* purecov: inspected */
  638.       }
  639.       else if (c == 'x' && (lex->ptr - lex->tok_start) == 2 &&
  640.   lex->tok_start[0] == '0' )
  641.       { // Varbinary
  642. while (my_isxdigit(cs,(c = yyGet()))) ;
  643. if ((lex->ptr - lex->tok_start) >= 4 && !ident_map[c])
  644. {
  645.   yylval->lex_str=get_token(lex,yyLength());
  646.   yylval->lex_str.str+=2; // Skip 0x
  647.   yylval->lex_str.length-=2;
  648.   lex->yytoklen-=2;
  649.   return (HEX_NUM);
  650. }
  651. yyUnget();
  652.       }
  653.       // fall through
  654.     case MY_LEX_IDENT_START: // We come here after '.'
  655.       result_state= IDENT;
  656. #if defined(USE_MB) && defined(USE_MB_IDENT)
  657.       if (use_mb(cs))
  658.       {
  659. result_state= IDENT_QUOTED;
  660.         while (ident_map[c=yyGet()])
  661.         {
  662.           if (my_mbcharlen(cs, c) > 1)
  663.           {
  664.             int l;
  665.             if ((l = my_ismbchar(cs,
  666.                                  (const char *)lex->ptr-1,
  667.                                  (const char *)lex->end_of_query)) == 0)
  668.               break;
  669.             lex->ptr += l-1;
  670.           }
  671.         }
  672.       }
  673.       else
  674. #endif
  675.       {
  676.         for (result_state=0; ident_map[c= yyGet()]; result_state|= c);
  677.         /* If there were non-ASCII characters, mark that we must convert */
  678.         result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
  679.       }
  680.       if (c == '.' && ident_map[yyPeek()])
  681. lex->next_state=MY_LEX_IDENT_SEP;// Next is '.'
  682.       yylval->lex_str= get_token(lex,yyLength());
  683.       return(result_state);
  684.     case MY_LEX_USER_VARIABLE_DELIMITER: // Found quote char
  685.     {
  686.       uint double_quotes= 0;
  687.       char quote_char= c;                       // Used char
  688.       lex->tok_start=lex->ptr; // Skip first `
  689.       while ((c=yyGet()))
  690.       {
  691. int length;
  692. if ((length= my_mbcharlen(cs, c)) == 1)
  693. {
  694.   if (c == (uchar) NAMES_SEP_CHAR)
  695.     break; /* Old .frm format can't handle this char */
  696.   if (c == quote_char)
  697.   {
  698.     if (yyPeek() != quote_char)
  699.       break;
  700.     c=yyGet();
  701.     double_quotes++;
  702.     continue;
  703.   }
  704. }
  705. #ifdef USE_MB
  706. else if (length < 1)
  707.   break; // Error
  708. lex->ptr+= length-1;
  709. #endif
  710.       }
  711.       if (double_quotes)
  712. yylval->lex_str=get_quoted_token(lex,yyLength() - double_quotes,
  713.  quote_char);
  714.       else
  715. yylval->lex_str=get_token(lex,yyLength());
  716.       if (c == quote_char)
  717. yySkip(); // Skip end `
  718.       lex->next_state= MY_LEX_START;
  719.       return(IDENT_QUOTED);
  720.     }
  721.     case MY_LEX_INT_OR_REAL: // Compleat int or incompleat real
  722.       if (c != '.')
  723.       { // Found complete integer number.
  724. yylval->lex_str=get_token(lex,yyLength());
  725. return int_token(yylval->lex_str.str,yylval->lex_str.length);
  726.       }
  727.       // fall through
  728.     case MY_LEX_REAL: // Incomplete real number
  729.       while (my_isdigit(cs,c = yyGet())) ;
  730.       if (c == 'e' || c == 'E')
  731.       {
  732. c = yyGet();
  733. if (c == '-' || c == '+')
  734.   c = yyGet(); // Skip sign
  735. if (!my_isdigit(cs,c))
  736. { // No digit after sign
  737.   state= MY_LEX_CHAR;
  738.   break;
  739. }
  740. while (my_isdigit(cs,yyGet())) ;
  741. yylval->lex_str=get_token(lex,yyLength());
  742. return(FLOAT_NUM);
  743.       }
  744.       yylval->lex_str=get_token(lex,yyLength());
  745.       return(REAL_NUM);
  746.     case MY_LEX_HEX_NUMBER: // Found x'hexstring'
  747.       yyGet(); // Skip '
  748.       while (my_isxdigit(cs,(c = yyGet()))) ;
  749.       length=(lex->ptr - lex->tok_start); // Length of hexnum+3
  750.       if (!(length & 1) || c != ''')
  751.       {
  752. return(ABORT_SYM); // Illegal hex constant
  753.       }
  754.       yyGet(); // get_token makes an unget
  755.       yylval->lex_str=get_token(lex,length);
  756.       yylval->lex_str.str+=2; // Skip x'
  757.       yylval->lex_str.length-=3; // Don't count x' and last '
  758.       lex->yytoklen-=3;
  759.       return (HEX_NUM);
  760.     case MY_LEX_CMP_OP: // Incomplete comparison operator
  761.       if (state_map[yyPeek()] == MY_LEX_CMP_OP ||
  762.   state_map[yyPeek()] == MY_LEX_LONG_CMP_OP)
  763. yySkip();
  764.       if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
  765.       {
  766. lex->next_state= MY_LEX_START; // Allow signed numbers
  767. return(tokval);
  768.       }
  769.       state = MY_LEX_CHAR; // Something fishy found
  770.       break;
  771.     case MY_LEX_LONG_CMP_OP: // Incomplete comparison operator
  772.       if (state_map[yyPeek()] == MY_LEX_CMP_OP ||
  773.   state_map[yyPeek()] == MY_LEX_LONG_CMP_OP)
  774.       {
  775. yySkip();
  776. if (state_map[yyPeek()] == MY_LEX_CMP_OP)
  777.   yySkip();
  778.       }
  779.       if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
  780.       {
  781. lex->next_state= MY_LEX_START; // Found long op
  782. return(tokval);
  783.       }
  784.       state = MY_LEX_CHAR; // Something fishy found
  785.       break;
  786.     case MY_LEX_BOOL:
  787.       if (c != yyPeek())
  788.       {
  789. state=MY_LEX_CHAR;
  790. break;
  791.       }
  792.       yySkip();
  793.       tokval = find_keyword(lex,2,0); // Is a bool operator
  794.       lex->next_state= MY_LEX_START; // Allow signed numbers
  795.       return(tokval);
  796.     case MY_LEX_STRING_OR_DELIMITER:
  797.       if (((THD *) yythd)->variables.sql_mode & MODE_ANSI_QUOTES)
  798.       {
  799. state= MY_LEX_USER_VARIABLE_DELIMITER;
  800. break;
  801.       }
  802.       /* " used for strings */
  803.     case MY_LEX_STRING: // Incomplete text string
  804.       if (!(yylval->lex_str.str = get_text(lex)))
  805.       {
  806. state= MY_LEX_CHAR; // Read char by char
  807. break;
  808.       }
  809.       yylval->lex_str.length=lex->yytoklen;
  810.       return(TEXT_STRING);
  811.     case MY_LEX_COMMENT: //  Comment
  812.       lex->select_lex.options|= OPTION_FOUND_COMMENT;
  813.       while ((c = yyGet()) != 'n' && c) ;
  814.       yyUnget(); // Safety against eof
  815.       state = MY_LEX_START; // Try again
  816.       break;
  817.     case MY_LEX_LONG_COMMENT: /* Long C comment? */
  818.       if (yyPeek() != '*')
  819.       {
  820. state=MY_LEX_CHAR; // Probable division
  821. break;
  822.       }
  823.       yySkip(); // Skip '*'
  824.       lex->select_lex.options|= OPTION_FOUND_COMMENT;
  825.       if (yyPeek() == '!') // MySQL command in comment
  826.       {
  827. ulong version=MYSQL_VERSION_ID;
  828. yySkip();
  829. state=MY_LEX_START;
  830. if (my_isdigit(cs,yyPeek()))
  831. { // Version number
  832.   version=strtol((char*) lex->ptr,(char**) &lex->ptr,10);
  833. }
  834. if (version <= MYSQL_VERSION_ID)
  835. {
  836.   lex->in_comment=1;
  837.   break;
  838. }
  839.       }
  840.       while (lex->ptr != lex->end_of_query &&
  841.      ((c=yyGet()) != '*' || yyPeek() != '/'))
  842.       {
  843. if (c == 'n')
  844.   lex->yylineno++;
  845.       }
  846.       if (lex->ptr != lex->end_of_query)
  847. yySkip(); // remove last '/'
  848.       state = MY_LEX_START; // Try again
  849.       break;
  850.     case MY_LEX_END_LONG_COMMENT:
  851.       if (lex->in_comment && yyPeek() == '/')
  852.       {
  853. yySkip();
  854. lex->in_comment=0;
  855. state=MY_LEX_START;
  856.       }
  857.       else
  858. state=MY_LEX_CHAR; // Return '*'
  859.       break;
  860.     case MY_LEX_SET_VAR: // Check if ':='
  861.       if (yyPeek() != '=')
  862.       {
  863. state=MY_LEX_CHAR; // Return ':'
  864. break;
  865.       }
  866.       yySkip();
  867.       return (SET_VAR);
  868.     case MY_LEX_SEMICOLON: // optional line terminator
  869.       if (yyPeek())
  870.       {
  871.         THD* thd= (THD*)yythd;
  872.         if ((thd->client_capabilities & CLIENT_MULTI_STATEMENTS) && 
  873.             (thd->command != COM_PREPARE))
  874.         {
  875.   lex->safe_to_cache_query=0;
  876.           lex->found_colon=(char*)lex->ptr;
  877.           thd->server_status |= SERVER_MORE_RESULTS_EXISTS;
  878.           lex->next_state=MY_LEX_END;
  879.           return(END_OF_INPUT);
  880.         }
  881.         else
  882.     state=MY_LEX_CHAR; // Return ';'
  883. break;
  884.       }
  885.       /* fall true */
  886.     case MY_LEX_EOL:
  887.       if (lex->ptr >= lex->end_of_query)
  888.       {
  889. lex->next_state=MY_LEX_END; // Mark for next loop
  890. return(END_OF_INPUT);
  891.       }
  892.       state=MY_LEX_CHAR;
  893.       break;
  894.     case MY_LEX_END:
  895.       lex->next_state=MY_LEX_END;
  896.       return(0); // We found end of input last time
  897.       
  898.       /* Actually real shouldn't start with . but allow them anyhow */
  899.     case MY_LEX_REAL_OR_POINT:
  900.       if (my_isdigit(cs,yyPeek()))
  901. state = MY_LEX_REAL; // Real
  902.       else
  903.       {
  904. state= MY_LEX_IDENT_SEP; // return '.'
  905. yyUnget(); // Put back '.'
  906.       }
  907.       break;
  908.     case MY_LEX_USER_END: // end '@' of user@hostname
  909.       switch (state_map[yyPeek()]) {
  910.       case MY_LEX_STRING:
  911.       case MY_LEX_USER_VARIABLE_DELIMITER:
  912.       case MY_LEX_STRING_OR_DELIMITER:
  913. break;
  914.       case MY_LEX_USER_END:
  915. lex->next_state=MY_LEX_SYSTEM_VAR;
  916. break;
  917.       default:
  918. lex->next_state=MY_LEX_HOSTNAME;
  919. break;
  920.       }
  921.       yylval->lex_str.str=(char*) lex->ptr;
  922.       yylval->lex_str.length=1;
  923.       return((int) '@');
  924.     case MY_LEX_HOSTNAME: // end '@' of user@hostname
  925.       for (c=yyGet() ; 
  926.    my_isalnum(cs,c) || c == '.' || c == '_' ||  c == '$';
  927.    c= yyGet()) ;
  928.       yylval->lex_str=get_token(lex,yyLength());
  929.       return(LEX_HOSTNAME);
  930.     case MY_LEX_SYSTEM_VAR:
  931.       yylval->lex_str.str=(char*) lex->ptr;
  932.       yylval->lex_str.length=1;
  933.       yySkip(); // Skip '@'
  934.       lex->next_state= (state_map[yyPeek()] ==
  935. MY_LEX_USER_VARIABLE_DELIMITER ?
  936. MY_LEX_OPERATOR_OR_IDENT :
  937. MY_LEX_IDENT_OR_KEYWORD);
  938.       return((int) '@');
  939.     case MY_LEX_IDENT_OR_KEYWORD:
  940.       /*
  941. We come here when we have found two '@' in a row.
  942. We should now be able to handle:
  943. [(global | local | session) .]variable_name
  944.       */
  945.       
  946.       for (result_state= 0; ident_map[c= yyGet()]; result_state|= c);
  947.       /* If there were non-ASCII characters, mark that we must convert */
  948.       result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
  949.       
  950.       if (c == '.')
  951. lex->next_state=MY_LEX_IDENT_SEP;
  952.       length= (uint) (lex->ptr - lex->tok_start)-1;
  953.       if ((tokval= find_keyword(lex,length,0)))
  954.       {
  955. yyUnget(); // Put back 'c'
  956. return(tokval); // Was keyword
  957.       }
  958.       yylval->lex_str=get_token(lex,length);
  959.       return(result_state);
  960.     }
  961.   }
  962. }
  963. /*
  964.   st_select_lex structures initialisations
  965. */
  966. void st_select_lex_node::init_query()
  967. {
  968.   options= 0;
  969.   linkage= UNSPECIFIED_TYPE;
  970.   no_error= no_table_names_allowed= 0;
  971.   uncacheable= 0;
  972. }
  973. void st_select_lex_node::init_select()
  974. {
  975. }
  976. void st_select_lex_unit::init_query()
  977. {
  978.   st_select_lex_node::init_query();
  979.   linkage= GLOBAL_OPTIONS_TYPE;
  980.   global_parameters= first_select();
  981.   select_limit_cnt= HA_POS_ERROR;
  982.   offset_limit_cnt= 0;
  983.   union_distinct= 0;
  984.   prepared= optimized= executed= 0;
  985.   item= 0;
  986.   union_result= 0;
  987.   table= 0;
  988.   fake_select_lex= 0;
  989.   cleaned= 0;
  990.   item_list.empty();
  991.   describe= 0;
  992. }
  993. void st_select_lex::init_query()
  994. {
  995.   st_select_lex_node::init_query();
  996.   table_list.empty();
  997.   item_list.empty();
  998.   join= 0;
  999.   where= 0;
  1000.   olap= UNSPECIFIED_OLAP_TYPE;
  1001.   having_fix_field= 0;
  1002.   resolve_mode= NOMATTER_MODE;
  1003.   cond_count= with_wild= 0;
  1004.   ref_pointer_array= 0;
  1005.   select_n_having_items= 0;
  1006.   prep_where= 0;
  1007.   subquery_in_having= explicit_limit= 0;
  1008.   parsing_place= NO_MATTER;
  1009.   is_item_list_lookup= 0;
  1010. }
  1011. void st_select_lex::init_select()
  1012. {
  1013.   st_select_lex_node::init_select();
  1014.   group_list.empty();
  1015.   type= db= db1= table1= db2= table2= 0;
  1016.   having= 0;
  1017.   use_index_ptr= ignore_index_ptr= 0;
  1018.   table_join_options= 0;
  1019.   in_sum_expr= with_wild= 0;
  1020.   options= 0;
  1021.   braces= 0;
  1022.   when_list.empty();
  1023.   expr_list.empty();
  1024.   interval_list.empty();
  1025.   use_index.empty();
  1026.   ftfunc_list_alloc.empty();
  1027.   ftfunc_list= &ftfunc_list_alloc;
  1028.   linkage= UNSPECIFIED_TYPE;
  1029.   order_list.elements= 0;
  1030.   order_list.first= 0;
  1031.   order_list.next= (byte**) &order_list.first;
  1032.   select_limit= HA_POS_ERROR;
  1033.   offset_limit= 0;
  1034.   with_sum_func= 0;
  1035. }
  1036. /*
  1037.   st_select_lex structures linking
  1038. */
  1039. /* include on level down */
  1040. void st_select_lex_node::include_down(st_select_lex_node *upper)
  1041. {
  1042.   if ((next= upper->slave))
  1043.     next->prev= &next;
  1044.   prev= &upper->slave;
  1045.   upper->slave= this;
  1046.   master= upper;
  1047.   slave= 0;
  1048. }
  1049. /*
  1050.   include on level down (but do not link)
  1051.   SYNOPSYS
  1052.     st_select_lex_node::include_standalone()
  1053.     upper - reference on node underr which this node should be included
  1054.     ref - references on reference on this node
  1055. */
  1056. void st_select_lex_node::include_standalone(st_select_lex_node *upper,
  1057.     st_select_lex_node **ref)
  1058. {
  1059.   next= 0;
  1060.   prev= ref;
  1061.   master= upper;
  1062.   slave= 0;
  1063. }
  1064. /* include neighbour (on same level) */
  1065. void st_select_lex_node::include_neighbour(st_select_lex_node *before)
  1066. {
  1067.   if ((next= before->next))
  1068.     next->prev= &next;
  1069.   prev= &before->next;
  1070.   before->next= this;
  1071.   master= before->master;
  1072.   slave= 0;
  1073. }
  1074. /* including in global SELECT_LEX list */
  1075. void st_select_lex_node::include_global(st_select_lex_node **plink)
  1076. {
  1077.   if ((link_next= *plink))
  1078.     link_next->link_prev= &link_next;
  1079.   link_prev= plink;
  1080.   *plink= this;
  1081. }
  1082. //excluding from global list (internal function)
  1083. void st_select_lex_node::fast_exclude()
  1084. {
  1085.   if (link_prev)
  1086.   {
  1087.     if ((*link_prev= link_next))
  1088.       link_next->link_prev= link_prev;
  1089.   }
  1090.   // Remove slave structure
  1091.   for (; slave; slave= slave->next)
  1092.     slave->fast_exclude();
  1093.   
  1094. }
  1095. /*
  1096.   excluding select_lex structure (except first (first select can't be
  1097.   deleted, because it is most upper select))
  1098. */
  1099. void st_select_lex_node::exclude()
  1100. {
  1101.   //exclude from global list
  1102.   fast_exclude();
  1103.   //exclude from other structures
  1104.   if ((*prev= next))
  1105.     next->prev= prev;
  1106.   /* 
  1107.      We do not need following statements, because prev pointer of first 
  1108.      list element point to master->slave
  1109.      if (master->slave == this)
  1110.        master->slave= next;
  1111.   */
  1112. }
  1113. /*
  1114.   Exclude level of current unit from tree of SELECTs
  1115.   SYNOPSYS
  1116.     st_select_lex_unit::exclude_level()
  1117.   NOTE: units which belong to current will be brought up on level of
  1118.   currernt unit 
  1119. */
  1120. void st_select_lex_unit::exclude_level()
  1121. {
  1122.   SELECT_LEX_UNIT *units= 0, **units_last= &units;
  1123.   for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
  1124.   {
  1125.     // unlink current level from global SELECTs list
  1126.     if (sl->link_prev && (*sl->link_prev= sl->link_next))
  1127.       sl->link_next->link_prev= sl->link_prev;
  1128.     // bring up underlay levels
  1129.     SELECT_LEX_UNIT **last= 0;
  1130.     for (SELECT_LEX_UNIT *u= sl->first_inner_unit(); u; u= u->next_unit())
  1131.     {
  1132.       u->master= master;
  1133.       last= (SELECT_LEX_UNIT**)&(u->next);
  1134.     }
  1135.     if (last)
  1136.     {
  1137.       (*units_last)= sl->first_inner_unit();
  1138.       units_last= last;
  1139.     }
  1140.   }
  1141.   if (units)
  1142.   {
  1143.     // include brought up levels in place of current
  1144.     (*prev)= units;
  1145.     (*units_last)= (SELECT_LEX_UNIT*)next;
  1146.     if (next)
  1147.       next->prev= (SELECT_LEX_NODE**)units_last;
  1148.     units->prev= prev;
  1149.   }
  1150.   else
  1151.   {
  1152.     // exclude currect unit from list of nodes
  1153.     (*prev)= next;
  1154.     if (next)
  1155.       next->prev= prev;
  1156.   }
  1157. }
  1158. /*
  1159.   Exclude subtree of current unit from tree of SELECTs
  1160.   SYNOPSYS
  1161.     st_select_lex_unit::exclude_tree()
  1162. */
  1163. void st_select_lex_unit::exclude_tree()
  1164. {
  1165.   for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
  1166.   {
  1167.     // unlink current level from global SELECTs list
  1168.     if (sl->link_prev && (*sl->link_prev= sl->link_next))
  1169.       sl->link_next->link_prev= sl->link_prev;
  1170.     // unlink underlay levels
  1171.     for (SELECT_LEX_UNIT *u= sl->first_inner_unit(); u; u= u->next_unit())
  1172.     {
  1173.       u->exclude_level();
  1174.     }
  1175.   }
  1176.   // exclude currect unit from list of nodes
  1177.   (*prev)= next;
  1178.   if (next)
  1179.     next->prev= prev;
  1180. }
  1181. /*
  1182.   st_select_lex_node::mark_as_dependent mark all st_select_lex struct from 
  1183.   this to 'last' as dependent
  1184.   SYNOPSIS
  1185.     last - pointer to last st_select_lex struct, before wich all 
  1186.            st_select_lex have to be marked as dependent
  1187.   NOTE
  1188.     'last' should be reachable from this st_select_lex_node
  1189. */
  1190. void st_select_lex::mark_as_dependent(SELECT_LEX *last)
  1191. {
  1192.   /*
  1193.     Mark all selects from resolved to 1 before select where was
  1194.     found table as depended (of select where was found table)
  1195.   */
  1196.   for (SELECT_LEX *s= this;
  1197.        s && s != last;
  1198.        s= s->outer_select())
  1199.     if (!(s->uncacheable & UNCACHEABLE_DEPENDENT))
  1200.     {
  1201.       // Select is dependent of outer select
  1202.       s->uncacheable|= UNCACHEABLE_DEPENDENT;
  1203.       SELECT_LEX_UNIT *munit= s->master_unit();
  1204.       munit->uncacheable|= UNCACHEABLE_DEPENDENT;
  1205.     }
  1206. }
  1207. bool st_select_lex_node::set_braces(bool value)      { return 1; }
  1208. bool st_select_lex_node::inc_in_sum_expr()           { return 1; }
  1209. uint st_select_lex_node::get_in_sum_expr()           { return 0; }
  1210. TABLE_LIST* st_select_lex_node::get_table_list()     { return 0; }
  1211. List<Item>* st_select_lex_node::get_item_list()      { return 0; }
  1212. List<String>* st_select_lex_node::get_use_index()    { return 0; }
  1213. List<String>* st_select_lex_node::get_ignore_index() { return 0; }
  1214. TABLE_LIST *st_select_lex_node::add_table_to_list(THD *thd, Table_ident *table,
  1215.   LEX_STRING *alias,
  1216.   ulong table_join_options,
  1217.   thr_lock_type flags,
  1218.   List<String> *use_index,
  1219.   List<String> *ignore_index,
  1220.                                                   LEX_STRING *option)
  1221. {
  1222.   return 0;
  1223. }
  1224. ulong st_select_lex_node::get_table_join_options()
  1225. {
  1226.   return 0;
  1227. }
  1228. /*
  1229.   prohibit using LIMIT clause
  1230. */
  1231. bool st_select_lex::test_limit()
  1232. {
  1233.   if (select_limit != HA_POS_ERROR)
  1234.   {
  1235.     my_error(ER_NOT_SUPPORTED_YET, MYF(0),
  1236.          "LIMIT & IN/ALL/ANY/SOME subquery");
  1237.     return(1);
  1238.   }
  1239.   // We need only 1 row to determinate existence
  1240.   select_limit= 1;
  1241.   // no sense in ORDER BY without LIMIT
  1242.   order_list.empty();
  1243.   return(0);
  1244. }
  1245. /*  
  1246.   Interface method of table list creation for query
  1247.   
  1248.   SYNOPSIS
  1249.     st_select_lex_unit::create_total_list()
  1250.     thd            THD pointer
  1251.     result         pointer on result list of tables pointer
  1252.     check_derived  force derived table chacking (used for creating 
  1253.                    table list for derived query)
  1254.   DESCRIPTION
  1255.     This is used for UNION & subselect to create a new table list of all used 
  1256.     tables.
  1257.     The table_list->table entry in all used tables are set to point
  1258.     to the entries in this list.
  1259.   RETURN
  1260.     0 - OK
  1261.     !0 - error
  1262. */
  1263. bool st_select_lex_unit::create_total_list(THD *thd_arg, st_lex *lex,
  1264.    TABLE_LIST **result_arg)
  1265. {
  1266.   *result_arg= 0;
  1267.   if (!(res= create_total_list_n_last_return(thd_arg, lex, &result_arg)))
  1268.   {
  1269.     /*
  1270.       If time zone tables were used implicitly in statement we should add
  1271.       them to global table list.
  1272.     */
  1273.     if (lex->time_zone_tables_used)
  1274.     {
  1275.       /*
  1276.         Altough we are modifying lex data, it won't raise any problem in
  1277.         case when this lex belongs to some prepared statement or stored
  1278.         procedure: such modification does not change any invariants imposed
  1279.         by requirement to reuse the same lex for multiple executions.
  1280.       */
  1281.       if ((lex->time_zone_tables_used= my_tz_get_table_list(thd)) !=
  1282.           &fake_time_zone_tables_list)
  1283.       {
  1284.         *result_arg= lex->time_zone_tables_used;
  1285.       }
  1286.       else
  1287.       {
  1288.         send_error(thd, 0);
  1289.         res= 1;
  1290.       }
  1291.     }
  1292.   }
  1293.   return res;
  1294. }
  1295. /*  
  1296.   Table list creation for query
  1297.   
  1298.   SYNOPSIS
  1299.     st_select_lex_unit::create_total_list()
  1300.     thd            THD pointer
  1301.     lex            pointer on LEX stricture
  1302.     result         pointer on pointer on result list of tables pointer
  1303.   DESCRIPTION
  1304.     This is used for UNION & subselect to create a new table list of all used 
  1305.     tables.
  1306.     The table_list->table_list in all tables of global list are set to point
  1307.     to the local SELECT_LEX entries.
  1308.   RETURN
  1309.     0 - OK
  1310.     !0 - error
  1311. */
  1312. bool st_select_lex_unit::
  1313. create_total_list_n_last_return(THD *thd_arg,
  1314. st_lex *lex,
  1315. TABLE_LIST ***result_arg)
  1316. {
  1317.   TABLE_LIST *slave_list_first=0, **slave_list_last= &slave_list_first;
  1318.   TABLE_LIST **new_table_list= *result_arg, *aux;
  1319.   SELECT_LEX *sl= (SELECT_LEX*)slave;
  1320.   
  1321.   /*
  1322.     iterate all inner selects + fake_select (if exists),
  1323.     fake_select->next_select() always is 0
  1324.   */
  1325.   for (;
  1326.        sl;
  1327.        sl= (sl->next_select() ?
  1328.     sl->next_select() :
  1329.     (sl == fake_select_lex ?
  1330.      0 :
  1331.      fake_select_lex)))
  1332.   {
  1333.     // check usage of ORDER BY in union
  1334.     if (sl->order_list.first && sl->next_select() && !sl->braces &&
  1335. sl->linkage != GLOBAL_OPTIONS_TYPE)
  1336.     {
  1337.       net_printf(thd_arg,ER_WRONG_USAGE,"UNION","ORDER BY");
  1338.       return 1;
  1339.     }
  1340.     for (SELECT_LEX_UNIT *inner=  sl->first_inner_unit();
  1341.  inner;
  1342.  inner= inner->next_unit())
  1343.     {
  1344.       if (inner->create_total_list_n_last_return(thd, lex,
  1345.  &slave_list_last))
  1346. return 1;
  1347.     }
  1348.     if ((aux= (TABLE_LIST*) sl->table_list.first))
  1349.     {
  1350.       TABLE_LIST *next_table;
  1351.       for (; aux; aux= next_table)
  1352.       {
  1353. TABLE_LIST *cursor;
  1354. next_table= aux->next;
  1355. /* Add to the total table list */
  1356. if (!(cursor= (TABLE_LIST *) thd->memdup((char*) aux,
  1357.  sizeof(*aux))))
  1358. {
  1359.   send_error(thd,0);
  1360.   return 1;
  1361. }
  1362. *new_table_list= cursor;
  1363. cursor->table_list= aux;
  1364. new_table_list= &cursor->next;
  1365. *new_table_list= 0; // end result list
  1366. aux->table_list= cursor;
  1367.       }
  1368.     }
  1369.   }
  1370.   if (slave_list_first)
  1371.   {
  1372.     *new_table_list= slave_list_first;
  1373.     new_table_list= slave_list_last;
  1374.   }
  1375.   *result_arg= new_table_list;
  1376.   return 0;
  1377. }
  1378. st_select_lex_unit* st_select_lex_unit::master_unit()
  1379. {
  1380.     return this;
  1381. }
  1382. st_select_lex* st_select_lex_unit::outer_select()
  1383. {
  1384.   return (st_select_lex*) master;
  1385. }
  1386. bool st_select_lex::add_order_to_list(THD *thd, Item *item, bool asc)
  1387. {
  1388.   return add_to_list(thd, order_list, item, asc);
  1389. }
  1390. bool st_select_lex::add_item_to_list(THD *thd, Item *item)
  1391. {
  1392.   return item_list.push_back(item);
  1393. }
  1394. bool st_select_lex::add_group_to_list(THD *thd, Item *item, bool asc)
  1395. {
  1396.   return add_to_list(thd, group_list, item, asc);
  1397. }
  1398. bool st_select_lex::add_ftfunc_to_list(Item_func_match *func)
  1399. {
  1400.   return !func || ftfunc_list->push_back(func); // end of memory?
  1401. }
  1402. st_select_lex_unit* st_select_lex::master_unit()
  1403. {
  1404.   return (st_select_lex_unit*) master;
  1405. }
  1406. st_select_lex* st_select_lex::outer_select()
  1407. {
  1408.   return (st_select_lex*) master->get_master();
  1409. }
  1410. bool st_select_lex::set_braces(bool value)
  1411. {
  1412.   braces= value;
  1413.   return 0; 
  1414. }
  1415. bool st_select_lex::inc_in_sum_expr()
  1416. {
  1417.   in_sum_expr++;
  1418.   return 0;
  1419. }
  1420. uint st_select_lex::get_in_sum_expr()
  1421. {
  1422.   return in_sum_expr;
  1423. }
  1424. TABLE_LIST* st_select_lex::get_table_list()
  1425. {
  1426.   return (TABLE_LIST*) table_list.first;
  1427. }
  1428. List<Item>* st_select_lex::get_item_list()
  1429. {
  1430.   return &item_list;
  1431. }
  1432. List<String>* st_select_lex::get_use_index()
  1433. {
  1434.   return use_index_ptr;
  1435. }
  1436. List<String>* st_select_lex::get_ignore_index()
  1437. {
  1438.   return ignore_index_ptr;
  1439. }
  1440. ulong st_select_lex::get_table_join_options()
  1441. {
  1442.   return table_join_options;
  1443. }
  1444. bool st_select_lex::setup_ref_array(THD *thd, uint order_group_num)
  1445. {
  1446.   if (ref_pointer_array)
  1447.     return 0;
  1448.   /*
  1449.     We have to create array in prepared statement memory if it is
  1450.     prepared statement
  1451.   */
  1452.   Item_arena *arena= thd->current_arena;
  1453.   return (ref_pointer_array= 
  1454.   (Item **)arena->alloc(sizeof(Item*) *
  1455.        (item_list.elements +
  1456. select_n_having_items +
  1457. order_group_num)* 5)) == 0;
  1458. }
  1459. /*
  1460.   Find db.table which will be updated in this unit
  1461.   SYNOPSIS
  1462.     st_select_lex_unit::check_updateable()
  1463.     db - data base name
  1464.     table - real table name
  1465.   RETURN
  1466.     1 - found
  1467.     0 - OK (table did not found)
  1468. */
  1469. bool st_select_lex_unit::check_updateable(char *db, char *table)
  1470. {
  1471.   for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
  1472.     if (sl->check_updateable(db, table))
  1473.       return 1;
  1474.   return 0;
  1475. }
  1476. /*
  1477.   Find db.table which will be updated in this select and
  1478.   underlying ones (except derived tables)
  1479.   SYNOPSIS
  1480.     st_select_lex::check_updateable()
  1481.     db - data base name
  1482.     table - real table name
  1483.   RETURN
  1484.     1 - found
  1485.     0 - OK (table did not found)
  1486. */
  1487. bool st_select_lex::check_updateable(char *db, char *table)
  1488. {
  1489.   if (find_real_table_in_list(get_table_list(), db, table))
  1490.     return 1;
  1491.   return check_updateable_in_subqueries(db, table);
  1492. }
  1493. /*
  1494.    Find db.table which will be updated in underlying subqueries
  1495.    SYNOPSIS
  1496.     st_select_lex::check_updateable_in_subqueries()
  1497.     db - data base name
  1498.     table - real table name
  1499.   RETURN
  1500.     1 - found
  1501.     0 - OK (table did not found)
  1502. */
  1503. bool st_select_lex::check_updateable_in_subqueries(char *db, char *table)
  1504. {
  1505.   for (SELECT_LEX_UNIT *un= first_inner_unit();
  1506.        un;
  1507.        un= un->next_unit())
  1508.   {
  1509.     if (un->first_select()->linkage != DERIVED_TABLE_TYPE &&
  1510. un->check_updateable(db, table))
  1511.       return 1;
  1512.   }
  1513.   return 0;
  1514. }
  1515. void st_select_lex_unit::print(String *str)
  1516. {
  1517.   for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
  1518.   {
  1519.     if (sl != first_select())
  1520.     {
  1521.       str->append(" union ", 7);
  1522.       if (!union_distinct)
  1523. str->append("all ", 4);
  1524.     }
  1525.     if (sl->braces)
  1526.       str->append('(');
  1527.     sl->print(thd, str);
  1528.     if (sl->braces)
  1529.       str->append(')');
  1530.   }
  1531.   if (fake_select_lex == global_parameters)
  1532.   {
  1533.     if (fake_select_lex->order_list.elements)
  1534.     {
  1535.       str->append(" order by ", 10);
  1536.       fake_select_lex->print_order(str,
  1537.    (ORDER *) fake_select_lex->
  1538.    order_list.first);
  1539.     }
  1540.     fake_select_lex->print_limit(thd, str);
  1541.   }
  1542. }
  1543. void st_select_lex::print_order(String *str, ORDER *order)
  1544. {
  1545.   for (; order; order= order->next)
  1546.   {
  1547.     (*order->item)->print(str);
  1548.     if (!order->asc)
  1549.       str->append(" desc", 5);
  1550.     if (order->next)
  1551.       str->append(',');
  1552.   }
  1553. }
  1554.  
  1555. void st_select_lex::print_limit(THD *thd, String *str)
  1556. {
  1557.   if (explicit_limit)
  1558.   {
  1559.     str->append(" limit ", 7);
  1560.     char buff[20];
  1561.     // latin1 is good enough for numbers
  1562.     String st(buff, sizeof(buff),  &my_charset_latin1);
  1563.     st.set((ulonglong)select_limit, &my_charset_latin1);
  1564.     str->append(st);
  1565.     if (offset_limit)
  1566.     {
  1567.       str->append(',');
  1568.       st.set((ulonglong)select_limit, &my_charset_latin1);
  1569.       str->append(st);
  1570.     }
  1571.   }
  1572. }
  1573. st_lex::st_lex()
  1574.   :result(0)
  1575. {}
  1576. /*
  1577.   Unlink first table from global table list and first table from outer select
  1578.   list (lex->select_lex)
  1579.   SYNOPSIS
  1580.     unlink_first_table()
  1581.     tables Global table list
  1582.     global_first Save first global table here
  1583.     local_first Save first local table here
  1584.   NOTES
  1585.     This function assumes that outer select list is non-empty.
  1586.   RETURN
  1587.     global list without first table
  1588. */
  1589. TABLE_LIST *st_lex::unlink_first_table(TABLE_LIST *tables,
  1590.        TABLE_LIST **global_first,
  1591.        TABLE_LIST **local_first)
  1592. {
  1593.   DBUG_ASSERT(select_lex.table_list.first != 0);
  1594.   /*
  1595.     Save pointers to first elements of global table list and list
  1596.     of tables used in outer select. It does not harm if these lists
  1597.     are the same.
  1598.   */
  1599.   *global_first= tables;
  1600.   *local_first= (TABLE_LIST*)select_lex.table_list.first;
  1601.   /* Exclude first elements from these lists */
  1602.   select_lex.table_list.first= (byte*) (*local_first)->next;
  1603.   tables= tables->next;
  1604.   (*global_first)->next= 0;
  1605.   return tables;
  1606. }
  1607. /*
  1608.   Link table which was unlinked with unlink_first_table() back.
  1609.   SYNOPSIS
  1610.     link_first_table_back()
  1611.     tables Global table list
  1612.     global_first Saved first global table
  1613.     local_first Saved first local table
  1614.   RETURN
  1615.     global list
  1616. */
  1617. TABLE_LIST *st_lex::link_first_table_back(TABLE_LIST *tables,
  1618.   TABLE_LIST *global_first,
  1619.   TABLE_LIST *local_first)
  1620. {
  1621.   global_first->next= tables;
  1622.   select_lex.table_list.first= (byte*) local_first;
  1623.   return global_first;
  1624. }
  1625. /*
  1626.   There are st_select_lex::add_table_to_list & 
  1627.   st_select_lex::set_lock_for_tables are in sql_parse.cc
  1628.   st_select_lex::print is in sql_select.h
  1629.   st_select_lex_unit::prepare, st_select_lex_unit::exec,
  1630.   st_select_lex_unit::cleanup, st_select_lex_unit::reinit_exec_mechanism,
  1631.   st_select_lex_unit::change_result
  1632.   are in sql_union.cc
  1633. */