sql_lex.cc 54.1 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
unknown's avatar
unknown committed
2

unknown's avatar
unknown committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
unknown's avatar
unknown committed
7

unknown's avatar
unknown committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
unknown's avatar
unknown committed
12

unknown's avatar
unknown committed
13 14 15 16 17 18 19
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


/* A lexical scanner on a temporary buffer with a yacc interface */

20
#define MYSQL_LEX 1
unknown's avatar
unknown committed
21 22 23 24
#include "mysql_priv.h"
#include "item_create.h"
#include <m_ctype.h>
#include <hash.h>
25 26
#include "sp.h"
#include "sp_head.h"
unknown's avatar
unknown committed
27

28 29 30 31
/*
  We are using pointer to this variable for distinguishing between assignment
  to NEW row field (when parsing trigger definition) and structured variable.
*/
unknown's avatar
unknown committed
32 33

sys_var *trg_new_row_fake_var= (sys_var*) 0x01;
34

unknown's avatar
unknown committed
35 36 37 38 39 40 41 42 43 44 45 46
/* Macros to look like lex */

#define yyGet()		*(lex->ptr++)
#define yyGetLast()	lex->ptr[-1]
#define yyPeek()	lex->ptr[0]
#define yyPeek2()	lex->ptr[1]
#define yyUnget()	lex->ptr--
#define yySkip()	lex->ptr++
#define yyLength()	((uint) (lex->ptr - lex->tok_start)-1)

pthread_key(LEX*,THR_LEX);

47
/* Longest standard keyword name */
unknown's avatar
unknown committed
48 49
#define TOCK_NAME_LENGTH 24

50 51
/*
  The following data is based on the latin1 character set, and is only
unknown's avatar
unknown committed
52 53 54
  used when comparing keywords
*/

unknown's avatar
unknown committed
55 56
static uchar to_upper_lex[]=
{
unknown's avatar
unknown committed
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
    0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15,
   16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
   32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47,
   48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63,
   64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
   80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95,
   96, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
   80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90,123,124,125,126,127,
  128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,
  144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,
  160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,
  176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,
  192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,
  208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,
  192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,
  208,209,210,211,212,213,214,247,216,217,218,219,220,221,222,255
};

75

unknown's avatar
unknown committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
inline int lex_casecmp(const char *s, const char *t, uint len)
{
  while (len-- != 0 &&
	 to_upper_lex[(uchar) *s++] == to_upper_lex[(uchar) *t++]) ;
  return (int) len+1;
}

#include "lex_hash.h"


void lex_init(void)
{
  uint i;
  DBUG_ENTER("lex_init");
  for (i=0 ; i < array_elements(symbols) ; i++)
    symbols[i].length=(uchar) strlen(symbols[i].name);
  for (i=0 ; i < array_elements(sql_functions) ; i++)
    sql_functions[i].length=(uchar) strlen(sql_functions[i].name);

  VOID(pthread_key_create(&THR_LEX,NULL));

  DBUG_VOID_RETURN;
}


void lex_free(void)
{					// Call this when daemon ends
  DBUG_ENTER("lex_free");
  DBUG_VOID_RETURN;
}


108 109 110 111 112 113
/*
  This is called before every query that is to be parsed.
  Because of this, it's critical to not do too much things here.
  (We already do too much here)
*/

unknown's avatar
unknown committed
114
void lex_start(THD *thd, const uchar *buf, uint length)
unknown's avatar
unknown committed
115
{
unknown's avatar
unknown committed
116
  LEX *lex= thd->lex;
unknown's avatar
unknown committed
117 118 119 120 121 122
  DBUG_ENTER("lex_start");

  lex->thd= lex->unit.thd= thd;
  lex->buf= lex->ptr= buf;
  lex->end_of_query= buf+length;

unknown's avatar
unknown committed
123
  lex->context_stack.empty();
124 125
  lex->unit.init_query();
  lex->unit.init_select();
unknown's avatar
unknown committed
126 127
  /* 'parent_lex' is used in init_query() so it must be before it. */
  lex->select_lex.parent_lex= lex;
128 129
  lex->select_lex.init_query();
  lex->value_list.empty();
unknown's avatar
unknown committed
130
  lex->update_list.empty();
131
  lex->param_list.empty();
unknown's avatar
unknown committed
132
  lex->view_list.empty();
133
  lex->prepared_stmt_params.empty();
134 135 136 137 138 139 140 141 142 143
  lex->unit.next= lex->unit.master=
    lex->unit.link_next= lex->unit.return_to= 0;
  lex->unit.prev= lex->unit.link_prev= 0;
  lex->unit.slave= lex->unit.global_parameters= lex->current_select=
    lex->all_selects_list= &lex->select_lex;
  lex->select_lex.master= &lex->unit;
  lex->select_lex.prev= &lex->unit.slave;
  lex->select_lex.link_next= lex->select_lex.slave= lex->select_lex.next= 0;
  lex->select_lex.link_prev= (st_select_lex_node**)&(lex->all_selects_list);
  lex->select_lex.options= 0;
unknown's avatar
unknown committed
144 145
  lex->select_lex.init_order();
  lex->select_lex.group_list.empty();
146
  lex->describe= 0;
unknown's avatar
unknown committed
147
  lex->subqueries= FALSE;
unknown's avatar
unknown committed
148
  lex->view_prepare_mode= FALSE;
149
  lex->stmt_prepare_mode= FALSE;
unknown's avatar
unknown committed
150
  lex->derived_tables= 0;
151
  lex->lock_option= TL_READ;
unknown's avatar
unknown committed
152
  lex->found_semicolon= 0;
153 154
  lex->safe_to_cache_query= 1;
  lex->time_zone_tables_used= 0;
155
  lex->leaf_tables_insert= lex->query_tables= 0;
unknown's avatar
unknown committed
156 157 158
  lex->query_tables_last= &lex->query_tables;
  lex->variables_used= 0;
  lex->empty_field_list_on_rset= 0;
159
  lex->select_lex.select_number= 1;
160
  lex->next_state=MY_LEX_START;
unknown's avatar
unknown committed
161
  lex->yylineno = 1;
unknown's avatar
unknown committed
162
  lex->in_comment=0;
unknown's avatar
unknown committed
163
  lex->length=0;
164
  lex->part_info= 0;
unknown's avatar
unknown committed
165 166
  lex->select_lex.in_sum_expr=0;
  lex->select_lex.expr_list.empty();
unknown's avatar
merging  
unknown committed
167
  lex->select_lex.ftfunc_list_alloc.empty();
168
  lex->select_lex.ftfunc_list= &lex->select_lex.ftfunc_list_alloc;
unknown's avatar
unknown committed
169 170
  lex->select_lex.group_list.empty();
  lex->select_lex.order_list.empty();
unknown's avatar
unknown committed
171
  lex->current_select= &lex->select_lex;
unknown's avatar
unknown committed
172
  lex->yacc_yyss=lex->yacc_yyvs=0;
173
  lex->ignore_space=test(thd->variables.sql_mode & MODE_IGNORE_SPACE);
174
  lex->sql_command= lex->orig_sql_command= SQLCOM_END;
175
  lex->duplicates= DUP_ERROR;
176
  lex->ignore= 0;
177 178
  lex->sphead= NULL;
  lex->spcont= NULL;
unknown's avatar
unknown committed
179
  lex->proc_list.first= 0;
180
  lex->query_tables_own_last= 0;
unknown's avatar
unknown committed
181 182
  lex->escape_used= lex->et_compile_phase= FALSE;

unknown's avatar
unknown committed
183
  lex->name= 0;
unknown's avatar
unknown committed
184
  lex->et= NULL;
185

186 187 188
  if (lex->sroutines.records)
    my_hash_reset(&lex->sroutines);
  lex->sroutines_list.empty();
189 190
  lex->sroutines_list_own_last= lex->sroutines_list.next;
  lex->sroutines_list_own_elements= 0;
unknown's avatar
unknown committed
191 192 193
  lex->nest_level=0 ;
  lex->allow_sum_func= 0;
  lex->in_sum_func= NULL;
unknown's avatar
unknown committed
194
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
195 196 197 198 199 200 201 202 203 204 205
}

void lex_end(LEX *lex)
{
  x_free(lex->yacc_yyss);
  x_free(lex->yacc_yyvs);
}


static int find_keyword(LEX *lex, uint len, bool function)
{
unknown's avatar
unknown committed
206
  const uchar *tok=lex->tok_start;
unknown's avatar
unknown committed
207

unknown's avatar
unknown committed
208
  SYMBOL *symbol= get_hash_symbol((const char *)tok,len,function);
unknown's avatar
unknown committed
209 210 211 212 213
  if (symbol)
  {
    lex->yylval->symbol.symbol=symbol;
    lex->yylval->symbol.str= (char*) tok;
    lex->yylval->symbol.length=len;
214 215
    
    if ((symbol->tok == NOT_SYM) &&
216
        (lex->thd->variables.sql_mode & MODE_HIGH_NOT_PRECEDENCE))
217 218 219 220 221
      return NOT2_SYM;
    if ((symbol->tok == OR_OR_SYM) &&
	!(lex->thd->variables.sql_mode & MODE_PIPES_AS_CONCAT))
      return OR2_SYM;
    
unknown's avatar
unknown committed
222 223 224 225 226
    return symbol->tok;
  }
  return 0;
}

227 228 229 230 231
/*
  Check if name is a keyword

  SYNOPSIS
    is_keyword()
232
    name      checked name (must not be empty)
233 234 235 236 237 238 239 240 241
    len       length of checked name

  RETURN VALUES
    0         name is a keyword
    1         name isn't a keyword
*/

bool is_keyword(const char *name, uint len)
{
242
  DBUG_ASSERT(len != 0);
243 244
  return get_hash_symbol(name,len,0)!=0;
}
unknown's avatar
unknown committed
245 246 247

/* make a copy of token before ptr and set yytoklen */

248
static LEX_STRING get_token(LEX *lex,uint length)
unknown's avatar
unknown committed
249 250 251 252
{
  LEX_STRING tmp;
  yyUnget();			// ptr points now after last token char
  tmp.length=lex->yytoklen=length;
253
  tmp.str=(char*) lex->thd->strmake((char*) lex->tok_start,tmp.length);
unknown's avatar
unknown committed
254 255 256
  return tmp;
}

257 258 259 260 261 262 263
/* 
 todo: 
   There are no dangerous charsets in mysql for function 
   get_quoted_token yet. But it should be fixed in the 
   future to operate multichar strings (like ucs2)
*/

