sql_lex.cc 45.4 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 20 21 22 23 24
   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 */

#include "mysql_priv.h"
#include "item_create.h"
#include <m_ctype.h>
#include <hash.h>

25 26 27 28 29 30 31 32 33 34

/*
  Fake table list object, pointer to which is used as special value for
  st_lex::time_zone_tables_used indicating that we implicitly use time
  zone tables in this statement but real table list was not yet created.
  Pointer to it is also returned by my_tz_get_tables_list() as indication
  of transient error;
*/
TABLE_LIST fake_time_zone_tables_list;

unknown's avatar
unknown committed
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
/* 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)

#if MYSQL_VERSION_ID < 32300
#define FLOAT_NUM	REAL_NUM
#endif

pthread_key(LEX*,THR_LEX);

51
/* Longest standard keyword name */
unknown's avatar
unknown committed
52 53
#define TOCK_NAME_LENGTH 24

54 55
/*
  The following data is based on the latin1 character set, and is only
unknown's avatar
unknown committed
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
  used when comparing keywords
*/

uchar to_upper_lex[] = {
    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
};

78

unknown's avatar
unknown committed
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 108 109 110
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;
}


111 112 113 114 115 116
/*
  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
117
void lex_start(THD *thd, uchar *buf,uint length)
unknown's avatar
unknown committed
118
{
119
  LEX *lex= thd->lex;
120 121
  lex->unit.init_query();
  lex->unit.init_select();
unknown's avatar
unknown committed
122
  lex->thd= thd;
123 124 125
  lex->unit.thd= thd;
  lex->select_lex.init_query();
  lex->value_list.empty();
unknown's avatar
unknown committed
126
  lex->update_list.empty();
127 128 129 130 131 132 133 134 135 136 137 138
  lex->param_list.empty();
  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;
  lex->describe= 0;
139
  lex->subqueries= lex->derived_tables= FALSE;
140 141 142 143 144
  lex->lock_option= TL_READ;
  lex->found_colon= 0;
  lex->safe_to_cache_query= 1;
  lex->time_zone_tables_used= 0;
  lex->select_lex.select_number= 1;
145
  lex->next_state=MY_LEX_START;
unknown's avatar
unknown committed
146 147
  lex->end_of_query=(lex->ptr=buf)+length;
  lex->yylineno = 1;
unknown's avatar
unknown committed
148
  lex->in_comment=0;
unknown's avatar
unknown committed
149
  lex->length=0;
unknown's avatar
unknown committed
150 151
  lex->select_lex.in_sum_expr=0;
  lex->select_lex.expr_list.empty();
unknown's avatar
merging  
unknown committed
152
  lex->select_lex.ftfunc_list_alloc.empty();
153
  lex->select_lex.ftfunc_list= &lex->select_lex.ftfunc_list_alloc;
unknown's avatar
unknown committed
154 155
  lex->select_lex.group_list.empty();
  lex->select_lex.order_list.empty();
unknown's avatar
unknown committed
156
  lex->current_select= &lex->select_lex;
unknown's avatar
unknown committed
157
  lex->yacc_yyss=lex->yacc_yyvs=0;
158
  lex->ignore_space=test(thd->variables.sql_mode & MODE_IGNORE_SPACE);
159
  lex->sql_command=SQLCOM_END;
160
  lex->duplicates= DUP_ERROR;
161
  lex->ignore= 0;
162
  lex->proc_list.first= 0;
unknown's avatar
unknown committed
163 164 165 166
}

void lex_end(LEX *lex)
{
unknown's avatar
unknown committed
167 168 169
  for (SELECT_LEX *sl= lex->all_selects_list;
       sl;
       sl= sl->next_select_in_list())
170
    sl->expr_list.delete_elements();	// If error when parsing sql-varargs
unknown's avatar
unknown committed
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
  x_free(lex->yacc_yyss);
  x_free(lex->yacc_yyvs);
}


static int find_keyword(LEX *lex, uint len, bool function)
{
  uchar *tok=lex->tok_start;

  SYMBOL *symbol = get_hash_symbol((const char *)tok,len,function);
  if (symbol)
  {
    lex->yylval->symbol.symbol=symbol;
    lex->yylval->symbol.str= (char*) tok;
    lex->yylval->symbol.length=len;
    return symbol->tok;
  }
#ifdef HAVE_DLOPEN
  udf_func *udf;
  if (function && using_udf_functions && (udf=find_udf((char*) tok, len)))
  {
192
    lex->safe_to_cache_query=0;
193
    lex->yylval->udf=udf;
unknown's avatar
unknown committed
194 195 196 197 198 199 200
    switch (udf->returns) {
    case STRING_RESULT:
      return (udf->type == UDFTYPE_FUNCTION) ? UDF_CHAR_FUNC : UDA_CHAR_SUM;
    case REAL_RESULT:
      return (udf->type == UDFTYPE_FUNCTION) ? UDF_FLOAT_FUNC : UDA_FLOAT_SUM;
    case INT_RESULT:
      return (udf->type == UDFTYPE_FUNCTION) ? UDF_INT_FUNC : UDA_INT_SUM;
201
    case ROW_RESULT:
unknown's avatar
unknown committed
202
    default:
unknown's avatar
unknown committed
203 204 205
      // This case should never be choosen
      DBUG_ASSERT(0);
      return 0;
unknown's avatar
unknown committed
206 207 208 209 210 211
    }
  }
#endif
  return 0;
}

212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
/*
  Check if name is a keyword

  SYNOPSIS
    is_keyword()
    name      checked name
    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)
{
  return get_hash_symbol(name,len,0)!=0;
}
unknown's avatar
unknown committed
229 230 231

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

232
static LEX_STRING get_token(LEX *lex,uint length)
unknown's avatar
unknown committed
233 234 235 236
{
  LEX_STRING tmp;
  yyUnget();			// ptr points now after last token char
  tmp.length=lex->yytoklen=length;
237
  tmp.str=(char*) lex->thd->strmake((char*) lex->tok_start,tmp.length);
unknown's avatar
unknown committed
238 239 240
  return tmp;
}

241 242 243 244 245 246 247
/* 
 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)
*/

248 249 250 251 252 253 254
static LEX_STRING get_quoted_token(LEX *lex,uint length, char quote)
{
  LEX_STRING tmp;
  byte *from, *to, *end;
  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
255 256 257
  for (from= (byte*) lex->tok_start, to= (byte*) tmp.str, end= to+length ;
       to != end ;
       )
258 259 260 261 262 263 264 265 266 267 268 269 270
  {
    if ((*to++= *from++) == quote)
      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
271 272 273 274 275

static char *get_text(LEX *lex)
{
  reg1 uchar c,sep;
  uint found_escape=0;
276
  CHARSET_INFO *cs= lex->thd->charset();
unknown's avatar
unknown committed
277 278 279 280 281 282 283 284

  sep= yyGetLast();			// String should end with this
  //lex->tok_start=lex->ptr-1;		// Remember '
  while (lex->ptr != lex->end_of_query)
  {
    c = yyGet();
#ifdef USE_MB
    int l;
unknown's avatar
unknown committed
285 286
    if (use_mb(cs) &&
        (l = my_ismbchar(cs,
unknown's avatar
unknown committed
287 288 289 290 291 292 293 294 295 296 297
                         (const char *)lex->ptr-1,
                         (const char *)lex->end_of_query))) {
	lex->ptr += l-1;
	continue;
    }
#endif
    if (c == '\\')
    {					// Escaped character
      found_escape=1;
      if (lex->ptr == lex->end_of_query)
	return 0;
298 299 300 301 302 303 304 305 306 307 308 309
#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
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
    }
    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 */
      uchar *str,*end,*start;

      str=lex->tok_start+1;
      end=lex->ptr-1;
326
      if (!(start=(uchar*) lex->thd->alloc((uint) (end-str)+1)))
unknown's avatar
unknown committed
327
	return (char*) "";		// Sql_alloc has set error flag
unknown's avatar
unknown committed
328 329 330 331 332 333 334 335 336
      if (!found_escape)
      {
	lex->yytoklen=(uint) (end-str);
	memcpy(start,str,lex->yytoklen);
	start[lex->yytoklen]=0;
      }
      else
      {
	uchar *to;
337 338 339 340

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

unknown's avatar
unknown committed
341 342 343 344
	for (to=start ; str != end ; str++)
	{
#ifdef USE_MB
	  int l;
unknown's avatar
unknown committed
345 346
	  if (use_mb(cs) &&
              (l = my_ismbchar(cs,
unknown's avatar
unknown committed
347 348 349 350 351 352 353
                               (const char *)str, (const char *)end))) {
	      while (l--)
		  *to++ = *str++;
	      str--;
	      continue;
	  }
#endif
354
	  if (!found_escape && *str == '\\' && str+1 != end)
unknown's avatar
unknown committed
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
	  {
	    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:
380 381
              found_escape= 1;
              str--;
unknown's avatar
unknown committed
382 383 384
	      break;
	    }
	  }
385 386 387 388
	  else if (!found_escape && *str == sep)
          {
            found_escape= 1;
          }
unknown's avatar
unknown committed
389
	  else
390
          {
unknown's avatar
unknown committed
391
	    *to++ = *str;
392 393
            found_escape= 0;
          }
unknown's avatar
unknown committed
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
	}
	*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
420 421
static const char *unsigned_longlong_str="18446744073709551615";
static const uint unsigned_longlong_len=20;
unknown's avatar
unknown committed
422

unknown's avatar
unknown committed
423
static inline uint int_token(const char *str,uint length)
unknown's avatar
unknown committed
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 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
{
  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)
      return REAL_NUM;
    else
    {
      cmp=signed_longlong_str+1;
      smaller=LONG_NUM;				// If <= signed_longlong_str
      bigger=REAL_NUM;
    }
  }
  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
477 478 479 480 481 482 483
    {
      if (length > unsigned_longlong_len)
	return REAL_NUM;
      cmp=unsigned_longlong_str;
      smaller=ULONGLONG_NUM;
      bigger=REAL_NUM;
    }
unknown's avatar
unknown committed
484 485 486 487
    else
    {
      cmp=longlong_str;
      smaller=LONG_NUM;
488
      bigger= ULONGLONG_NUM;
unknown's avatar
unknown committed
489 490 491 492 493 494
    }
  }
  while (*cmp && *cmp++ == *str++) ;
  return ((uchar) str[-1] <= (uchar) cmp[-1]) ? smaller : bigger;
}

495 496 497 498 499 500 501
/*
  yylex remember the following states from the following yylex()

  - 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
502

unknown's avatar
unknown committed
503
int yylex(void *arg, void *yythd)
unknown's avatar
unknown committed
504 505
{
  reg1	uchar c;
506
  int	tokval, result_state;
unknown's avatar
unknown committed
507
  uint length;
unknown's avatar
unknown committed
508
  enum my_lex_states state;
509
  LEX	*lex= ((THD *)yythd)->lex;
unknown's avatar
unknown committed
510
  YYSTYPE *yylval=(YYSTYPE*) arg;
511
  CHARSET_INFO *cs= ((THD *) yythd)->charset();
512 513
  uchar *state_map= cs->state_map;
  uchar *ident_map= cs->ident_map;
unknown's avatar
unknown committed
514 515 516

  lex->yylval=yylval;			// The global state
  lex->tok_start=lex->tok_end=lex->ptr;
unknown's avatar
unknown committed
517
  state=lex->next_state;
518
  lex->next_state=MY_LEX_OPERATOR_OR_IDENT;
unknown's avatar
unknown committed
519 520 521
  LINT_INIT(c);
  for (;;)
  {
522
    switch (state) {
523 524
    case MY_LEX_OPERATOR_OR_IDENT:	// Next is operator or keyword
    case MY_LEX_START:			// Start of token
525
      // Skip startspace
526
      for (c=yyGet() ; (state_map[c] == MY_LEX_SKIP) ; c= yyGet())
unknown's avatar
unknown committed
527 528 529 530 531
      {
	if (c == '\n')
	  lex->yylineno++;
      }
      lex->tok_start=lex->ptr-1;	// Start of real token
532
      state= (enum my_lex_states) state_map[c];
unknown's avatar
unknown committed
533
      break;
534
    case MY_LEX_ESCAPE:
unknown's avatar
unknown committed
535 536 537 538 539 540
      if (yyGet() == 'N')
      {					// Allow \N as shortcut for NULL
	yylval->lex_str.str=(char*) "\\N";
	yylval->lex_str.length=2;
	return NULL_SYM;
      }
541 542
    case MY_LEX_CHAR:			// Unknown or single char token
    case MY_LEX_SKIP:			// This should not happen
543 544 545 546 547 548 549
      if (c == '-' && yyPeek() == '-' &&
          (my_isspace(cs,yyPeek2()) || 
           my_iscntrl(cs,yyPeek2())))
      {
        state=MY_LEX_COMMENT;
        break;
      }
unknown's avatar
unknown committed
550
      yylval->lex_str.str=(char*) (lex->ptr=lex->tok_start);// Set to first chr
unknown's avatar
unknown committed
551 552 553
      yylval->lex_str.length=1;
      c=yyGet();
      if (c != ')')
554
	lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
555 556
      if (c == ',')
	lex->tok_start=lex->ptr;	// Let tok_start point at next item
557 558 559 560 561 562 563 564 565
      /*
        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.
      */
      else if (c == '?' && ((THD*) yythd)->command == COM_PREPARE &&
               !ident_map[cs, yyPeek()])
        return(PARAM_MARKER);
unknown's avatar
unknown committed
566 567
      return((int) c);

unknown's avatar
unknown committed
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
    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);