264 265 266
static LEX_STRING get_quoted_token(LEX *lex,uint length, char quote)
{
  LEX_STRING tmp;
unknown's avatar
unknown committed
267 268
  const uchar *from, *end;
  uchar *to;
269 270 271
  yyUnget();			// ptr points now after last token char
  tmp.length=lex->yytoklen=length;
  tmp.str=(char*) lex->thd->alloc(tmp.length+1);
unknown's avatar
unknown committed
272
  for (from= lex->tok_start, to= (uchar*) tmp.str, end= to+length ;
unknown's avatar
unknown committed
273 274
       to != end ;
       )
275
  {
unknown's avatar
unknown committed
276
    if ((*to++= *from++) == (uchar) quote)
277 278 279 280 281 282 283 284 285 286 287
      from++;					// Skip double quotes
  }
  *to= 0;					// End null for safety
  return tmp;
}


/*
  Return an unescaped text literal without quotes
  Fix sometimes to do only one scan of the string
*/
unknown's avatar
unknown committed
288 289 290 291 292

static char *get_text(LEX *lex)
{
  reg1 uchar c,sep;
  uint found_escape=0;
293
  CHARSET_INFO *cs= lex->thd->charset();
unknown's avatar
unknown committed
294 295 296 297 298 299 300

  sep= yyGetLast();			// String should end with this
  while (lex->ptr != lex->end_of_query)
  {
    c = yyGet();
#ifdef USE_MB
    int l;
unknown's avatar
unknown committed
301 302
    if (use_mb(cs) &&
        (l = my_ismbchar(cs,
unknown's avatar
unknown committed
303 304 305 306 307 308
                         (const char *)lex->ptr-1,
                         (const char *)lex->end_of_query))) {
	lex->ptr += l-1;
	continue;
    }
#endif
309 310
    if (c == '\\' &&
	!(lex->thd->variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES))
unknown's avatar
unknown committed
311 312 313 314
    {					// Escaped character
      found_escape=1;
      if (lex->ptr == lex->end_of_query)
	return 0;
315 316 317 318 319 320 321 322 323 324 325 326
#ifdef USE_MB
      int l;
      if (use_mb(cs) &&
          (l = my_ismbchar(cs,
                           (const char *)lex->ptr,
                           (const char *)lex->end_of_query))) {
          lex->ptr += l;
          continue;
      }
      else
#endif
        yySkip();
unknown's avatar
unknown committed
327 328 329 330 331 332 333 334 335 336 337 338
    }
    else if (c == sep)
    {
      if (c == yyGet())			// Check if two separators in a row
      {
	found_escape=1;			// dupplicate. Remember for delete
	continue;
      }
      else
	yyUnget();

      /* Found end. Unescape and return string */
unknown's avatar
unknown committed
339 340
      const uchar *str, *end;
      uchar *start;
unknown's avatar
unknown committed
341 342 343

      str=lex->tok_start+1;
      end=lex->ptr-1;
344
      if (!(start=(uchar*) lex->thd->alloc((uint) (end-str)+1)))
unknown's avatar
unknown committed
345
	return (char*) "";		// Sql_alloc has set error flag
unknown's avatar
unknown committed
346 347 348 349 350 351 352 353 354
      if (!found_escape)
      {
	lex->yytoklen=(uint) (end-str);
	memcpy(start,str,lex->yytoklen);
	start[lex->yytoklen]=0;
      }
      else
      {
	uchar *to;
355 356 357 358

        /* Re-use found_escape for tracking state of escapes */
        found_escape= 0;

unknown's avatar
unknown committed
359 360 361 362
	for (to=start ; str != end ; str++)
	{
#ifdef USE_MB
	  int l;
unknown's avatar
unknown committed
363 364
	  if (use_mb(cs) &&
              (l = my_ismbchar(cs,
unknown's avatar
unknown committed
365 366 367 368 369 370 371
                               (const char *)str, (const char *)end))) {
	      while (l--)
		  *to++ = *str++;
	      str--;
	      continue;
	  }
#endif
unknown's avatar
Merge  
unknown committed
372 373
	  if (!found_escape &&
              !(lex->thd->variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES) &&
374
              *str == '\\' && str+1 != end)
unknown's avatar
unknown committed
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
	  {
	    switch(*++str) {
	    case 'n':
	      *to++='\n';
	      break;
	    case 't':
	      *to++= '\t';
	      break;
	    case 'r':
	      *to++ = '\r';
	      break;
	    case 'b':
	      *to++ = '\b';
	      break;
	    case '0':
	      *to++= 0;			// Ascii null
	      break;
	    case 'Z':			// ^Z must be escaped on Win32
	      *to++='\032';
	      break;
	    case '_':
	    case '%':
	      *to++= '\\';		// remember prefix for wildcard
	      /* Fall through */
	    default:
400 401
              found_escape= 1;
              str--;
unknown's avatar
unknown committed
402 403 404
	      break;
	    }
	  }
405 406 407 408
	  else if (!found_escape && *str == sep)
          {
            found_escape= 1;
          }
unknown's avatar
unknown committed
409
	  else
410
          {
unknown's avatar
unknown committed
411
	    *to++ = *str;
412 413
            found_escape= 0;
          }
unknown's avatar
unknown committed
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
	}
	*to=0;
	lex->yytoklen=(uint) (to-start);
      }
      return (char*) start;
    }
  }
  return 0;					// unexpected end of query
}


/*
** Calc type of integer; long integer, longlong integer or real.
** Returns smallest type that match the string.
** When using unsigned long long values the result is converted to a real
** because else they will be unexpected sign changes because all calculation
** is done with longlong or double.
*/

static const char *long_str="2147483647";
static const uint long_len=10;
static const char *signed_long_str="-2147483648";
static const char *longlong_str="9223372036854775807";
static const uint longlong_len=19;
static const char *signed_longlong_str="-9223372036854775808";
static const uint signed_longlong_len=19;
unknown's avatar
unknown committed
440 441
static const char *unsigned_longlong_str="18446744073709551615";
static const uint unsigned_longlong_len=20;
unknown's avatar
unknown committed
442

unknown's avatar
unknown committed
443
static inline uint int_token(const char *str,uint length)
unknown's avatar
unknown committed
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
{
  if (length < long_len)			// quick normal case
    return NUM;
  bool neg=0;

  if (*str == '+')				// Remove sign and pre-zeros
  {
    str++; length--;
  }
  else if (*str == '-')
  {
    str++; length--;
    neg=1;
  }
  while (*str == '0' && length)
  {
    str++; length --;
  }
  if (length < long_len)
    return NUM;

  uint smaller,bigger;
  const char *cmp;
  if (neg)
  {
    if (length == long_len)
    {
      cmp= signed_long_str+1;
      smaller=NUM;				// If <= signed_long_str
      bigger=LONG_NUM;				// If >= signed_long_str
    }
    else if (length < signed_longlong_len)
      return LONG_NUM;
    else if (length > signed_longlong_len)
unknown's avatar
unknown committed
478
      return DECIMAL_NUM;
unknown's avatar
unknown committed
479 480 481 482
    else
    {
      cmp=signed_longlong_str+1;
      smaller=LONG_NUM;				// If <= signed_longlong_str
unknown's avatar
unknown committed
483
      bigger=DECIMAL_NUM;
unknown's avatar
unknown committed
484 485 486 487 488 489 490 491 492 493 494 495 496
    }
  }
  else
  {
    if (length == long_len)
    {
      cmp= long_str;
      smaller=NUM;
      bigger=LONG_NUM;
    }
    else if (length < longlong_len)
      return LONG_NUM;
    else if (length > longlong_len)
unknown's avatar
unknown committed
497 498
    {
      if (length > unsigned_longlong_len)
unknown's avatar
unknown committed
499
        return DECIMAL_NUM;
unknown's avatar
unknown committed
500 501
      cmp=unsigned_longlong_str;
      smaller=ULONGLONG_NUM;
unknown's avatar
unknown committed
502
      bigger=DECIMAL_NUM;
unknown's avatar
unknown committed
503
    }
unknown's avatar
unknown committed
504 505 506 507
    else
    {
      cmp=longlong_str;
      smaller=LONG_NUM;
508
      bigger= ULONGLONG_NUM;
unknown's avatar
unknown committed
509 510 511 512 513 514
    }
  }
  while (*cmp && *cmp++ == *str++) ;
  return ((uchar) str[-1] <= (uchar) cmp[-1]) ? smaller : bigger;
}

515
/*
516
  MYSQLlex remember the following states from the following MYSQLlex()
517 518 519 520 521

  - MY_LEX_EOQ			Found end of query
  - MY_LEX_OPERATOR_OR_IDENT	Last state was an ident, text or number
				(which can't be followed by a signed number)
*/
unknown's avatar
unknown committed
522

523
int MYSQLlex(void *arg, void *yythd)
unknown's avatar
unknown committed
524 525
{
  reg1	uchar c;
526
  int	tokval, result_state;
unknown's avatar
unknown committed
527
  uint length;
unknown's avatar
unknown committed
528
  enum my_lex_states state;
529
  LEX	*lex= ((THD *)yythd)->lex;
unknown's avatar
unknown committed
530
  YYSTYPE *yylval=(YYSTYPE*) arg;
531
  CHARSET_INFO *cs= ((THD *) yythd)->charset();
532 533
  uchar *state_map= cs->state_map;
  uchar *ident_map= cs->ident_map;
unknown's avatar
unknown committed
534 535

  lex->yylval=yylval;			// The global state
536 537 538 539

  lex->tok_end_prev= lex->tok_end;
  lex->tok_start_prev= lex->tok_start;

unknown's avatar
unknown committed
540
  lex->tok_start=lex->tok_end=lex->ptr;
unknown's avatar
unknown committed
541
  state=lex->next_state;
542
  lex->next_state=MY_LEX_OPERATOR_OR_IDENT;
unknown's avatar
unknown committed
543 544 545
  LINT_INIT(c);
  for (;;)
  {
546
    switch (state) {
547 548
    case MY_LEX_OPERATOR_OR_IDENT:	// Next is operator or keyword
    case MY_LEX_START:			// Start of token
549
      // Skip startspace
550
      for (c=yyGet() ; (state_map[c] == MY_LEX_SKIP) ; c= yyGet())
unknown's avatar
unknown committed
551 552 553 554 555
      {
	if (c == '\n')
	  lex->yylineno++;
      }
      lex->tok_start=lex->ptr-1;	// Start of real token
556
      state= (enum my_lex_states) state_map[c];
unknown's avatar
unknown committed
557
      break;
558
    case MY_LEX_ESCAPE:
unknown's avatar
unknown committed
559 560 561 562 563 564
      if (yyGet() == 'N')
      {					// Allow \N as shortcut for NULL
	yylval->lex_str.str=(char*) "\\N";
	yylval->lex_str.length=2;
	return NULL_SYM;
      }
565 566
    case MY_LEX_CHAR:			// Unknown or single char token
    case MY_LEX_SKIP:			// This should not happen
567 568 569 570 571 572 573
      if (c == '-' && yyPeek() == '-' &&
          (my_isspace(cs,yyPeek2()) || 
           my_iscntrl(cs,yyPeek2())))
      {
        state=MY_LEX_COMMENT;
        break;
      }
unknown's avatar
unknown committed
574
      yylval->lex_str.str=(char*) (lex->ptr=lex->tok_start);// Set to first chr
unknown's avatar
unknown committed
575 576 577
      yylval->lex_str.length=1;
      c=yyGet();
      if (c != ')')
578
	lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
579 580
      if (c == ',')
	lex->tok_start=lex->ptr;	// Let tok_start point at next item
581 582 583 584 585 586
      /*
        Check for a placeholder: it should not precede a possible identifier
        because of binlogging: when a placeholder is replaced with
        its value in a query for the binlog, the query must stay
        grammatically correct.
      */
587
      else if (c == '?' && lex->stmt_prepare_mode && !ident_map[yyPeek()])
588
        return(PARAM_MARKER);
unknown's avatar
unknown committed
589 590
      return((int) c);

unknown's avatar
unknown committed
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
    case MY_LEX_IDENT_OR_NCHAR:
      if (yyPeek() != '\'')
      {					// Found x'hex-number'
	state= MY_LEX_IDENT;
	break;
      }
      yyGet();				// Skip '
      while ((c = yyGet()) && (c !='\'')) ;
      length=(lex->ptr - lex->tok_start);	// Length of hexnum+3
      if (c != '\'')
      {
	return(ABORT_SYM);		// Illegal hex constant
      }
      yyGet();				// get_token makes an unget
      yylval->lex_str=get_token(lex,length);
      yylval->lex_str.str+=2;		// Skip x'
      yylval->lex_str.length-=3;	// Don't count x' and last '
      lex->yytoklen-=3;
      return (NCHAR_STRING);

611
    case MY_LEX_IDENT_OR_HEX:
unknown's avatar
unknown committed
612
      if (yyPeek() == '\'')
613
      {					// Found x'hex-number'
614
	state= MY_LEX_HEX_NUMBER;
615 616
	break;
      }
unknown's avatar
unknown committed
617 618 619 620 621 622
    case MY_LEX_IDENT_OR_BIN:
      if (yyPeek() == '\'')
      {                                 // Found b'bin-number'
        state= MY_LEX_BIN_NUMBER;
        break;
      }
623
    case MY_LEX_IDENT:
unknown's avatar
unknown committed
624
      const uchar *start;
unknown's avatar
unknown committed
625
#if defined(USE_MB) && defined(USE_MB_IDENT)
626
      if (use_mb(cs))
unknown's avatar
unknown committed
627
      {
628
	result_state= IDENT_QUOTED;
629
        if (my_mbcharlen(cs, yyGetLast()) > 1)
unknown's avatar
unknown committed
630
        {
631
          int l = my_ismbchar(cs,
unknown's avatar
unknown committed
632 633 634
                              (const char *)lex->ptr-1,
                              (const char *)lex->end_of_query);
          if (l == 0) {
635
            state = MY_LEX_CHAR;
unknown's avatar
unknown committed
636 637 638 639
            continue;
          }
          lex->ptr += l - 1;
        }
unknown's avatar
unknown committed
640
        while (ident_map[c=yyGet()])
unknown's avatar
unknown committed
641
        {
642
          if (my_mbcharlen(cs, c) > 1)
unknown's avatar
unknown committed
643 644
          {
            int l;
645
            if ((l = my_ismbchar(cs,
unknown's avatar
unknown committed
646 647 648 649 650 651 652 653 654
                              (const char *)lex->ptr-1,
                              (const char *)lex->end_of_query)) == 0)
              break;
            lex->ptr += l-1;
          }
        }
      }
      else
#endif
655
      {
unknown's avatar
unknown committed
656 657 658
        for (result_state= c; ident_map[c= yyGet()]; result_state|= c);
        /* If there were non-ASCII characters, mark that we must convert */
        result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
659
      }
unknown's avatar
unknown committed
660
      length= (uint) (lex->ptr - lex->tok_start)-1;
unknown's avatar
unknown committed
661
      start= lex->ptr;
unknown's avatar
unknown committed
662 663
      if (lex->ignore_space)
      {
unknown's avatar
unknown committed
664 665 666 667 668
        /*
          If we find a space then this can't be an identifier. We notice this
          below by checking start != lex->ptr.
        */
        for (; state_map[c] == MY_LEX_SKIP ; c= yyGet());
unknown's avatar
unknown committed
669
      }
unknown's avatar
unknown committed
670
      if (start == lex->ptr && c == '.' && ident_map[yyPeek()])
671
	lex->next_state=MY_LEX_IDENT_SEP;
unknown's avatar
unknown committed
672 673 674 675 676
      else
      {					// '(' must follow directly if function
	yyUnget();
	if ((tokval = find_keyword(lex,length,c == '(')))
	{
677
	  lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
678 679 680 681 682
	  return(tokval);		// Was keyword
	}
	yySkip();			// next state does a unget
      }
      yylval->lex_str=get_token(lex,length);
683 684 685 686

      /* 
         Note: "SELECT _bla AS 'alias'"
         _bla should be considered as a IDENT if charset haven't been found.
687
         So we don't use MYF(MY_WME) with get_charset_by_csname to avoid 
688 689 690 691
         producing an error.
      */

      if ((yylval->lex_str.str[0]=='_') && 
unknown's avatar
unknown committed
692 693
          (lex->charset=get_charset_by_csname(yylval->lex_str.str+1,
					      MY_CS_PRIMARY,MYF(0))))
694
        return(UNDERSCORE_CHARSET);
695
      return(result_state);			// IDENT or IDENT_QUOTED
unknown's avatar
unknown committed
696

697
    case MY_LEX_IDENT_SEP:		// Found ident and now '.'
unknown's avatar
unknown committed
698 699 700
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      c=yyGet();			// should be '.'
701 702 703
      lex->next_state= MY_LEX_IDENT_START;// Next is an ident (not a keyword)
      if (!ident_map[yyPeek()])		// Probably ` or "
	lex->next_state= MY_LEX_START;
unknown's avatar
unknown committed
704 705
      return((int) c);

706 707
    case MY_LEX_NUMBER_IDENT:		// number or ident which num-start
      while (my_isdigit(cs,(c = yyGet()))) ;
unknown's avatar
unknown committed
708
      if (!ident_map[c])
unknown's avatar
unknown committed
709
      {					// Can't be identifier
710
	state=MY_LEX_INT_OR_REAL;
unknown's avatar
unknown committed
711 712 713 714
	break;
      }
      if (c == 'e' || c == 'E')
      {
unknown's avatar
unknown committed
715
	// The following test is written this way to allow numbers of type 1e1
716
	if (my_isdigit(cs,yyPeek()) || 
717
            (c=(yyGet())) == '+' || c == '-')
unknown's avatar
unknown committed
718
	{				// Allow 1E+10
719
	  if (my_isdigit(cs,yyPeek()))	// Number must have digit after sign
unknown's avatar
unknown committed
720 721
	  {
	    yySkip();
722
	    while (my_isdigit(cs,yyGet())) ;
unknown's avatar
unknown committed
723 724 725 726 727 728 729 730 731
	    yylval->lex_str=get_token(lex,yyLength());
	    return(FLOAT_NUM);
	  }
	}
	yyUnget(); /* purecov: inspected */
      }
      else if (c == 'x' && (lex->ptr - lex->tok_start) == 2 &&
	  lex->tok_start[0] == '0' )
      {						// Varbinary
732
	while (my_isxdigit(cs,(c = yyGet()))) ;
unknown's avatar
unknown committed
733
	if ((lex->ptr - lex->tok_start) >= 4 && !ident_map[c])
unknown's avatar
unknown committed
734 735
	{
	  yylval->lex_str=get_token(lex,yyLength());
736
	  yylval->lex_str.str+=2;		// Skip 0x
unknown's avatar
unknown committed
737 738 739 740 741 742
	  yylval->lex_str.length-=2;
	  lex->yytoklen-=2;
	  return (HEX_NUM);
	}
	yyUnget();
      }
unknown's avatar
unknown committed
743 744 745 746 747 748 749 750 751 752 753 754 755 756
      else if (c == 'b' && (lex->ptr - lex->tok_start) == 2 &&
               lex->tok_start[0] == '0' )
      {						// b'bin-number'
	while (my_isxdigit(cs,(c = yyGet()))) ;
	if ((lex->ptr - lex->tok_start) >= 4 && !ident_map[c])
	{
	  yylval->lex_str= get_token(lex, yyLength());
	  yylval->lex_str.str+= 2;		// Skip 0x
	  yylval->lex_str.length-= 2;
	  lex->yytoklen-= 2;
	  return (BIN_NUM);
	}
	yyUnget();
      }
unknown's avatar
unknown committed
757
      // fall through
758
    case MY_LEX_IDENT_START:			// We come here after '.'
759
      result_state= IDENT;
unknown's avatar
unknown committed
760
#if defined(USE_MB) && defined(USE_MB_IDENT)
761
      if (use_mb(cs))
unknown's avatar
unknown committed
762
      {
763
	result_state= IDENT_QUOTED;
unknown's avatar
unknown committed
764
        while (ident_map[c=yyGet()])
unknown's avatar
unknown committed
765
        {
766
          if (my_mbcharlen(cs, c) > 1)
unknown's avatar
unknown committed
767 768
          {
            int l;
769
            if ((l = my_ismbchar(cs,
unknown's avatar
unknown committed
770 771 772 773 774 775 776 777 778
                                 (const char *)lex->ptr-1,
                                 (const char *)lex->end_of_query)) == 0)
              break;
            lex->ptr += l-1;
          }
        }
      }
      else
#endif
unknown's avatar
unknown committed
779 780 781 782 783
      {
        for (result_state=0; ident_map[c= yyGet()]; result_state|= c);
        /* If there were non-ASCII characters, mark that we must convert */
        result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
      }
unknown's avatar
unknown committed
784
      if (c == '.' && ident_map[yyPeek()])
785
	lex->next_state=MY_LEX_IDENT_SEP;// Next is '.'
unknown's avatar
unknown committed
786

787 788
      yylval->lex_str= get_token(lex,yyLength());
      return(result_state);
unknown's avatar
unknown committed
789

790
    case MY_LEX_USER_VARIABLE_DELIMITER:	// Found quote char
791
    {
792 793
      uint double_quotes= 0;
      char quote_char= c;                       // Used char
unknown's avatar
unknown committed
794
      lex->tok_start=lex->ptr;			// Skip first `
795
      while ((c=yyGet()))
unknown's avatar
unknown committed
796
      {
797 798
	int length;
	if ((length= my_mbcharlen(cs, c)) == 1)
799
	{
800 801
	  if (c == (uchar) NAMES_SEP_CHAR)
	    break; /* Old .frm format can't handle this char */
802 803 804 805 806 807 808 809
	  if (c == quote_char)
	  {
	    if (yyPeek() != quote_char)
	      break;
	    c=yyGet();
	    double_quotes++;
	    continue;
	  }
810 811
	}
#ifdef USE_MB
812 813 814
	else if (length < 1)
	  break;				// Error
	lex->ptr+= length-1;
815
#endif
unknown's avatar
unknown committed
816
      }
817 818 819 820 821 822
      if (double_quotes)
	yylval->lex_str=get_quoted_token(lex,yyLength() - double_quotes,
					 quote_char);
      else
	yylval->lex_str=get_token(lex,yyLength());
      if (c == quote_char)
823
	yySkip();			// Skip end `
824
      lex->next_state= MY_LEX_START;
825
      return(IDENT_QUOTED);
826
    }
827
    case MY_LEX_INT_OR_REAL:		// Compleat int or incompleat real
unknown's avatar
unknown committed
828 829 830 831 832 833
      if (c != '.')
      {					// Found complete integer number.
	yylval->lex_str=get_token(lex,yyLength());
	return int_token(yylval->lex_str.str,yylval->lex_str.length);
      }
      // fall through
834 835
    case MY_LEX_REAL:			// Incomplete real number
      while (my_isdigit(cs,c = yyGet())) ;
unknown's avatar
unknown committed
836 837 838 839

      if (c == 'e' || c == 'E')
      {
	c = yyGet();
unknown's avatar
unknown committed
840
	if (c == '-' || c == '+')
841
	  c = yyGet();			// Skip sign
842
	if (!my_isdigit(cs,c))
unknown's avatar
unknown committed
843
	{				// No digit after sign
844
	  state= MY_LEX_CHAR;
unknown's avatar
unknown committed
845 846
	  break;
	}
847
	while (my_isdigit(cs,yyGet())) ;
unknown's avatar
unknown committed
848 849 850 851
	yylval->lex_str=get_token(lex,yyLength());
	return(FLOAT_NUM);
      }
      yylval->lex_str=get_token(lex,yyLength());
unknown's avatar
unknown committed
852
      return(DECIMAL_NUM);
unknown's avatar
unknown committed
853

854
    case MY_LEX_HEX_NUMBER:		// Found x'hexstring'
855
      yyGet();				// Skip '
856
      while (my_isxdigit(cs,(c = yyGet()))) ;
857 858 859 860 861 862 863 864 865 866 867 868
      length=(lex->ptr - lex->tok_start);	// Length of hexnum+3
      if (!(length & 1) || c != '\'')
      {
	return(ABORT_SYM);		// Illegal hex constant
      }
      yyGet();				// get_token makes an unget
      yylval->lex_str=get_token(lex,length);
      yylval->lex_str.str+=2;		// Skip x'
      yylval->lex_str.length-=3;	// Don't count x' and last '
      lex->yytoklen-=3;
      return (HEX_NUM);

unknown's avatar
unknown committed
869 870 871 872 873 874 875 876 877 878 879 880 881
    case MY_LEX_BIN_NUMBER:           // Found b'bin-string'
      yyGet();                                // Skip '
      while ((c= yyGet()) == '0' || c == '1');
      length= (lex->ptr - lex->tok_start);    // Length of bin-num + 3
      if (c != '\'')
      return(ABORT_SYM);              // Illegal hex constant
      yyGet();                        // get_token makes an unget
      yylval->lex_str= get_token(lex, length);
      yylval->lex_str.str+= 2;        // Skip b'
      yylval->lex_str.length-= 3;     // Don't count b' and last '
      lex->yytoklen-= 3;
      return (BIN_NUM); 

882 883 884
    case MY_LEX_CMP_OP:			// Incomplete comparison operator
      if (state_map[yyPeek()] == MY_LEX_CMP_OP ||
	  state_map[yyPeek()] == MY_LEX_LONG_CMP_OP)
unknown's avatar
unknown committed
885 886 887
	yySkip();
      if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
      {
888
	lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
889 890
	return(tokval);
      }
891
      state = MY_LEX_CHAR;		// Something fishy found
unknown's avatar
unknown committed
892 893
      break;

894 895 896
    case MY_LEX_LONG_CMP_OP:		// Incomplete comparison operator
      if (state_map[yyPeek()] == MY_LEX_CMP_OP ||
	  state_map[yyPeek()] == MY_LEX_LONG_CMP_OP)
unknown's avatar
unknown committed
897 898
      {
	yySkip();
899
	if (state_map[yyPeek()] == MY_LEX_CMP_OP)
unknown's avatar
unknown committed
900 901 902 903
	  yySkip();
      }
      if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
      {
904
	lex->next_state= MY_LEX_START;	// Found long op
unknown's avatar
unknown committed
905 906
	return(tokval);
      }
907
      state = MY_LEX_CHAR;		// Something fishy found
unknown's avatar
unknown committed
908 909
      break;

910
    case MY_LEX_BOOL:
unknown's avatar
unknown committed
911 912
      if (c != yyPeek())
      {
913
	state=MY_LEX_CHAR;
unknown's avatar
unknown committed
914 915 916 917
	break;
      }
      yySkip();
      tokval = find_keyword(lex,2,0);	// Is a bool operator
918
      lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
919 920
      return(tokval);

921
    case MY_LEX_STRING_OR_DELIMITER:
922 923
      if (((THD *) yythd)->variables.sql_mode & MODE_ANSI_QUOTES)
      {
924
	state= MY_LEX_USER_VARIABLE_DELIMITER;
925 926 927
	break;
      }
      /* " used for strings */
928
    case MY_LEX_STRING:			// Incomplete text string
unknown's avatar
unknown committed
929 930
      if (!(yylval->lex_str.str = get_text(lex)))
      {
931
	state= MY_LEX_CHAR;		// Read char by char
unknown's avatar
unknown committed
932 933 934 935 936
	break;
      }
      yylval->lex_str.length=lex->yytoklen;
      return(TEXT_STRING);

937
    case MY_LEX_COMMENT:			//  Comment
unknown's avatar
unknown committed
938
      lex->select_lex.options|= OPTION_FOUND_COMMENT;
unknown's avatar
unknown committed
939 940
      while ((c = yyGet()) != '\n' && c) ;
      yyUnget();			// Safety against eof
941
      state = MY_LEX_START;		// Try again
unknown's avatar
unknown committed
942
      break;
943
    case MY_LEX_LONG_COMMENT:		/* Long C comment? */
unknown's avatar
unknown committed
944 945
      if (yyPeek() != '*')
      {
946
	state=MY_LEX_CHAR;		// Probable division
unknown's avatar
unknown committed
947 948 949
	break;
      }
      yySkip();				// Skip '*'
unknown's avatar
unknown committed
950
      lex->select_lex.options|= OPTION_FOUND_COMMENT;
unknown's avatar
unknown committed
951 952 953 954
      if (yyPeek() == '!')		// MySQL command in comment
      {
	ulong version=MYSQL_VERSION_ID;
	yySkip();
955 956
	state=MY_LEX_START;
	if (my_isdigit(cs,yyPeek()))
unknown's avatar
unknown committed
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
	{				// Version number
	  version=strtol((char*) lex->ptr,(char**) &lex->ptr,10);
	}
	if (version <= MYSQL_VERSION_ID)
	{
	  lex->in_comment=1;
	  break;
	}
      }
      while (lex->ptr != lex->end_of_query &&
	     ((c=yyGet()) != '*' || yyPeek() != '/'))
      {
	if (c == '\n')
	  lex->yylineno++;
      }
      if (lex->ptr != lex->end_of_query)
	yySkip();			// remove last '/'
974
      state = MY_LEX_START;		// Try again
unknown's avatar
unknown committed
975
      break;
976
    case MY_LEX_END_LONG_COMMENT:
unknown's avatar
unknown committed
977 978 979 980
      if (lex->in_comment && yyPeek() == '/')
      {
	yySkip();
	lex->in_comment=0;
981
	state=MY_LEX_START;
unknown's avatar
unknown committed
982 983
      }
      else
984
	state=MY_LEX_CHAR;		// Return '*'
unknown's avatar
unknown committed
985
      break;
986
    case MY_LEX_SET_VAR:		// Check if ':='
unknown's avatar
unknown committed
987 988
      if (yyPeek() != '=')
      {
989
	state=MY_LEX_CHAR;		// Return ':'
unknown's avatar
unknown committed
990 991 992 993
	break;
      }
      yySkip();
      return (SET_VAR);
994
    case MY_LEX_SEMICOLON:			// optional line terminator
unknown's avatar
unknown committed
995 996
      if (yyPeek())
      {
997 998
        THD* thd= (THD*)yythd;
        if ((thd->client_capabilities & CLIENT_MULTI_STATEMENTS) && 
999
            !lex->stmt_prepare_mode)
1000
        {
unknown's avatar
unknown committed
1001
	  lex->safe_to_cache_query= 0;
unknown's avatar
unknown committed
1002
          lex->found_semicolon=(char*) lex->ptr;
unknown's avatar
unknown committed
1003 1004 1005
          thd->server_status|= SERVER_MORE_RESULTS_EXISTS;
          lex->next_state=     MY_LEX_END;
          return (END_OF_INPUT);
1006
        }
unknown's avatar
unknown committed
1007
        state= MY_LEX_CHAR;		// Return ';'
unknown's avatar
unknown committed
1008 1009 1010
	break;
      }
      /* fall true */
1011
    case MY_LEX_EOL:
unknown's avatar
unknown committed
1012 1013 1014 1015 1016 1017 1018
      if (lex->ptr >= lex->end_of_query)
      {
	lex->next_state=MY_LEX_END;	// Mark for next loop
	return(END_OF_INPUT);
      }
      state=MY_LEX_CHAR;
      break;
1019 1020
    case MY_LEX_END:
      lex->next_state=MY_LEX_END;
unknown's avatar
unknown committed
1021
      return(0);			// We found end of input last time
1022 1023
      
      /* Actually real shouldn't start with . but allow them anyhow */
1024 1025 1026
    case MY_LEX_REAL_OR_POINT:
      if (my_isdigit(cs,yyPeek()))
	state = MY_LEX_REAL;		// Real
unknown's avatar
unknown committed
1027 1028
      else
      {
1029 1030
	state= MY_LEX_IDENT_SEP;	// return '.'
	yyUnget();			// Put back '.'
unknown's avatar
unknown committed
1031 1032
      }
      break;
1033
    case MY_LEX_USER_END:		// end '@' of user@hostname
unknown's avatar
unknown committed
1034
      switch (state_map[yyPeek()]) {
1035 1036 1037
      case MY_LEX_STRING:
      case MY_LEX_USER_VARIABLE_DELIMITER:
      case MY_LEX_STRING_OR_DELIMITER:
unknown's avatar
unknown committed
1038
	break;
1039 1040
      case MY_LEX_USER_END:
	lex->next_state=MY_LEX_SYSTEM_VAR;
unknown's avatar
unknown committed
1041 1042
	break;
      default:
1043
	lex->next_state=MY_LEX_HOSTNAME;
unknown's avatar
unknown committed
1044 1045
	break;
      }
unknown's avatar
unknown committed
1046 1047 1048
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      return((int) '@');
1049 1050 1051
    case MY_LEX_HOSTNAME:		// end '@' of user@hostname
      for (c=yyGet() ; 
	   my_isalnum(cs,c) || c == '.' || c == '_' ||  c == '$';
unknown's avatar
unknown committed
1052 1053 1054
	   c= yyGet()) ;
      yylval->lex_str=get_token(lex,yyLength());
      return(LEX_HOSTNAME);
1055
    case MY_LEX_SYSTEM_VAR:
unknown's avatar
unknown committed
1056 1057 1058
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      yySkip();					// Skip '@'
1059 1060 1061 1062
      lex->next_state= (state_map[yyPeek()] ==
			MY_LEX_USER_VARIABLE_DELIMITER ?
			MY_LEX_OPERATOR_OR_IDENT :
			MY_LEX_IDENT_OR_KEYWORD);
unknown's avatar
unknown committed
1063
      return((int) '@');
1064
    case MY_LEX_IDENT_OR_KEYWORD:
unknown's avatar
unknown committed
1065 1066 1067 1068 1069
      /*
	We come here when we have found two '@' in a row.
	We should now be able to handle:
	[(global | local | session) .]variable_name
      */
unknown's avatar
unknown committed
1070 1071 1072 1073 1074
      
      for (result_state= 0; ident_map[c= yyGet()]; result_state|= c);
      /* If there were non-ASCII characters, mark that we must convert */
      result_state= result_state & 0x80 ? IDENT_QUOTED : IDENT;
      
unknown's avatar
unknown committed
1075
      if (c == '.')
1076
	lex->next_state=MY_LEX_IDENT_SEP;
unknown's avatar
unknown committed
1077 1078 1079 1080 1081 1082 1083
      length= (uint) (lex->ptr - lex->tok_start)-1;
      if ((tokval= find_keyword(lex,length,0)))
      {
	yyUnget();				// Put back 'c'
	return(tokval);				// Was keyword
      }
      yylval->lex_str=get_token(lex,length);
1084
      return(result_state);
unknown's avatar
unknown committed
1085 1086 1087
    }
  }
}
unknown's avatar
unknown committed
1088 1089 1090 1091 1092 1093 1094