588
    case MY_LEX_IDENT_OR_HEX:
unknown's avatar
unknown committed
589
      if (yyPeek() == '\'')
590
      {					// Found x'hex-number'
591
	state= MY_LEX_HEX_NUMBER;
592 593
	break;
      }
unknown's avatar
unknown committed
594
      /* Fall through */
595 596
    case MY_LEX_IDENT_OR_BIN:		// TODO: Add binary string handling
    case MY_LEX_IDENT:
unknown's avatar
unknown committed
597
      uchar *start;
unknown's avatar
unknown committed
598
#if defined(USE_MB) && defined(USE_MB_IDENT)
599
      if (use_mb(cs))
unknown's avatar
unknown committed
600
      {
601
	result_state= IDENT_QUOTED;
602
        if (my_mbcharlen(cs, yyGetLast()) > 1)
unknown's avatar
unknown committed
603
        {
604
          int l = my_ismbchar(cs,
unknown's avatar
unknown committed
605 606 607
                              (const char *)lex->ptr-1,
                              (const char *)lex->end_of_query);
          if (l == 0) {
608
            state = MY_LEX_CHAR;
unknown's avatar
unknown committed
609 610 611 612
            continue;
          }
          lex->ptr += l - 1;
        }
unknown's avatar
unknown committed
613
        while (ident_map[c=yyGet()])
unknown's avatar
unknown committed
614
        {
615
          if (my_mbcharlen(cs, c) > 1)
unknown's avatar
unknown committed
616 617
          {
            int l;
618
            if ((l = my_ismbchar(cs,
unknown's avatar
unknown committed
619 620 621 622 623 624 625 626 627
                              (const char *)lex->ptr-1,
                              (const char *)lex->end_of_query)) == 0)
              break;
            lex->ptr += l-1;
          }
        }
      }
      else
#endif
628
      {
unknown's avatar
unknown committed
629 630 631
        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;
632
      }
unknown's avatar
unknown committed
633
      length= (uint) (lex->ptr - lex->tok_start)-1;
unknown's avatar
unknown committed
634
      start= lex->ptr;