/*
  st_select_lex structures initialisations
*/

void st_select_lex_node::init_query()
{
1095 1096
  options= 0;
  linkage= UNSPECIFIED_TYPE;
1097 1098
  no_error= no_table_names_allowed= 0;
  uncacheable= 0;
unknown's avatar
unknown committed
1099 1100 1101 1102 1103 1104 1105 1106 1107
}

void st_select_lex_node::init_select()
{
}

void st_select_lex_unit::init_query()
{
  st_select_lex_node::init_query();
1108
  linkage= GLOBAL_OPTIONS_TYPE;
unknown's avatar
(SCRUM)  
unknown committed
1109
  global_parameters= first_select();
1110 1111
  select_limit_cnt= HA_POS_ERROR;
  offset_limit_cnt= 0;
1112
  union_distinct= 0;
unknown's avatar
unknown committed
1113
  prepared= optimized= executed= 0;
unknown's avatar
unknown committed
1114
  item= 0;
1115 1116
  union_result= 0;
  table= 0;
unknown's avatar
(SCRUM)  
unknown committed
1117
  fake_select_lex= 0;
1118
  cleaned= 0;
1119
  item_list.empty();
1120
  describe= 0;
1121
  found_rows_for_union= 0;
unknown's avatar
unknown committed
1122 1123 1124 1125 1126
}

void st_select_lex::init_query()
{
  st_select_lex_node::init_query();
1127
  table_list.empty();
1128 1129
  top_join_list.empty();
  join_list= &top_join_list;
1130
  embedding= leaf_tables= 0;
unknown's avatar
unknown committed
1131
  item_list.empty();
unknown's avatar
unknown committed
1132
  join= 0;
1133
  having= prep_having= where= prep_where= 0;
1134
  olap= UNSPECIFIED_OLAP_TYPE;
1135
  having_fix_field= 0;
1136 1137
  context.select_lex= this;
  context.init();
unknown's avatar
unknown committed
1138 1139 1140
  /*
    Add the name resolution context of the current (sub)query to the
    stack of contexts for the whole query.
1141 1142 1143 1144 1145
    TODO:
    push_context may return an error if there is no memory for a new
    element in the stack, however this method has no return value,
    thus push_context should be moved to a place where query
    initialization is checked for failure.
unknown's avatar
unknown committed
1146 1147
  */
  parent_lex->push_context(&context);
unknown's avatar
(SCRUM)  
unknown committed
1148
  cond_count= with_wild= 0;
1149
  conds_processed_with_permanent_arena= 0;
unknown's avatar
(SCRUM)  
unknown committed
1150
  ref_pointer_array= 0;
unknown's avatar
unknown committed
1151
  select_n_having_items= 0;
1152
  subquery_in_having= explicit_limit= 0;
1153
  is_item_list_lookup= 0;
1154
  first_execution= 1;
unknown's avatar
unknown committed
1155
  first_cond_optimization= 1;
1156
  parsing_place= NO_MATTER;
1157
  exclude_from_table_unique_test= no_wrap_view_item= FALSE;
unknown's avatar
unknown committed
1158
  nest_level= 0;
1159
  link_next= 0;
unknown's avatar
unknown committed
1160 1161 1162 1163 1164
}

void st_select_lex::init_select()
{
  st_select_lex_node::init_select();
1165
  group_list.empty();
unknown's avatar
unknown committed
1166
  type= db= 0;
1167 1168 1169 1170
  having= 0;
  use_index_ptr= ignore_index_ptr= 0;
  table_join_options= 0;
  in_sum_expr= with_wild= 0;
unknown's avatar
unknown committed
1171
  options= 0;
1172
  braces= 0;
unknown's avatar
unknown committed
1173
  when_list.empty();
unknown's avatar
unknown committed
1174
  expr_list.empty();
unknown's avatar
unknown committed
1175
  interval_list.empty();
unknown's avatar
unknown committed
1176
  use_index.empty();
unknown's avatar
unknown committed
1177
  ftfunc_list_alloc.empty();
unknown's avatar
unknown committed
1178
  inner_sum_func_list= 0;
unknown's avatar
unknown committed
1179
  ftfunc_list= &ftfunc_list_alloc;
unknown's avatar
unknown committed
1180
  linkage= UNSPECIFIED_TYPE;
unknown's avatar
(SCRUM)  
unknown committed
1181 1182 1183
  order_list.elements= 0;
  order_list.first= 0;
  order_list.next= (byte**) &order_list.first;
1184 1185 1186
  /* Set limit and offset to default values */
  select_limit= 0;      /* denotes the default limit = HA_POS_ERROR */
  offset_limit= 0;      /* denotes the default offset = 0 */
unknown's avatar
(SCRUM)  
unknown committed
1187
  with_sum_func= 0;
1188

unknown's avatar
unknown committed
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
}

/*
  st_select_lex structures linking
*/

/* include on level down */
void st_select_lex_node::include_down(st_select_lex_node *upper)
{
  if ((next= upper->slave))
    next->prev= &next;
  prev= &upper->slave;
  upper->slave= this;
  master= upper;
unknown's avatar
unknown committed
1203
  slave= 0;
unknown's avatar
unknown committed
1204 1205
}

unknown's avatar
(SCRUM)  
unknown committed
1206 1207
/*
  include on level down (but do not link)
unknown's avatar
unknown committed
1208

unknown's avatar
(SCRUM)  
unknown committed
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
  SYNOPSYS
    st_select_lex_node::include_standalone()
    upper - reference on node underr which this node should be included
    ref - references on reference on this node
*/
void st_select_lex_node::include_standalone(st_select_lex_node *upper,
					    st_select_lex_node **ref)
{
  next= 0;
  prev= ref;
  master= upper;
  slave= 0;
}

unknown's avatar
unknown committed
1223 1224 1225 1226 1227 1228 1229 1230
/* include neighbour (on same level) */
void st_select_lex_node::include_neighbour(st_select_lex_node *before)
{
  if ((next= before->next))
    next->prev= &next;
  prev= &before->next;
  before->next= this;
  master= before->master;
unknown's avatar
unknown committed
1231
  slave= 0;
unknown's avatar
unknown committed
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
}

/* including in global SELECT_LEX list */
void st_select_lex_node::include_global(st_select_lex_node **plink)
{
  if ((link_next= *plink))
    link_next->link_prev= &link_next;
  link_prev= plink;
  *plink= this;
}

//excluding from global list (internal function)
void st_select_lex_node::fast_exclude()
{
unknown's avatar
unknown committed
1246
  if (link_prev)
unknown's avatar
unknown committed
1247 1248 1249 1250
  {
    if ((*link_prev= link_next))
      link_next->link_prev= link_prev;
  }
1251 1252 1253 1254
  // Remove slave structure
  for (; slave; slave= slave->next)
    slave->fast_exclude();
  
unknown's avatar
unknown committed
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
}