unknown's avatar
unknown committed
635 636
      if (lex->ignore_space)
      {
unknown's avatar
unknown committed
637 638 639 640 641
        /*
          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
642
      }
unknown's avatar
unknown committed
643
      if (start == lex->ptr && c == '.' && ident_map[yyPeek()])
644
	lex->next_state=MY_LEX_IDENT_SEP;
unknown's avatar
unknown committed
645 646 647 648 649
      else
      {					// '(' must follow directly if function
	yyUnget();
	if ((tokval = find_keyword(lex,length,c == '(')))
	{
650
	  lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
651 652 653 654 655
	  return(tokval);		// Was keyword
	}
	yySkip();			// next state does a unget
      }
      yylval->lex_str=get_token(lex,length);
656 657 658 659

      /* 
         Note: "SELECT _bla AS 'alias'"
         _bla should be considered as a IDENT if charset haven't been found.
660
         So we don't use MYF(MY_WME) with get_charset_by_csname to avoid 
661 662 663 664
         producing an error.
      */

      if ((yylval->lex_str.str[0]=='_') && 
unknown's avatar
unknown committed
665 666
          (lex->charset=get_charset_by_csname(yylval->lex_str.str+1,
					      MY_CS_PRIMARY,MYF(0))))
667
        return(UNDERSCORE_CHARSET);
668
      return(result_state);			// IDENT or IDENT_QUOTED
unknown's avatar
unknown committed
669

670
    case MY_LEX_IDENT_SEP:		// Found ident and now '.'
unknown's avatar
unknown committed
671 672 673
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      c=yyGet();			// should be '.'
674 675 676
      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
677 678
      return((int) c);

679 680
    case MY_LEX_NUMBER_IDENT:		// number or ident which num-start
      while (my_isdigit(cs,(c = yyGet()))) ;
unknown's avatar
unknown committed
681
      if (!ident_map[c])
unknown's avatar
unknown committed
682
      {					// Can't be identifier
683
	state=MY_LEX_INT_OR_REAL;
unknown's avatar
unknown committed
684 685 686 687
	break;
      }
      if (c == 'e' || c == 'E')
      {
unknown's avatar
unknown committed
688
	// The following test is written this way to allow numbers of type 1e1
689
	if (my_isdigit(cs,yyPeek()) || 
690
            (c=(yyGet())) == '+' || c == '-')
unknown's avatar
unknown committed
691
	{				// Allow 1E+10
692
	  if (my_isdigit(cs,yyPeek()))	// Number must have digit after sign
unknown's avatar
unknown committed
693 694
	  {
	    yySkip();
695
	    while (my_isdigit(cs,yyGet())) ;
unknown's avatar
unknown committed
696 697 698 699 700 701 702 703 704
	    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
705
	while (my_isxdigit(cs,(c = yyGet()))) ;
unknown's avatar
unknown committed
706
	if ((lex->ptr - lex->tok_start) >= 4 && !ident_map[c])
unknown's avatar
unknown committed
707 708
	{
	  yylval->lex_str=get_token(lex,yyLength());
709
	  yylval->lex_str.str+=2;		// Skip 0x
unknown's avatar
unknown committed
710 711 712 713 714 715 716
	  yylval->lex_str.length-=2;
	  lex->yytoklen-=2;
	  return (HEX_NUM);
	}
	yyUnget();
      }
      // fall through
717
    case MY_LEX_IDENT_START:			// We come here after '.'
718
      result_state= IDENT;
unknown's avatar
unknown committed
719
#if defined(USE_MB) && defined(USE_MB_IDENT)
720
      if (use_mb(cs))
unknown's avatar
unknown committed
721
      {
722
	result_state= IDENT_QUOTED;
unknown's avatar
unknown committed
723
        while (ident_map[c=yyGet()])
unknown's avatar
unknown committed
724
        {
725
          if (my_mbcharlen(cs, c) > 1)
unknown's avatar
unknown committed
726 727
          {
            int l;
728
            if ((l = my_ismbchar(cs,
unknown's avatar
unknown committed
729 730 731 732 733 734 735 736 737
                                 (const char *)lex->ptr-1,
                                 (const char *)lex->end_of_query)) == 0)
              break;
            lex->ptr += l-1;
          }
        }
      }
      else
#endif
unknown's avatar
unknown committed
738 739 740 741 742
      {
        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
743
      if (c == '.' && ident_map[yyPeek()])
744
	lex->next_state=MY_LEX_IDENT_SEP;// Next is '.'
unknown's avatar
unknown committed
745

746 747
      yylval->lex_str= get_token(lex,yyLength());
      return(result_state);
unknown's avatar
unknown committed
748

749
    case MY_LEX_USER_VARIABLE_DELIMITER:	// Found quote char
750
    {
751 752
      uint double_quotes= 0;
      char quote_char= c;                       // Used char
unknown's avatar
unknown committed
753
      lex->tok_start=lex->ptr;			// Skip first `
754
      while ((c=yyGet()))
unknown's avatar
unknown committed
755
      {
756 757
	int length;
	if ((length= my_mbcharlen(cs, c)) == 1)
758
	{
759 760
	  if (c == (uchar) NAMES_SEP_CHAR)
	    break; /* Old .frm format can't handle this char */
761 762 763 764 765 766 767 768 769
	  if (c == quote_char)
	  {
	    if (yyPeek() != quote_char)
	      break;
	    c=yyGet();
	    double_quotes++;
	    continue;
	  }
	}
770
#ifdef USE_MB
771 772 773
	else if (length < 1)
	  break;				// Error
	lex->ptr+= length-1;
774
#endif
unknown's avatar
unknown committed
775
      }
776 777 778 779 780 781
      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)
782
	yySkip();			// Skip end `
783
      lex->next_state= MY_LEX_START;
784
      return(IDENT_QUOTED);
785
    }
786
    case MY_LEX_INT_OR_REAL:		// Compleat int or incompleat real
unknown's avatar
unknown committed
787 788 789 790 791 792
      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
793 794
    case MY_LEX_REAL:			// Incomplete real number
      while (my_isdigit(cs,c = yyGet())) ;
unknown's avatar
unknown committed
795 796 797 798

      if (c == 'e' || c == 'E')
      {
	c = yyGet();
unknown's avatar
unknown committed
799
	if (c == '-' || c == '+')
800
	  c = yyGet();			// Skip sign
801
	if (!my_isdigit(cs,c))
unknown's avatar
unknown committed
802
	{				// No digit after sign
803
	  state= MY_LEX_CHAR;
unknown's avatar
unknown committed
804 805
	  break;
	}
806
	while (my_isdigit(cs,yyGet())) ;
unknown's avatar
unknown committed
807 808 809 810 811 812
	yylval->lex_str=get_token(lex,yyLength());
	return(FLOAT_NUM);
      }
      yylval->lex_str=get_token(lex,yyLength());
      return(REAL_NUM);

813
    case MY_LEX_HEX_NUMBER:		// Found x'hexstring'
814
      yyGet();				// Skip '
815
      while (my_isxdigit(cs,(c = yyGet()))) ;
816 817 818 819 820 821 822 823 824 825 826 827
      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);

828 829 830
    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
831 832 833
	yySkip();
      if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
      {
834
	lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
835 836
	return(tokval);
      }
837
      state = MY_LEX_CHAR;		// Something fishy found
unknown's avatar
unknown committed
838 839
      break;

840 841 842
    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
843 844
      {
	yySkip();
845
	if (state_map[yyPeek()] == MY_LEX_CMP_OP)
unknown's avatar
unknown committed
846 847 848 849
	  yySkip();
      }
      if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
      {
850
	lex->next_state= MY_LEX_START;	// Found long op
unknown's avatar
unknown committed
851 852
	return(tokval);
      }
853
      state = MY_LEX_CHAR;		// Something fishy found
unknown's avatar
unknown committed
854 855
      break;

856
    case MY_LEX_BOOL:
unknown's avatar
unknown committed
857 858
      if (c != yyPeek())
      {
859
	state=MY_LEX_CHAR;
unknown's avatar
unknown committed
860 861 862 863
	break;
      }
      yySkip();
      tokval = find_keyword(lex,2,0);	// Is a bool operator
864
      lex->next_state= MY_LEX_START;	// Allow signed numbers
unknown's avatar
unknown committed
865 866
      return(tokval);

867
    case MY_LEX_STRING_OR_DELIMITER:
868 869
      if (((THD *) yythd)->variables.sql_mode & MODE_ANSI_QUOTES)
      {
870
	state= MY_LEX_USER_VARIABLE_DELIMITER;
871 872 873
	break;
      }
      /* " used for strings */
874
    case MY_LEX_STRING:			// Incomplete text string
unknown's avatar
unknown committed
875 876
      if (!(yylval->lex_str.str = get_text(lex)))
      {
877
	state= MY_LEX_CHAR;		// Read char by char
unknown's avatar
unknown committed
878 879 880 881 882
	break;
      }
      yylval->lex_str.length=lex->yytoklen;
      return(TEXT_STRING);

883
    case MY_LEX_COMMENT:			//  Comment
unknown's avatar
unknown committed
884
      lex->select_lex.options|= OPTION_FOUND_COMMENT;
unknown's avatar
unknown committed
885 886
      while ((c = yyGet()) != '\n' && c) ;
      yyUnget();			// Safety against eof
887
      state = MY_LEX_START;		// Try again
unknown's avatar
unknown committed
888
      break;
889
    case MY_LEX_LONG_COMMENT:		/* Long C comment? */
unknown's avatar
unknown committed
890 891
      if (yyPeek() != '*')
      {
892
	state=MY_LEX_CHAR;		// Probable division
unknown's avatar
unknown committed
893 894 895
	break;
      }
      yySkip();				// Skip '*'
unknown's avatar
unknown committed
896
      lex->select_lex.options|= OPTION_FOUND_COMMENT;
unknown's avatar
unknown committed
897 898 899 900
      if (yyPeek() == '!')		// MySQL command in comment
      {
	ulong version=MYSQL_VERSION_ID;
	yySkip();
901 902
	state=MY_LEX_START;
	if (my_isdigit(cs,yyPeek()))
unknown's avatar
unknown committed
903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919
	{				// 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 '/'
920
      state = MY_LEX_START;		// Try again
unknown's avatar
unknown committed
921
      break;
922
    case MY_LEX_END_LONG_COMMENT:
unknown's avatar
unknown committed
923 924 925 926
      if (lex->in_comment && yyPeek() == '/')
      {
	yySkip();
	lex->in_comment=0;
927
	state=MY_LEX_START;
unknown's avatar
unknown committed
928 929
      }
      else
930
	state=MY_LEX_CHAR;		// Return '*'
unknown's avatar
unknown committed
931
      break;
932
    case MY_LEX_SET_VAR:		// Check if ':='
unknown's avatar
unknown committed
933 934
      if (yyPeek() != '=')
      {
935
	state=MY_LEX_CHAR;		// Return ':'
unknown's avatar
unknown committed
936 937 938 939
	break;
      }
      yySkip();
      return (SET_VAR);
940
    case MY_LEX_SEMICOLON:			// optional line terminator
unknown's avatar
unknown committed
941 942
      if (yyPeek())
      {
943 944 945
        THD* thd= (THD*)yythd;
        if ((thd->client_capabilities & CLIENT_MULTI_STATEMENTS) && 
            (thd->command != COM_PREPARE))
946
        {
947
	  lex->safe_to_cache_query=0;
948
          lex->found_colon=(char*)lex->ptr;
949
          thd->server_status |= SERVER_MORE_RESULTS_EXISTS;
950
          lex->next_state=MY_LEX_END;
951 952 953
          return(END_OF_INPUT);
        }
        else
954
 	  state=MY_LEX_CHAR;		// Return ';'
unknown's avatar
unknown committed
955 956 957
	break;
      }
      /* fall true */
958
    case MY_LEX_EOL:
unknown's avatar
unknown committed
959 960 961 962 963 964 965
      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;
966 967
    case MY_LEX_END:
      lex->next_state=MY_LEX_END;
unknown's avatar
unknown committed
968
      return(0);			// We found end of input last time
969 970
      
      /* Actually real shouldn't start with . but allow them anyhow */
971 972 973
    case MY_LEX_REAL_OR_POINT:
      if (my_isdigit(cs,yyPeek()))
	state = MY_LEX_REAL;		// Real
unknown's avatar
unknown committed
974 975
      else
      {
976 977
	state= MY_LEX_IDENT_SEP;	// return '.'
	yyUnget();			// Put back '.'
unknown's avatar
unknown committed
978 979
      }
      break;
980
    case MY_LEX_USER_END:		// end '@' of user@hostname
unknown's avatar
unknown committed
981
      switch (state_map[yyPeek()]) {
982 983 984
      case MY_LEX_STRING:
      case MY_LEX_USER_VARIABLE_DELIMITER:
      case MY_LEX_STRING_OR_DELIMITER:
unknown's avatar
unknown committed
985
	break;
986 987
      case MY_LEX_USER_END:
	lex->next_state=MY_LEX_SYSTEM_VAR;
unknown's avatar
unknown committed
988 989
	break;
      default:
990
	lex->next_state=MY_LEX_HOSTNAME;
unknown's avatar
unknown committed
991 992
	break;
      }
unknown's avatar
unknown committed
993 994 995
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      return((int) '@');
996 997 998
    case MY_LEX_HOSTNAME:		// end '@' of user@hostname
      for (c=yyGet() ; 
	   my_isalnum(cs,c) || c == '.' || c == '_' ||  c == '$';
unknown's avatar
unknown committed
999 1000 1001
	   c= yyGet()) ;
      yylval->lex_str=get_token(lex,yyLength());
      return(LEX_HOSTNAME);
1002
    case MY_LEX_SYSTEM_VAR:
unknown's avatar
unknown committed
1003 1004 1005
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      yySkip();					// Skip '@'
1006 1007 1008 1009
      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
1010
      return((int) '@');
1011
    case MY_LEX_IDENT_OR_KEYWORD:
unknown's avatar
unknown committed
1012 1013 1014 1015 1016
      /*
	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
1017 1018 1019 1020 1021
      
      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
1022
      if (c == '.')
1023
	lex->next_state=MY_LEX_IDENT_SEP;
unknown's avatar
unknown committed
1024 1025 1026 1027 1028 1029 1030
      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);
1031
      return(result_state);
unknown's avatar
unknown committed
1032 1033 1034
    }
  }
}
unknown's avatar
unknown committed
1035 1036 1037 1038 1039 1040 1041

/*
  st_select_lex structures initialisations
*/

void st_select_lex_node::init_query()
{
1042 1043
  options= 0;
  linkage= UNSPECIFIED_TYPE;
1044 1045
  no_error= no_table_names_allowed= 0;
  uncacheable= 0;
unknown's avatar
unknown committed
1046 1047 1048 1049 1050 1051 1052 1053 1054
}

void st_select_lex_node::init_select()
{
}

void st_select_lex_unit::init_query()
{
  st_select_lex_node::init_query();
1055
  linkage= GLOBAL_OPTIONS_TYPE;
unknown's avatar
(SCRUM)  
unknown committed
1056
  global_parameters= first_select();
1057 1058
  select_limit_cnt= HA_POS_ERROR;
  offset_limit_cnt= 0;
1059
  union_distinct= 0;
unknown's avatar
unknown committed
1060
  prepared= optimized= executed= 0;
unknown's avatar
unknown committed
1061
  item= 0;
1062 1063
  union_result= 0;
  table= 0;
unknown's avatar
(SCRUM)  
unknown committed
1064
  fake_select_lex= 0;
1065
  cleaned= 0;
1066
  item_list.empty();
1067
  describe= 0;
unknown's avatar
unknown committed
1068 1069 1070 1071 1072
}

void st_select_lex::init_query()
{
  st_select_lex_node::init_query();
1073
  table_list.empty();
unknown's avatar
unknown committed
1074
  item_list.empty();
unknown's avatar
unknown committed
1075
  join= 0;
1076
  where= 0;
1077
  olap= UNSPECIFIED_OLAP_TYPE;
1078 1079
  having_fix_field= 0;
  resolve_mode= NOMATTER_MODE;
unknown's avatar
(SCRUM)  
unknown committed
1080 1081
  cond_count= with_wild= 0;
  ref_pointer_array= 0;
unknown's avatar
unknown committed
1082
  select_n_having_items= 0;
1083
  prep_where= 0;
1084
  subquery_in_having= explicit_limit= 0;
1085
  parsing_place= NO_MATTER;
unknown's avatar
unknown committed
1086 1087 1088 1089 1090
}

void st_select_lex::init_select()
{
  st_select_lex_node::init_select();
1091 1092 1093 1094 1095 1096
  group_list.empty();
  type= db= db1= table1= db2= table2= 0;
  having= 0;
  use_index_ptr= ignore_index_ptr= 0;
  table_join_options= 0;
  in_sum_expr= with_wild= 0;
unknown's avatar
unknown committed
1097
  options= 0;
1098
  braces= 0;
unknown's avatar
unknown committed
1099
  when_list.empty();
unknown's avatar
unknown committed
1100
  expr_list.empty();
unknown's avatar
unknown committed
1101
  interval_list.empty();
unknown's avatar
unknown committed
1102
  use_index.empty();
unknown's avatar
unknown committed
1103 1104
  ftfunc_list_alloc.empty();
  ftfunc_list= &ftfunc_list_alloc;
unknown's avatar
unknown committed
1105
  linkage= UNSPECIFIED_TYPE;
unknown's avatar
(SCRUM)  
unknown committed
1106 1107 1108 1109 1110 1111
  order_list.elements= 0;
  order_list.first= 0;
  order_list.next= (byte**) &order_list.first;
  select_limit= HA_POS_ERROR;
  offset_limit= 0;
  with_sum_func= 0;
unknown's avatar
unknown committed
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
}

/*
  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
1126
  slave= 0;
unknown's avatar
unknown committed
1127 1128
}

unknown's avatar
(SCRUM)  
unknown committed
1129 1130
/*
  include on level down (but do not link)
unknown's avatar
unknown committed
1131

unknown's avatar
(SCRUM)  
unknown committed
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
  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
1146 1147 1148 1149 1150 1151 1152 1153
/* 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
1154
  slave= 0;
unknown's avatar
unknown committed
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
}

/* 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
1169
  if (link_prev)
unknown's avatar
unknown committed
1170 1171 1172 1173
  {
    if ((*link_prev= link_next))
      link_next->link_prev= link_prev;
  }
1174 1175 1176 1177
  // Remove slave structure
  for (; slave; slave= slave->next)
    slave->fast_exclude();
  
unknown's avatar
unknown committed
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
}

/*
  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;
  */
}
1198

1199 1200 1201 1202 1203 1204 1205 1206 1207 1208

/*
  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
1209 1210 1211
void st_select_lex_unit::exclude_level()
{
  SELECT_LEX_UNIT *units= 0, **units_last= &units;
unknown's avatar
unknown committed
1212
  for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
unknown's avatar
unknown committed
1213
  {
unknown's avatar
unknown committed
1214
    // unlink current level from global SELECTs list
unknown's avatar
unknown committed
1215 1216
    if (sl->link_prev && (*sl->link_prev= sl->link_next))
      sl->link_next->link_prev= sl->link_prev;
unknown's avatar
unknown committed
1217 1218

    // bring up underlay levels
unknown's avatar
unknown committed
1219 1220
    SELECT_LEX_UNIT **last= 0;
    for (SELECT_LEX_UNIT *u= sl->first_inner_unit(); u; u= u->next_unit())
unknown's avatar
unknown committed
1221 1222
    {
      u->master= master;
unknown's avatar
unknown committed
1223
      last= (SELECT_LEX_UNIT**)&(u->next);
unknown's avatar
unknown committed
1224
    }
unknown's avatar
unknown committed
1225 1226 1227 1228 1229 1230 1231 1232
    if (last)
    {
      (*units_last)= sl->first_inner_unit();
      units_last= last;
    }
  }
  if (units)
  {
unknown's avatar
unknown committed
1233
    // include brought up levels in place of current
unknown's avatar
unknown committed
1234 1235
    (*prev)= units;
    (*units_last)= (SELECT_LEX_UNIT*)next;
unknown's avatar
unknown committed
1236 1237 1238
    if (next)
      next->prev= (SELECT_LEX_NODE**)units_last;
    units->prev= prev;
unknown's avatar
unknown committed
1239 1240
  }
  else
unknown's avatar
unknown committed
1241 1242
  {
    // exclude currect unit from list of nodes
unknown's avatar
unknown committed
1243
    (*prev)= next;
unknown's avatar
unknown committed
1244 1245 1246
    if (next)
      next->prev= prev;
  }
unknown's avatar
unknown committed
1247 1248
}

1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259

/*
  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
1260
    // unlink current level from global SELECTs list
1261 1262 1263
    if (sl->link_prev && (*sl->link_prev= sl->link_next))
      sl->link_next->link_prev= sl->link_prev;

unknown's avatar
unknown committed
1264
    // unlink underlay levels
1265 1266 1267 1268 1269
    for (SELECT_LEX_UNIT *u= sl->first_inner_unit(); u; u= u->next_unit())
    {
      u->exclude_level();
    }
  }
unknown's avatar
unknown committed
1270
  // exclude currect unit from list of nodes
1271
  (*prev)= next;
unknown's avatar
unknown committed
1272 1273
  if (next)
    next->prev= prev;
1274 1275 1276
}


unknown's avatar
unknown committed
1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
/*
  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
1289
void st_select_lex::mark_as_dependent(SELECT_LEX *last)
unknown's avatar
unknown committed
1290 1291 1292 1293 1294
{
  /*
    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
1295
  for (SELECT_LEX *s= this;
1296
       s && s != last;
unknown's avatar
unknown committed
1297
       s= s->outer_select())
1298
    if (!(s->uncacheable & UNCACHEABLE_DEPENDENT))
unknown's avatar
unknown committed
1299 1300
    {
      // Select is dependent of outer select
1301
      s->uncacheable|= UNCACHEABLE_DEPENDENT;
1302
      SELECT_LEX_UNIT *munit= s->master_unit();
1303
      munit->uncacheable|= UNCACHEABLE_DEPENDENT;
unknown's avatar
unknown committed
1304 1305 1306
    }
}

1307 1308 1309 1310 1311 1312 1313
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
1314
TABLE_LIST *st_select_lex_node::add_table_to_list(THD *thd, Table_ident *table,
1315
						  LEX_STRING *alias,
unknown's avatar
unknown committed
1316
						  ulong table_join_options,
1317 1318
						  thr_lock_type flags,
						  List<String> *use_index,
unknown's avatar
unknown committed
1319 1320
						  List<String> *ignore_index,
                                                  LEX_STRING *option)
1321 1322 1323
{
  return 0;
}
unknown's avatar
unknown committed
1324 1325 1326 1327 1328 1329 1330 1331
ulong st_select_lex_node::get_table_join_options()
{
  return 0;
}

/*
  prohibit using LIMIT clause
*/
unknown's avatar
(SCRUM)  
unknown committed
1332
bool st_select_lex::test_limit()
unknown's avatar
unknown committed
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
{
  if (select_limit != HA_POS_ERROR)
  {
    my_error(ER_NOT_SUPPORTED_YET, MYF(0),
         "LIMIT & IN/ALL/ANY/SOME subquery");
    return(1);
  }
  // We need only 1 row to determinate existence
  select_limit= 1;
  // no sense in ORDER BY without LIMIT
  order_list.empty();
  return(0);
}
1346

1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365
/*  
  Interface method of table list creation for query
  
  SYNOPSIS
    st_select_lex_unit::create_total_list()
    thd            THD pointer
    result         pointer on result list of tables pointer
    check_derived  force derived table chacking (used for creating 
                   table list for derived query)
  DESCRIPTION
    This is used for UNION & subselect to create a new table list of all used 
    tables.
    The table_list->table entry in all used tables are set to point
    to the entries in this list.

  RETURN
    0 - OK
    !0 - error
*/
1366
bool st_select_lex_unit::create_total_list(THD *thd_arg, st_lex *lex,
1367
					   TABLE_LIST **result_arg)
1368
{
1369
  *result_arg= 0;
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
  if (!(res= create_total_list_n_last_return(thd_arg, lex, &result_arg)))
  {
    /*
      If time zone tables were used implicitly in statement we should add
      them to global table list.
    */
    if (lex->time_zone_tables_used)
    {
      /*
        Altough we are modifying lex data, it won't raise any problem in
        case when this lex belongs to some prepared statement or stored
        procedure: such modification does not change any invariants imposed
        by requirement to reuse the same lex for multiple executions.
      */
      if ((lex->time_zone_tables_used= my_tz_get_table_list(thd)) !=
          &fake_time_zone_tables_list)
      {
        *result_arg= lex->time_zone_tables_used;
      }
      else
      {
        send_error(thd, 0);
        res= 1;
      }
    }
  }
1396
  return res;
1397 1398
}

1399 1400 1401 1402 1403 1404 1405 1406
/*  
  Table list creation for query
  
  SYNOPSIS
    st_select_lex_unit::create_total_list()
    thd            THD pointer
    lex            pointer on LEX stricture
    result         pointer on pointer on result list of tables pointer
1407

1408 1409 1410
  DESCRIPTION
    This is used for UNION & subselect to create a new table list of all used 
    tables.
unknown's avatar
unknown committed
1411 1412
    The table_list->table_list in all tables of global list are set to point
    to the local SELECT_LEX entries.
1413 1414 1415 1416 1417

  RETURN
    0 - OK
    !0 - error
*/
1418 1419 1420
bool st_select_lex_unit::
create_total_list_n_last_return(THD *thd_arg,
				st_lex *lex,
1421
				TABLE_LIST ***result_arg)
1422 1423
{
  TABLE_LIST *slave_list_first=0, **slave_list_last= &slave_list_first;
1424
  TABLE_LIST **new_table_list= *result_arg, *aux;
1425
  SELECT_LEX *sl= (SELECT_LEX*)slave;
unknown's avatar
(SCRUM)  
unknown committed
1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437
  
  /*
    iterate all inner selects + fake_select (if exists),
    fake_select->next_select() always is 0
  */
  for (;
       sl;
       sl= (sl->next_select() ?
	    sl->next_select() :
	    (sl == fake_select_lex ?
	     0 :
	     fake_select_lex)))
1438 1439
  {
    // check usage of ORDER BY in union
unknown's avatar
(SCRUM)  
unknown committed
1440 1441
    if (sl->order_list.first && sl->next_select() && !sl->braces &&
	sl->linkage != GLOBAL_OPTIONS_TYPE)
1442
    {
1443
      net_printf(thd_arg,ER_WRONG_USAGE,"UNION","ORDER BY");
1444 1445
      return 1;
    }
unknown's avatar
(SCRUM)  
unknown committed
1446

1447 1448 1449
    for (SELECT_LEX_UNIT *inner=  sl->first_inner_unit();
	 inner;
	 inner= inner->next_unit())
unknown's avatar
(SCRUM)  
unknown committed
1450
    {
1451
      if (inner->create_total_list_n_last_return(thd, lex,
1452
						 &slave_list_last))
1453
	return 1;
unknown's avatar
(SCRUM)  
unknown committed
1454 1455
    }

1456 1457
    if ((aux= (TABLE_LIST*) sl->table_list.first))
    {
1458 1459
      TABLE_LIST *next_table;
      for (; aux; aux= next_table)
1460 1461
      {
	TABLE_LIST *cursor;
1462
	next_table= aux->next;
unknown's avatar
unknown committed
1463
	/* Add to the total table list */
1464 1465
	if (!(cursor= (TABLE_LIST *) thd->memdup((char*) aux,
						 sizeof(*aux))))
1466
	{
1467 1468
	  send_error(thd,0);
	  return 1;
1469
	}
1470 1471 1472 1473
	*new_table_list= cursor;
	cursor->table_list= aux;
	new_table_list= &cursor->next;
	*new_table_list= 0;			// end result list
1474 1475 1476 1477
	aux->table_list= cursor;
      }
    }
  }
unknown's avatar
unknown committed
1478

1479 1480 1481 1482 1483
  if (slave_list_first)
  {
    *new_table_list= slave_list_first;
    new_table_list= slave_list_last;
  }
1484
  *result_arg= new_table_list;
1485 1486
  return 0;
}
1487

1488

1489 1490 1491 1492 1493
st_select_lex_unit* st_select_lex_unit::master_unit()
{
    return this;
}

1494

1495 1496 1497 1498 1499
st_select_lex* st_select_lex_unit::outer_select()
{
  return (st_select_lex*) master;
}

1500

unknown's avatar
(SCRUM)  
unknown committed
1501
bool st_select_lex::add_order_to_list(THD *thd, Item *item, bool asc)
unknown's avatar
unknown committed
1502
{
unknown's avatar
(SCRUM)  
unknown committed
1503
  return add_to_list(thd, order_list, item, asc);
unknown's avatar
unknown committed
1504
}
1505

1506

unknown's avatar
unknown committed
1507
bool st_select_lex::add_item_to_list(THD *thd, Item *item)
1508 1509 1510 1511
{
  return item_list.push_back(item);
}

1512

unknown's avatar
unknown committed
1513
bool st_select_lex::add_group_to_list(THD *thd, Item *item, bool asc)
1514
{
unknown's avatar
unknown committed
1515
  return add_to_list(thd, group_list, item, asc);
1516 1517
}

1518

1519 1520 1521 1522 1523
bool st_select_lex::add_ftfunc_to_list(Item_func_match *func)
{
  return !func || ftfunc_list->push_back(func); // end of memory?
}

1524

1525 1526 1527 1528 1529
st_select_lex_unit* st_select_lex::master_unit()
{
  return (st_select_lex_unit*) master;
}

1530

1531 1532 1533 1534 1535
st_select_lex* st_select_lex::outer_select()
{
  return (st_select_lex*) master->get_master();
}

1536

1537 1538 1539 1540 1541 1542
bool st_select_lex::set_braces(bool value)
{
  braces= value;
  return 0; 
}

1543

1544 1545 1546 1547 1548 1549
bool st_select_lex::inc_in_sum_expr()
{
  in_sum_expr++;
  return 0;
}

1550

1551 1552 1553 1554 1555
uint st_select_lex::get_in_sum_expr()
{
  return in_sum_expr;
}

1556

1557 1558 1559 1560 1561 1562 1563 1564 1565 1566
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;
}

1567

1568 1569 1570 1571 1572
List<String>* st_select_lex::get_use_index()
{
  return use_index_ptr;
}

1573

1574 1575 1576 1577 1578
List<String>* st_select_lex::get_ignore_index()
{
  return ignore_index_ptr;
}

1579

unknown's avatar
unknown committed
1580 1581 1582 1583 1584
ulong st_select_lex::get_table_join_options()
{
  return table_join_options;
}

1585

unknown's avatar
unknown committed
1586 1587 1588 1589
bool st_select_lex::setup_ref_array(THD *thd, uint order_group_num)
{
  if (ref_pointer_array)
    return 0;
1590 1591 1592 1593 1594

  /*
    We have to create array in prepared statement memory if it is
    prepared statement
  */
1595
  Item_arena *arena= thd->current_arena;
unknown's avatar
unknown committed
1596
  return (ref_pointer_array= 
1597
	  (Item **)arena->alloc(sizeof(Item*) *
1598 1599 1600
			       (item_list.elements +
				select_n_having_items +
				order_group_num)* 5)) == 0;
unknown's avatar
unknown committed
1601 1602
}

1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615

/*
  Find db.table which will be updated in this unit

  SYNOPSIS
    st_select_lex_unit::check_updateable()
    db		- data base name
    table	- real table name

  RETURN
    1 - found
    0 - OK (table did not found)
*/
1616

1617 1618
bool st_select_lex_unit::check_updateable(char *db, char *table)
{
1619
  for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
1620 1621 1622 1623 1624 1625 1626
    if (sl->check_updateable(db, table))
      return 1;
  return 0;
}


/*
unknown's avatar
unknown committed
1627 1628
  Find db.table which will be updated in this select and
  underlying ones (except derived tables)
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638

  SYNOPSIS
    st_select_lex::check_updateable()
    db		- data base name
    table	- real table name

  RETURN
    1 - found
    0 - OK (table did not found)
*/
1639

1640 1641 1642 1643 1644
bool st_select_lex::check_updateable(char *db, char *table)
{
  if (find_real_table_in_list(get_table_list(), db, table))
    return 1;

1645 1646 1647 1648
  return check_updateable_in_subqueries(db, table);
}

/*
unknown's avatar
unknown committed
1649
   Find db.table which will be updated in underlying subqueries
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662

   SYNOPSIS
    st_select_lex::check_updateable_in_subqueries()
    db		- data base name
    table	- real table name

  RETURN
    1 - found
    0 - OK (table did not found)
*/

bool st_select_lex::check_updateable_in_subqueries(char *db, char *table)
{
1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674
  for (SELECT_LEX_UNIT *un= first_inner_unit();
       un;
       un= un->next_unit())
  {
    if (un->first_select()->linkage != DERIVED_TABLE_TYPE &&
	un->check_updateable(db, table))
      return 1;
  }
  return 0;
}


unknown's avatar
unknown committed
1675 1676 1677 1678 1679 1680
void st_select_lex_unit::print(String *str)
{
  for (SELECT_LEX *sl= first_select(); sl; sl= sl->next_select())
  {
    if (sl != first_select())
    {
1681
      str->append(" union ", 7);
1682
      if (!union_distinct)
1683
	str->append("all ", 4);
unknown's avatar
unknown committed
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694
    }
    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)
    {
1695
      str->append(" order by ", 10);
unknown's avatar
unknown committed
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
      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)
  {
    (*order->item)->print(str);
    if (!order->asc)
1711
      str->append(" desc", 5);
unknown's avatar
unknown committed
1712 1713 1714 1715 1716
    if (order->next)
      str->append(',');
  }
}
 
1717

unknown's avatar
unknown committed
1718 1719
void st_select_lex::print_limit(THD *thd, String *str)
{
1720
  if (explicit_limit)
unknown's avatar
unknown committed
1721
  {
1722 1723 1724 1725 1726 1727
    str->append(" limit ", 7);
    char buff[20];
    // latin1 is good enough for numbers
    String st(buff, sizeof(buff),  &my_charset_latin1);
    st.set((ulonglong)select_limit, &my_charset_latin1);
    str->append(st);
unknown's avatar
unknown committed
1728 1729 1730
    if (offset_limit)
    {
      str->append(',');
1731 1732
      st.set((ulonglong)select_limit, &my_charset_latin1);
      str->append(st);
unknown's avatar
unknown committed
1733 1734 1735 1736
    }
  }
}

unknown's avatar
unknown committed
1737

1738 1739 1740 1741 1742
st_lex::st_lex()
  :result(0)
{}


1743
/*
unknown's avatar
unknown committed
1744 1745
  Unlink first table from global table list and first table from outer select
  list (lex->select_lex)
1746 1747 1748

  SYNOPSIS
    unlink_first_table()
unknown's avatar
unknown committed
1749 1750 1751 1752
    tables		Global table list
    global_first	Save first global table here
    local_first		Save first local table here

1753 1754
  NOTES
    This function assumes that outer select list is non-empty.
1755 1756 1757

  RETURN
    global list without first table
unknown's avatar
unknown committed
1758

1759 1760 1761 1762 1763
*/
TABLE_LIST *st_lex::unlink_first_table(TABLE_LIST *tables,
				       TABLE_LIST **global_first,
				       TABLE_LIST **local_first)
{
1764
  DBUG_ASSERT(select_lex.table_list.first != 0);
unknown's avatar
unknown committed
1765
  /*
1766 1767 1768
    Save pointers to first elements of global table list and list
    of tables used in outer select. It does not harm if these lists
    are the same.
unknown's avatar
unknown committed
1769
  */
1770 1771 1772 1773 1774
  *global_first= tables;
  *local_first= (TABLE_LIST*)select_lex.table_list.first;

  /* Exclude first elements from these lists */
  select_lex.table_list.first= (byte*) (*local_first)->next;
1775 1776 1777 1778 1779
  tables= tables->next;
  (*global_first)->next= 0;
  return tables;
}

unknown's avatar
unknown committed
1780

1781
/*
1782
  Link table which was unlinked with unlink_first_table() back.
1783 1784 1785

  SYNOPSIS
    link_first_table_back()
unknown's avatar
unknown committed
1786 1787 1788
    tables		Global table list
    global_first	Saved first global table
    local_first		Saved first local table
1789 1790 1791 1792 1793 1794 1795 1796 1797

  RETURN
    global list
*/
TABLE_LIST *st_lex::link_first_table_back(TABLE_LIST *tables,
					  TABLE_LIST *global_first,
					  TABLE_LIST *local_first)
{
  global_first->next= tables;
1798
  select_lex.table_list.first= (byte*) local_first;
unknown's avatar
unknown committed
1799
  return global_first;
1800 1801
}

unknown's avatar
unknown committed
1802 1803
/*
  There are st_select_lex::add_table_to_list & 
unknown's avatar
unknown committed
1804
  st_select_lex::set_lock_for_tables are in sql_parse.cc
unknown's avatar
unknown committed
1805 1806

  st_select_lex::print is in sql_select.h
unknown's avatar
unknown committed
1807 1808

  st_select_lex_unit::prepare, st_select_lex_unit::exec,
1809 1810
  st_select_lex_unit::cleanup, st_select_lex_unit::reinit_exec_mechanism,
  st_select_lex_unit::change_result
unknown's avatar
unknown committed
1811
  are in sql_union.cc
unknown's avatar
unknown committed
1812
*/