/*
  excluding select_lex structure (except first (first select can't be
  deleted, because it is most upper select))
*/
void st_select_lex_node::exclude()
{
  //exclude from global list
  fast_exclude();
  //exclude from other structures
  if ((*prev= next))
    next->prev= prev;
  /* 
     We do not need following statements, because prev pointer of first 
     list element point to master->slave
     if (master->slave == this)
       master->slave= next;
  */
}
1275

1276 1277 1278 1279 1280 1281 1282 1283 1284 1285

/*
  Exclude level of current unit from tree of SELECTs

  SYNOPSYS
    st_select_lex_unit::exclude_level()

  NOTE: units which belong to current will be brought up on level of
  currernt unit 
*/
unknown's avatar
unknown committed
1286 1287 1288
void st_select_lex_unit::exclude_level()
{
  SELECT_LEX_UNIT *units= 0, **units_last= &units;
unknown's avatar
unknown committed
1289
  for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
unknown's avatar
unknown committed
1290
  {
unknown's avatar
unknown committed
1291
    // unlink current level from global SELECTs list
unknown's avatar
unknown committed
1292 1293
    if (sl->link_prev && (*sl->link_prev= sl->link_next))
      sl->link_next->link_prev= sl->link_prev;
unknown's avatar
unknown committed
1294 1295

    // bring up underlay levels
unknown's avatar
unknown committed
1296 1297
    SELECT_LEX_UNIT **last= 0;
    for (SELECT_LEX_UNIT *u= sl->first_inner_unit(); u; u= u->next_unit())
unknown's avatar
unknown committed
1298 1299
    {
      u->master= master;
unknown's avatar
unknown committed
1300
      last= (SELECT_LEX_UNIT**)&(u->next);
unknown's avatar
unknown committed
1301
    }
unknown's avatar
unknown committed
1302 1303 1304 1305 1306 1307 1308 1309
    if (last)
    {
      (*units_last)= sl->first_inner_unit();
      units_last= last;
    }
  }
  if (units)
  {
unknown's avatar
unknown committed
1310
    // include brought up levels in place of current
unknown's avatar
unknown committed
1311 1312
    (*prev)= units;
    (*units_last)= (SELECT_LEX_UNIT*)next;
unknown's avatar
unknown committed
1313 1314 1315
    if (next)
      next->prev= (SELECT_LEX_NODE**)units_last;
    units->prev= prev;
unknown's avatar
unknown committed
1316 1317
  }
  else
unknown's avatar
unknown committed
1318 1319
  {
    // exclude currect unit from list of nodes
unknown's avatar
unknown committed
1320
    (*prev)= next;
unknown's avatar
unknown committed
1321 1322 1323
    if (next)
      next->prev= prev;
  }
unknown's avatar
unknown committed
1324 1325
}

1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336

/*
  Exclude subtree of current unit from tree of SELECTs

  SYNOPSYS
    st_select_lex_unit::exclude_tree()
*/
void st_select_lex_unit::exclude_tree()
{
  for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
  {
unknown's avatar
unknown committed
1337
    // unlink current level from global SELECTs list
1338 1339 1340
    if (sl->link_prev && (*sl->link_prev= sl->link_next))
      sl->link_next->link_prev= sl->link_prev;

unknown's avatar
unknown committed
1341
    // unlink underlay levels
1342 1343 1344 1345 1346
    for (SELECT_LEX_UNIT *u= sl->first_inner_unit(); u; u= u->next_unit())
    {
      u->exclude_level();
    }
  }
unknown's avatar
unknown committed
1347
  // exclude currect unit from list of nodes
1348
  (*prev)= next;
unknown's avatar
unknown committed
1349 1350
  if (next)
    next->prev= prev;
1351 1352 1353
}


unknown's avatar
unknown committed
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
/*
  st_select_lex_node::mark_as_dependent mark all st_select_lex struct from 
  this to 'last' as dependent

  SYNOPSIS
    last - pointer to last st_select_lex struct, before wich all 
           st_select_lex have to be marked as dependent

  NOTE
    'last' should be reachable from this st_select_lex_node
*/

unknown's avatar
(SCRUM)  
unknown committed
1366
void st_select_lex::mark_as_dependent(SELECT_LEX *last)
unknown's avatar
unknown committed
1367 1368 1369 1370 1371
{
  /*
    Mark all selects from resolved to 1 before select where was
    found table as depended (of select where was found table)
  */
unknown's avatar
(SCRUM)  
unknown committed
1372
  for (SELECT_LEX *s= this;
1373
       s && s != last;
unknown's avatar
unknown committed
1374
       s= s->outer_select())
1375
    if (!(s->uncacheable & UNCACHEABLE_DEPENDENT))
unknown's avatar
unknown committed
1376 1377
    {
      // Select is dependent of outer select
1378
      s->uncacheable|= UNCACHEABLE_DEPENDENT;
1379
      SELECT_LEX_UNIT *munit= s->master_unit();
1380
      munit->uncacheable|= UNCACHEABLE_DEPENDENT;
unknown's avatar
unknown committed
1381 1382 1383
    }
}

1384 1385 1386 1387 1388 1389 1390
bool st_select_lex_node::set_braces(bool value)      { return 1; }
bool st_select_lex_node::inc_in_sum_expr()           { return 1; }
uint st_select_lex_node::get_in_sum_expr()           { return 0; }
TABLE_LIST* st_select_lex_node::get_table_list()     { return 0; }
List<Item>* st_select_lex_node::get_item_list()      { return 0; }
List<String>* st_select_lex_node::get_use_index()    { return 0; }
List<String>* st_select_lex_node::get_ignore_index() { return 0; }
unknown's avatar
unknown committed
1391
TABLE_LIST *st_select_lex_node::add_table_to_list(THD *thd, Table_ident *table,
1392
						  LEX_STRING *alias,
unknown's avatar
unknown committed
1393
						  ulong table_join_options,
1394 1395
						  thr_lock_type flags,
						  List<String> *use_index,
unknown's avatar
unknown committed
1396 1397
						  List<String> *ignore_index,
                                                  LEX_STRING *option)
1398 1399 1400
{
  return 0;
}
unknown's avatar
unknown committed
1401 1402 1403 1404 1405 1406 1407 1408
ulong st_select_lex_node::get_table_join_options()
{
  return 0;
}

/*
  prohibit using LIMIT clause
*/
unknown's avatar
(SCRUM)  
unknown committed
1409
bool st_select_lex::test_limit()
unknown's avatar
unknown committed
1410
{
1411
  if (select_limit != 0)
unknown's avatar
unknown committed
1412 1413
  {
    my_error(ER_NOT_SUPPORTED_YET, MYF(0),
unknown's avatar
unknown committed
1414
             "LIMIT & IN/ALL/ANY/SOME subquery");
unknown's avatar
unknown committed
1415 1416 1417 1418 1419 1420
    return(1);
  }
  // no sense in ORDER BY without LIMIT
  order_list.empty();
  return(0);
}
1421

1422

1423 1424 1425 1426 1427
st_select_lex_unit* st_select_lex_unit::master_unit()
{
    return this;
}

1428

1429 1430 1431 1432 1433
st_select_lex* st_select_lex_unit::outer_select()
{
  return (st_select_lex*) master;
}

1434

unknown's avatar
(SCRUM)  
unknown committed
1435
bool st_select_lex::add_order_to_list(THD *thd, Item *item, bool asc)
unknown's avatar
unknown committed
1436
{
unknown's avatar
(SCRUM)  
unknown committed
1437
  return add_to_list(thd, order_list, item, asc);
unknown's avatar
unknown committed
1438
}
1439

1440

unknown's avatar
unknown committed
1441
bool st_select_lex::add_item_to_list(THD *thd, Item *item)
1442
{
1443 1444 1445
  DBUG_ENTER("st_select_lex::add_item_to_list");
  DBUG_PRINT("info", ("Item: %p", item));
  DBUG_RETURN(item_list.push_back(item));
1446 1447
}

1448

unknown's avatar
unknown committed
1449
bool st_select_lex::add_group_to_list(THD *thd, Item *item, bool asc)
1450
{
unknown's avatar
unknown committed
1451
  return add_to_list(thd, group_list, item, asc);
1452 1453
}

1454

1455 1456 1457 1458 1459
bool st_select_lex::add_ftfunc_to_list(Item_func_match *func)
{
  return !func || ftfunc_list->push_back(func); // end of memory?
}

1460

1461 1462 1463 1464 1465
st_select_lex_unit* st_select_lex::master_unit()
{
  return (st_select_lex_unit*) master;
}

1466

1467 1468 1469 1470 1471
st_select_lex* st_select_lex::outer_select()
{
  return (st_select_lex*) master->get_master();
}

1472

1473 1474 1475 1476 1477 1478
bool st_select_lex::set_braces(bool value)
{
  braces= value;
  return 0; 
}

1479

1480 1481 1482 1483 1484 1485
bool st_select_lex::inc_in_sum_expr()
{
  in_sum_expr++;
  return 0;
}

1486

1487 1488 1489 1490 1491
uint st_select_lex::get_in_sum_expr()
{
  return in_sum_expr;
}

1492

1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
TABLE_LIST* st_select_lex::get_table_list()
{
  return (TABLE_LIST*) table_list.first;
}

List<Item>* st_select_lex::get_item_list()
{
  return &item_list;
}

1503

1504 1505 1506 1507 1508
List<String>* st_select_lex::get_use_index()
{
  return use_index_ptr;
}

1509

1510 1511 1512 1513 1514
List<String>* st_select_lex::get_ignore_index()
{
  return ignore_index_ptr;
}

1515

unknown's avatar
unknown committed
1516 1517 1518 1519 1520
ulong st_select_lex::get_table_join_options()
{
  return table_join_options;
}

1521

unknown's avatar
unknown committed
1522 1523 1524 1525
bool st_select_lex::setup_ref_array(THD *thd, uint order_group_num)
{
  if (ref_pointer_array)
    return 0;
1526 1527 1528 1529 1530

  /*
    We have to create array in prepared statement memory if it is
    prepared statement
  */
unknown's avatar
Rename:  
unknown committed
1531
  Query_arena *arena= thd->stmt_arena;
unknown's avatar
unknown committed
1532
  return (ref_pointer_array=
1533 1534 1535 1536
          (Item **)arena->alloc(sizeof(Item*) *
                                (item_list.elements +
                                 select_n_having_items +
                                 order_group_num)* 5)) == 0;
unknown's avatar
unknown committed
1537 1538
}

1539

unknown's avatar
unknown committed
1540 1541
void st_select_lex_unit::print(String *str)
{
1542
  bool union_all= !union_distinct;
unknown's avatar
unknown committed
1543 1544 1545 1546
  for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
  {
    if (sl != first_select())
    {
1547
      str->append(STRING_WITH_LEN(" union "));
1548
      if (union_all)
1549
	str->append(STRING_WITH_LEN("all "));
1550
      else if (union_distinct == sl)
1551
        union_all= TRUE;
unknown's avatar
unknown committed
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
    }
    if (sl->braces)
      str->append('(');
    sl->print(thd, str);
    if (sl->braces)
      str->append(')');
  }
  if (fake_select_lex == global_parameters)
  {
    if (fake_select_lex->order_list.elements)
    {
1563
      str->append(STRING_WITH_LEN(" order by "));
unknown's avatar
unknown committed
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576
      fake_select_lex->print_order(str,
				   (ORDER *) fake_select_lex->
				   order_list.first);
    }
    fake_select_lex->print_limit(thd, str);
  }
}


void st_select_lex::print_order(String *str, ORDER *order)
{
  for (; order; order= order->next)
  {
1577 1578 1579
    if (order->counter_used)
    {
      char buffer[20];
unknown's avatar
unknown committed
1580 1581
      uint length= my_snprintf(buffer, 20, "%d", order->counter);
      str->append(buffer, length);
1582 1583 1584
    }
    else
      (*order->item)->print(str);
unknown's avatar
unknown committed
1585
    if (!order->asc)
1586
      str->append(STRING_WITH_LEN(" desc"));
unknown's avatar
unknown committed
1587 1588 1589 1590 1591
    if (order->next)
      str->append(',');
  }
}
 
1592

unknown's avatar
unknown committed
1593 1594
void st_select_lex::print_limit(THD *thd, String *str)
{
1595 1596 1597
  SELECT_LEX_UNIT *unit= master_unit();
  Item_subselect *item= unit->item;
  if (item && unit->global_parameters == this &&
unknown's avatar
VIEW  
unknown committed
1598 1599 1600 1601
      (item->substype() == Item_subselect::EXISTS_SUBS ||
       item->substype() == Item_subselect::IN_SUBS ||
       item->substype() == Item_subselect::ALL_SUBS))
  {
1602 1603
    DBUG_ASSERT(!item->fixed ||
                select_limit->val_int() == LL(1) && offset_limit == 0);
unknown's avatar
VIEW  
unknown committed
1604 1605 1606
    return;
  }

1607
  if (explicit_limit)
unknown's avatar
unknown committed
1608
  {
1609
    str->append(STRING_WITH_LEN(" limit "));
unknown's avatar
unknown committed
1610 1611
    if (offset_limit)
    {
1612
      offset_limit->print(str);
unknown's avatar
unknown committed
1613 1614
      str->append(',');
    }
1615
    select_limit->print(str);
unknown's avatar
unknown committed
1616 1617 1618
  }
}

unknown's avatar
VIEW  
unknown committed
1619

1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
/*
  Initialize LEX object.

  SYNOPSIS
    st_lex::st_lex()

  NOTE
    LEX object initialized with this constructor can be used as part of
    THD object for which one can safely call open_tables(), lock_tables()
    and close_thread_tables() functions. But it is not yet ready for
    statement parsing. On should use lex_start() function to prepare LEX
    for this.
*/

st_lex::st_lex()
  :result(0), sql_command(SQLCOM_END), query_tables_own_last(0)
{
  hash_init(&sroutines, system_charset_info, 0, 0, 0, sp_sroutine_key, 0, 0);
  sroutines_list.empty();
1639 1640
  sroutines_list_own_last= sroutines_list.next;
  sroutines_list_own_elements= 0;
1641 1642 1643
}


unknown's avatar
VIEW  
unknown committed
1644
/*
1645
  Check whether the merging algorithm can be used on this VIEW
unknown's avatar
VIEW  
unknown committed
1646 1647 1648 1649

  SYNOPSIS
    st_lex::can_be_merged()

1650
  DESCRIPTION
1651 1652 1653
    We can apply merge algorithm if it is single SELECT view  with
    subqueries only in WHERE clause (we do not count SELECTs of underlying
    views, and second level subqueries) and we have not grpouping, ordering,
1654 1655 1656
    HAVING clause, aggregate functions, DISTINCT clause, LIMIT clause and
    several underlying tables.

unknown's avatar
VIEW  
unknown committed
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666
  RETURN
    FALSE - only temporary table algorithm can be used
    TRUE  - merge algorithm can be used
*/

bool st_lex::can_be_merged()
{
  // TODO: do not forget implement case when select_lex.table_list.elements==0

  /* find non VIEW subqueries/unions */
1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
  bool selects_allow_merge= select_lex.next_select() == 0;
  if (selects_allow_merge)
  {
    for (SELECT_LEX_UNIT *unit= select_lex.first_inner_unit();
         unit;
         unit= unit->next_unit())
    {
      if (unit->first_select()->parent_lex == this &&
          (unit->item == 0 || unit->item->place() != IN_WHERE))
      {
        selects_allow_merge= 0;
        break;
      }
    }
  }

  return (selects_allow_merge &&
unknown's avatar
VIEW  
unknown committed
1684 1685 1686
	  select_lex.order_list.elements == 0 &&
	  select_lex.group_list.elements == 0 &&
	  select_lex.having == 0 &&
1687
          select_lex.with_sum_func == 0 &&
1688
	  select_lex.table_list.elements >= 1 &&
unknown's avatar
VIEW  
unknown committed
1689
	  !(select_lex.options & SELECT_DISTINCT) &&
1690
          select_lex.select_limit == 0);
unknown's avatar
VIEW  
unknown committed
1691 1692
}

1693

unknown's avatar
VIEW  
unknown committed
1694
/*
1695
  check if command can use VIEW with MERGE algorithm (for top VIEWs)
unknown's avatar
VIEW  
unknown committed
1696 1697 1698 1699

  SYNOPSIS
    st_lex::can_use_merged()

1700 1701 1702 1703 1704
  DESCRIPTION
    Only listed here commands can use merge algorithm in top level
    SELECT_LEX (for subqueries will be used merge algorithm if
    st_lex::can_not_use_merged() is not TRUE).

unknown's avatar
VIEW  
unknown committed
1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
  RETURN
    FALSE - command can't use merged VIEWs
    TRUE  - VIEWs with MERGE algorithms can be used
*/

bool st_lex::can_use_merged()
{
  switch (sql_command)
  {
  case SQLCOM_SELECT:
  case SQLCOM_CREATE_TABLE:
  case SQLCOM_UPDATE:
  case SQLCOM_UPDATE_MULTI:
  case SQLCOM_DELETE:
  case SQLCOM_DELETE_MULTI:
  case SQLCOM_INSERT:
  case SQLCOM_INSERT_SELECT:
  case SQLCOM_REPLACE:
  case SQLCOM_REPLACE_SELECT:
1724
  case SQLCOM_LOAD:
unknown's avatar
VIEW  
unknown committed
1725 1726 1727 1728 1729 1730
    return TRUE;
  default:
    return FALSE;
  }
}

1731
/*
1732
  Check if command can't use merged views in any part of command
1733 1734 1735 1736

  SYNOPSIS
    st_lex::can_not_use_merged()

1737 1738 1739 1740
  DESCRIPTION
    Temporary table algorithm will be used on all SELECT levels for queries
    listed here (see also st_lex::can_use_merged()).

1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
  RETURN
    FALSE - command can't use merged VIEWs
    TRUE  - VIEWs with MERGE algorithms can be used
*/

bool st_lex::can_not_use_merged()
{
  switch (sql_command)
  {
  case SQLCOM_CREATE_VIEW:
  case SQLCOM_SHOW_CREATE:
1752 1753 1754 1755 1756 1757
  /*
    SQLCOM_SHOW_FIELDS is necessary to make 
    information schema tables working correctly with views.
    see get_schema_tables_result function
  */
  case SQLCOM_SHOW_FIELDS:
1758 1759 1760 1761 1762 1763
    return TRUE;
  default:
    return FALSE;
  }
}

unknown's avatar
VIEW  
unknown committed
1764 1765 1766 1767 1768 1769 1770 1771 1772 1773
/*
  Detect that we need only table structure of derived table/view

  SYNOPSIS
    only_view_structure()

  RETURN
    TRUE yes, we need only structure
    FALSE no, we need data
*/
unknown's avatar
unknown committed
1774

unknown's avatar
VIEW  
unknown committed
1775 1776
bool st_lex::only_view_structure()
{
1777
  switch (sql_command) {
unknown's avatar
VIEW  
unknown committed
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
  case SQLCOM_SHOW_CREATE:
  case SQLCOM_SHOW_TABLES:
  case SQLCOM_SHOW_FIELDS:
  case SQLCOM_REVOKE_ALL:
  case SQLCOM_REVOKE:
  case SQLCOM_GRANT:
  case SQLCOM_CREATE_VIEW:
    return TRUE;
  default:
    return FALSE;
  }
}


unknown's avatar
unknown committed
1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
/*
  Should Items_ident be printed correctly

  SYNOPSIS
    need_correct_ident()

  RETURN
    TRUE yes, we need only structure
    FALSE no, we need data
*/


bool st_lex::need_correct_ident()
{
  switch(sql_command)
  {
  case SQLCOM_SHOW_CREATE:
  case SQLCOM_SHOW_TABLES:
  case SQLCOM_CREATE_VIEW:
    return TRUE;
  default:
    return FALSE;
  }
}

1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841
/*
  Get effective type of CHECK OPTION for given view

  SYNOPSIS
    get_effective_with_check()
    view    given view

  NOTE
    It have not sense to set CHECK OPTION for SELECT satement or subqueries,
    so we do not.

  RETURN
    VIEW_CHECK_NONE      no need CHECK OPTION
    VIEW_CHECK_LOCAL     CHECK OPTION LOCAL
    VIEW_CHECK_CASCADED  CHECK OPTION CASCADED
*/

uint8 st_lex::get_effective_with_check(st_table_list *view)
{
  if (view->select_lex->master_unit() == &unit &&
      which_check_option_applicable())
    return (uint8)view->with_check;
  return VIEW_CHECK_NONE;
}

unknown's avatar
unknown committed
1842

unknown's avatar
unknown committed
1843 1844 1845 1846 1847 1848 1849
/*
  initialize limit counters

  SYNOPSIS
    st_select_lex_unit::set_limit()
    values	- SELECT_LEX with initial values for counters
*/
unknown's avatar
VIEW  
unknown committed
1850

1851
void st_select_lex_unit::set_limit(SELECT_LEX *sl)
1852
{
1853
  ha_rows select_limit_val;
1854

unknown's avatar
Rename:  
unknown committed
1855
  DBUG_ASSERT(! thd->stmt_arena->is_stmt_prepare());
1856 1857 1858 1859
  select_limit_val= (ha_rows)(sl->select_limit ? sl->select_limit->val_uint() :
                                                 HA_POS_ERROR);
  offset_limit_cnt= (ha_rows)(sl->offset_limit ? sl->offset_limit->val_uint() :
                                                 ULL(0));
1860 1861
  select_limit_cnt= select_limit_val + offset_limit_cnt;
  if (select_limit_cnt < select_limit_val)
1862 1863 1864
    select_limit_cnt= HA_POS_ERROR;		// no limit
}

unknown's avatar
unknown committed
1865

1866
/*
1867 1868
  Unlink the first table from the global table list and the first table from
  outer select (lex->select_lex) local list
1869 1870 1871

  SYNOPSIS
    unlink_first_table()
1872
    link_to_local	Set to 1 if caller should link this table to local list
unknown's avatar
unknown committed
1873

unknown's avatar
VIEW  
unknown committed
1874
  NOTES
1875 1876
    We assume that first tables in both lists is the same table or the local
    list is empty.
1877 1878

  RETURN
1879
    0	If 'query_tables' == 0
unknown's avatar
VIEW  
unknown committed
1880
    unlinked table
1881
      In this case link_to_local is set.
unknown's avatar
unknown committed
1882

1883
*/
unknown's avatar
VIEW  
unknown committed
1884
TABLE_LIST *st_lex::unlink_first_table(bool *link_to_local)
1885
{
unknown's avatar
VIEW  
unknown committed
1886 1887 1888 1889 1890 1891 1892 1893
  TABLE_LIST *first;
  if ((first= query_tables))
  {
    /*
      Exclude from global table list
    */
    if ((query_tables= query_tables->next_global))
      query_tables->prev_global= &query_tables;
1894 1895
    else
      query_tables_last= &query_tables;
unknown's avatar
VIEW  
unknown committed
1896 1897 1898 1899 1900 1901 1902
    first->next_global= 0;

    /*
      and from local list if it is not empty
    */
    if ((*link_to_local= test(select_lex.table_list.first)))
    {
1903 1904
      select_lex.context.table_list= 
        select_lex.context.first_name_resolution_table= first->next_local;
unknown's avatar
unknown committed
1905
      select_lex.table_list.first= (byte*) (first->next_local);
unknown's avatar
VIEW  
unknown committed
1906 1907 1908
      select_lex.table_list.elements--;	//safety
      first->next_local= 0;
      /*
1909 1910
        Ensure that the global list has the same first table as the local
        list.
unknown's avatar
VIEW  
unknown committed
1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926
      */
      first_lists_tables_same();
    }
  }
  return first;
}


/*
  Bring first local table of first most outer select to first place in global
  table list

  SYNOPSYS
     st_lex::first_lists_tables_same()

  NOTES
1927 1928 1929 1930 1931 1932
    In many cases (for example, usual INSERT/DELETE/...) the first table of
    main SELECT_LEX have special meaning => check that it is the first table
    in global list and re-link to be first in the global list if it is
    necessary.  We need such re-linking only for queries with sub-queries in
    the select list, as only in this case tables of sub-queries will go to
    the global list first.
unknown's avatar
VIEW  
unknown committed
1933 1934 1935 1936 1937 1938 1939
*/

void st_lex::first_lists_tables_same()
{
  TABLE_LIST *first_table= (TABLE_LIST*) select_lex.table_list.first;
  if (query_tables != first_table && first_table != 0)
  {
1940
    TABLE_LIST *next;
unknown's avatar
VIEW  
unknown committed
1941 1942
    if (query_tables_last == &first_table->next_global)
      query_tables_last= first_table->prev_global;
1943

1944
    if ((next= *first_table->prev_global= first_table->next_global))
unknown's avatar
VIEW  
unknown committed
1945 1946 1947 1948
      next->prev_global= first_table->prev_global;
    /* include in new place */
    first_table->next_global= query_tables;
    /*
1949 1950 1951
       We are sure that query_tables is not 0, because first_table was not
       first table in the global list => we can use
       query_tables->prev_global without check of query_tables
unknown's avatar
VIEW  
unknown committed
1952 1953 1954 1955 1956
    */
    query_tables->prev_global= &first_table->next_global;
    first_table->prev_global= &query_tables;
    query_tables= first_table;
  }
1957 1958
}

unknown's avatar
unknown committed
1959

1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
/*
  Add implicitly used time zone description tables to global table list
  (if needed).

  SYNOPSYS
    st_lex::add_time_zone_tables_to_query_tables()
      thd - pointer to current thread context

  RETURN VALUE
   TRUE  - error
   FALSE - success
*/

bool st_lex::add_time_zone_tables_to_query_tables(THD *thd)
{
  /* We should not add these tables twice */
  if (!time_zone_tables_used)
  {
    time_zone_tables_used= my_tz_get_table_list(thd, &query_tables_last);
    if (time_zone_tables_used == &fake_time_zone_tables_list)
      return TRUE;
  }
  return FALSE;
}

1985
/*
unknown's avatar
unknown committed
1986
  Link table back that was unlinked with unlink_first_table()
1987 1988 1989

  SYNOPSIS
    link_first_table_back()
unknown's avatar
VIEW  
unknown committed
1990
    link_to_local	do we need link this table to local
1991 1992 1993 1994

  RETURN
    global list
*/
unknown's avatar
VIEW  
unknown committed
1995 1996 1997

void st_lex::link_first_table_back(TABLE_LIST *first,
				   bool link_to_local)
1998
{
unknown's avatar
VIEW  
unknown committed
1999
  if (first)
2000
  {
unknown's avatar
VIEW  
unknown committed
2001 2002
    if ((first->next_global= query_tables))
      query_tables->prev_global= &first->next_global;
2003 2004
    else
      query_tables_last= &first->next_global;
unknown's avatar
VIEW  
unknown committed
2005 2006 2007 2008 2009
    query_tables= first;

    if (link_to_local)
    {
      first->next_local= (TABLE_LIST*) select_lex.table_list.first;
unknown's avatar
unknown committed
2010 2011
      select_lex.context.table_list= first;
      select_lex.table_list.first= (byte*) first;
unknown's avatar
VIEW  
unknown committed
2012 2013 2014 2015 2016 2017
      select_lex.table_list.elements++;	//safety
    }
  }
}


2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049

/*
  cleanup lex for case when we open table by table for processing

  SYNOPSIS
    st_lex::cleanup_after_one_table_open()
*/

void st_lex::cleanup_after_one_table_open()
{
  /*
    thd->lex->derived_tables & additional units may be set if we open
    a view. It is necessary to clear thd->lex->derived_tables flag
    to prevent processing of derived tables during next open_and_lock_tables
    if next table is a real table and cleanup & remove underlying units
    NOTE: all units will be connected to thd->lex->select_lex, because we
    have not UNION on most upper level.
    */
  if (all_selects_list != &select_lex)
  {
    derived_tables= 0;
    /* cleunup underlying units (units of VIEW) */
    for (SELECT_LEX_UNIT *un= select_lex.first_inner_unit();
         un;
         un= un->next_unit())
      un->cleanup();
    /* reduce all selects list to default state */
    all_selects_list= &select_lex;
    /* remove underlying units (units of VIEW) subtree */
    select_lex.cut_subtree();
  }
  time_zone_tables_used= 0;
2050 2051
  if (sroutines.records)
    my_hash_reset(&sroutines);
2052
  sroutines_list.empty();
2053 2054
  sroutines_list_own_last= sroutines_list.next;
  sroutines_list_own_elements= 0;
2055 2056 2057
}


2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086
/*
  Do end-of-prepare fixup for list of tables and their merge-VIEWed tables

  SYNOPSIS
    fix_prepare_info_in_table_list()
      thd  Thread handle
      tbl  List of tables to process

  DESCRIPTION
    Perform end-end-of prepare fixup for list of tables, if any of the tables
    is a merge-algorithm VIEW, recursively fix up its underlying tables as
    well.

*/

static void fix_prepare_info_in_table_list(THD *thd, TABLE_LIST *tbl)
{
  for (; tbl; tbl= tbl->next_local)
  {
    if (tbl->on_expr)
    {
      tbl->prep_on_expr= tbl->on_expr;
      tbl->on_expr= tbl->on_expr->copy_andor_structure(thd);
    }
    fix_prepare_info_in_table_list(thd, tbl->merge_underlying_list);
  }
}


unknown's avatar
VIEW  
unknown committed
2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097
/*
  fix some structures at the end of preparation

  SYNOPSIS
    st_select_lex::fix_prepare_information
    thd   thread handler
    conds pointer on conditions which will be used for execution statement
*/

void st_select_lex::fix_prepare_information(THD *thd, Item **conds)
{
unknown's avatar
Rename:  
unknown committed
2098
  if (!thd->stmt_arena->is_conventional() && first_execution)
unknown's avatar
VIEW  
unknown committed
2099 2100
  {
    first_execution= 0;
2101 2102 2103 2104 2105
    if (*conds)
    {
      prep_where= *conds;
      *conds= where= prep_where->copy_andor_structure(thd);
    }
2106
    fix_prepare_info_in_table_list(thd, (TABLE_LIST *)table_list.first);
2107 2108 2109
  }
}

unknown's avatar
unknown committed
2110
/*
unknown's avatar
VIEW  
unknown committed
2111
  There are st_select_lex::add_table_to_list &
unknown's avatar
unknown committed
2112
  st_select_lex::set_lock_for_tables are in sql_parse.cc
unknown's avatar
unknown committed
2113

unknown's avatar
VIEW  
unknown committed
2114
  st_select_lex::print is in sql_select.cc
unknown's avatar
unknown committed
2115 2116

  st_select_lex_unit::prepare, st_select_lex_unit::exec,
2117 2118
  st_select_lex_unit::cleanup, st_select_lex_unit::reinit_exec_mechanism,
  st_select_lex_unit::change_result
unknown's avatar
unknown committed
2119
  are in sql_union.cc
unknown's avatar
unknown committed
2120
*/
2121