sql_lex.cc 30.9 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com 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.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com 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.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
   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>

LEX_STRING tmp_table_alias= {(char*) "tmp-table",8};

/* 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);

#define TOCK_NAME_LENGTH 24

/*
  The following is based on the latin1 character set, and is only
  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
};

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"

78
static uchar state_map[256];
bk@work.mysql.com's avatar
bk@work.mysql.com committed
79 80 81 82 83 84 85 86 87 88 89 90 91


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));

92
  /* Fill state_map with states to get a faster parser */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
93 94
  for (i=0; i < 256 ; i++)
  {
95
    if (my_isalpha(system_charset_info,i))
96
      state_map[i]=(uchar) STATE_IDENT;
97
    else if (my_isdigit(system_charset_info,i))
98
      state_map[i]=(uchar) STATE_NUMBER_IDENT;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
99
#if defined(USE_MB) && defined(USE_MB_IDENT)
100
    else if (use_mb(system_charset_info) && my_ismbhead(system_charset_info, i))
101
      state_map[i]=(uchar) STATE_IDENT;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
102
#endif
103
    else if (!my_isgraph(system_charset_info,i))
104
      state_map[i]=(uchar) STATE_SKIP;      
bk@work.mysql.com's avatar
bk@work.mysql.com committed
105
    else
106
      state_map[i]=(uchar) STATE_CHAR;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
107
  }
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
  state_map[(uchar)'_']=state_map[(uchar)'$']=(uchar) STATE_IDENT;
  state_map[(uchar)'\'']=state_map[(uchar)'"']=(uchar) STATE_STRING;
  state_map[(uchar)'-']=state_map[(uchar)'+']=(uchar) STATE_SIGNED_NUMBER;
  state_map[(uchar)'.']=(uchar) STATE_REAL_OR_POINT;
  state_map[(uchar)'>']=state_map[(uchar)'=']=state_map[(uchar)'!']= (uchar) STATE_CMP_OP;
  state_map[(uchar)'<']= (uchar) STATE_LONG_CMP_OP;
  state_map[(uchar)'&']=state_map[(uchar)'|']=(uchar) STATE_BOOL;
  state_map[(uchar)'#']=(uchar) STATE_COMMENT;
  state_map[(uchar)';']=(uchar) STATE_COLON;
  state_map[(uchar)':']=(uchar) STATE_SET_VAR;
  state_map[0]=(uchar) STATE_EOL;
  state_map[(uchar)'\\']= (uchar) STATE_ESCAPE;
  state_map[(uchar)'/']= (uchar) STATE_LONG_COMMENT;
  state_map[(uchar)'*']= (uchar) STATE_END_LONG_COMMENT;
  state_map[(uchar)'@']= (uchar) STATE_USER_END;
  state_map[(uchar) '`']= (uchar) STATE_USER_VARIABLE_DELIMITER;
124
  if (opt_sql_mode & MODE_ANSI_QUOTES)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
125
  {
126
    state_map[(uchar) '"'] = STATE_USER_VARIABLE_DELIMITER;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
  }
  DBUG_VOID_RETURN;
}


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


LEX *lex_start(THD *thd, uchar *buf,uint length)
{
  LEX *lex= &thd->lex;
  lex->next_state=STATE_START;
  lex->end_of_query=(lex->ptr=buf)+length;
  lex->yylineno = 1;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
145
  lex->select_lex.create_refs=lex->in_comment=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
146
  lex->length=0;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
147 148
  lex->select_lex.in_sum_expr=0;
  lex->select_lex.expr_list.empty();
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
149 150 151
  lex->select_lex.ftfunc_list_alloc.empty();
  lex->select_lex.ftfunc_list= &lex->select->ftfunc_list_alloc;
  lex->convert_set= (lex->thd= thd)->variables.convert_set;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
152
  lex->yacc_yyss=lex->yacc_yyvs=0;
153
  lex->ignore_space=test(thd->sql_mode & MODE_IGNORE_SPACE);
154
  lex->slave_thd_opt=0;
155
  lex->sql_command=SQLCOM_END;
156
  bzero(&lex->mi,sizeof(lex->mi));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
157 158 159 160 161
  return lex;
}

void lex_end(LEX *lex)
{
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
162
  lex->select_lex.expr_list.delete_elements();	// If error when parsing sql-varargs
bk@work.mysql.com's avatar
bk@work.mysql.com committed
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
  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)))
  {
184 185
    lex->thd->safe_to_cache_query=0;
    lex->yylval->udf=udf;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
    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;
    }
  }
#endif
  return 0;
}


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

202
LEX_STRING get_token(LEX *lex,uint length)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
203 204 205 206
{
  LEX_STRING tmp;
  yyUnget();			// ptr points now after last token char
  tmp.length=lex->yytoklen=length;
207
  tmp.str=(char*) lex->thd->strmake((char*) lex->tok_start,tmp.length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
  return tmp;
}

/* Return an unescaped text literal without quotes */
/* Fix sometimes to do only one scan of the string */

static char *get_text(LEX *lex)
{
  reg1 uchar c,sep;
  uint found_escape=0;

  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;
226 227
    if (use_mb(system_charset_info) &&
        (l = my_ismbchar(system_charset_info,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
                         (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;
      yySkip();
    }
    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;
256
      if (!(start=(uchar*) lex->thd->alloc((uint) (end-str)+1)))
257
	return (char*) "";		// Sql_alloc has set error flag
bk@work.mysql.com's avatar
bk@work.mysql.com committed
258 259 260 261 262 263 264 265 266 267 268 269 270
      if (!found_escape)
      {
	lex->yytoklen=(uint) (end-str);
	memcpy(start,str,lex->yytoklen);
	start[lex->yytoklen]=0;
      }
      else
      {
	uchar *to;
	for (to=start ; str != end ; str++)
	{
#ifdef USE_MB
	  int l;
271 272
	  if (use_mb(system_charset_info) &&
              (l = my_ismbchar(system_charset_info,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
                               (const char *)str, (const char *)end))) {
	      while (l--)
		  *to++ = *str++;
	      str--;
	      continue;
	  }
#endif
	  if (*str == '\\' && str+1 != end)
	  {
	    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:
	      *to++ = *str;
	      break;
	    }
	  }
	  else if (*str == sep)
	    *to++= *str++;		// Two ' or "
	  else
	    *to++ = *str;

	}
	*to=0;
	lex->yytoklen=(uint) (to-start);
      }
      if (lex->convert_set)
	lex->convert_set->convert((char*) start,lex->yytoklen);
      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;
343 344
static const char *unsigned_longlong_str="18446744073709551615";
static const uint unsigned_longlong_len=20;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
345 346 347 348 349 350 351 352 353 354 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 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399

inline static uint int_token(const char *str,uint length)
{
  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)
400 401 402 403 404 405 406
    {
      if (length > unsigned_longlong_len)
	return REAL_NUM;
      cmp=unsigned_longlong_str;
      smaller=ULONGLONG_NUM;
      bigger=REAL_NUM;
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
407 408 409 410 411 412 413 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 440 441 442
    else
    {
      cmp=longlong_str;
      smaller=LONG_NUM;
      bigger=REAL_NUM;
    }
  }
  while (*cmp && *cmp++ == *str++) ;
  return ((uchar) str[-1] <= (uchar) cmp[-1]) ? smaller : bigger;
}


// yylex remember the following states from the following yylex()
// STATE_EOQ ; found end of query
// STATE_OPERATOR_OR_IDENT ; last state was an ident, text or number
// 			     (which can't be followed by a signed number)

int yylex(void *arg)
{
  reg1	uchar c;
  int	tokval;
  uint length;
  enum lex_states state,prev_state;
  LEX	*lex=current_lex;
  YYSTYPE *yylval=(YYSTYPE*) arg;

  lex->yylval=yylval;			// The global state
  lex->tok_start=lex->tok_end=lex->ptr;
  prev_state=state=lex->next_state;
  lex->next_state=STATE_OPERATOR_OR_IDENT;
  LINT_INIT(c);
  for (;;)
  {
    switch(state) {
    case STATE_OPERATOR_OR_IDENT:	// Next is operator or keyword
    case STATE_START:			// Start of token
443
      // Skip startspace
bk@work.mysql.com's avatar
bk@work.mysql.com 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
      for (c=yyGet() ; (state_map[c] == STATE_SKIP) ; c= yyGet())
      {
	if (c == '\n')
	  lex->yylineno++;
      }
      lex->tok_start=lex->ptr-1;	// Start of real token
      state= (enum lex_states) state_map[c];
      break;
    case STATE_ESCAPE:
      if (yyGet() == 'N')
      {					// Allow \N as shortcut for NULL
	yylval->lex_str.str=(char*) "\\N";
	yylval->lex_str.length=2;
	return NULL_SYM;
      }
    case STATE_CHAR:			// Unknown or single char token
    case STATE_SKIP:			// This should not happen
      yylval->lex_str.str=(char*) (lex->ptr=lex->tok_start);// Set to first char
      yylval->lex_str.length=1;
      c=yyGet();
      if (c != ')')
	lex->next_state= STATE_START;	// Allow signed numbers
      if (c == ',')
	lex->tok_start=lex->ptr;	// Let tok_start point at next item
      return((int) c);

    case STATE_IDENT:			// Incomplete keyword or ident
471 472 473 474 475
      if ((c == 'x' || c == 'X') && yyPeek() == '\'')
      {					// Found x'hex-number'
	state=STATE_HEX_NUMBER;
	break;
      }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
476
#if defined(USE_MB) && defined(USE_MB_IDENT)
477
      if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
478
      {
479
        if (my_ismbhead(system_charset_info, yyGetLast()))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
480
        {
481
          int l = my_ismbchar(system_charset_info,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
482 483 484 485 486 487 488 489 490 491 492
                              (const char *)lex->ptr-1,
                              (const char *)lex->end_of_query);
          if (l == 0) {
            state = STATE_CHAR;
            continue;
          }
          lex->ptr += l - 1;
        }
        while (state_map[c=yyGet()] == STATE_IDENT ||
               state_map[c] == STATE_NUMBER_IDENT)
        {
493
          if (my_ismbhead(system_charset_info, c))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
494 495
          {
            int l;
496
            if ((l = my_ismbchar(system_charset_info,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
497 498 499 500 501 502 503 504 505 506 507 508 509 510
                              (const char *)lex->ptr-1,
                              (const char *)lex->end_of_query)) == 0)
              break;
            lex->ptr += l-1;
          }
        }
      }
      else
#endif
        while (state_map[c=yyGet()] == STATE_IDENT ||
               state_map[c] == STATE_NUMBER_IDENT) ;
      length= (uint) (lex->ptr - lex->tok_start)-1;
      if (lex->ignore_space)
      {
511
	for (; state_map[c] == STATE_SKIP ; c= yyGet());
bk@work.mysql.com's avatar
bk@work.mysql.com committed
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
      }
      if (c == '.' && (state_map[yyPeek()] == STATE_IDENT ||
		       state_map[yyPeek()] == STATE_NUMBER_IDENT))
	lex->next_state=STATE_IDENT_SEP;
      else
      {					// '(' must follow directly if function
	yyUnget();
	if ((tokval = find_keyword(lex,length,c == '(')))
	{
	  lex->next_state= STATE_START;	// Allow signed numbers
	  return(tokval);		// Was keyword
	}
	yySkip();			// next state does a unget
      }
      yylval->lex_str=get_token(lex,length);
527
      if (lex->convert_set)
528
	lex->convert_set->convert((char*) yylval->lex_str.str,lex->yytoklen);
529 530 531 532 533 534 535 536 537 538 539 540 541

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

      if ((yylval->lex_str.str[0]=='_') && 
          (lex->charset=get_charset_by_name(yylval->lex_str.str+1,MYF(0))))
        return(UNDERSCORE_CHARSET);
      else
        return(IDENT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
542 543 544 545 546 547 548 549

    case STATE_IDENT_SEP:		// Found ident and now '.'
      lex->next_state=STATE_IDENT_START;// Next is an ident (not a keyword)
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      c=yyGet();			// should be '.'
      return((int) c);

550
    case STATE_NUMBER_IDENT:		// number or ident which num-start
551
      while (my_isdigit(system_charset_info,(c = yyGet()))) ;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
552 553 554 555 556 557 558
      if (state_map[c] != STATE_IDENT)
      {					// Can't be identifier
	state=STATE_INT_OR_REAL;
	break;
      }
      if (c == 'e' || c == 'E')
      {
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
559
	// The following test is written this way to allow numbers of type 1e1
560 561
	if (my_isdigit(system_charset_info,yyPeek()) || 
            (c=(yyGet())) == '+' || c == '-')
bk@work.mysql.com's avatar
bk@work.mysql.com committed
562
	{				// Allow 1E+10
563
	  if (my_isdigit(system_charset_info,yyPeek()))	// Number must have digit after sign
bk@work.mysql.com's avatar
bk@work.mysql.com committed
564 565
	  {
	    yySkip();
566
	    while (my_isdigit(system_charset_info,yyGet())) ;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
567 568 569 570 571 572 573 574 575
	    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
576
	while (my_isxdigit(system_charset_info,(c = yyGet()))) ;
577
	if ((lex->ptr - lex->tok_start) >= 4 && state_map[c] != STATE_IDENT)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
578 579
	{
	  yylval->lex_str=get_token(lex,yyLength());
580
	  yylval->lex_str.str+=2;		// Skip 0x
bk@work.mysql.com's avatar
bk@work.mysql.com committed
581 582 583 584 585 586 587 588 589
	  yylval->lex_str.length-=2;
	  lex->yytoklen-=2;
	  return (HEX_NUM);
	}
	yyUnget();
      }
      // fall through
    case STATE_IDENT_START:		// Incomplete ident
#if defined(USE_MB) && defined(USE_MB_IDENT)
590
      if (use_mb(system_charset_info))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
591
      {
592
        if (my_ismbhead(system_charset_info, yyGetLast()))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
593
        {
594
          int l = my_ismbchar(system_charset_info,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
595 596 597 598 599 600 601 602 603 604 605 606
                              (const char *)lex->ptr-1,
                              (const char *)lex->end_of_query);
          if (l == 0)
          {
            state = STATE_CHAR;
            continue;
          }
          lex->ptr += l - 1;
        }
        while (state_map[c=yyGet()] == STATE_IDENT ||
               state_map[c] == STATE_NUMBER_IDENT)
        {
607
          if (my_ismbhead(system_charset_info, c))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
608 609
          {
            int l;
610
            if ((l = my_ismbchar(system_charset_info,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
                                 (const char *)lex->ptr-1,
                                 (const char *)lex->end_of_query)) == 0)
              break;
            lex->ptr += l-1;
          }
        }
      }
      else
#endif
        while (state_map[c = yyGet()] == STATE_IDENT ||
               state_map[c] == STATE_NUMBER_IDENT) ;

      if (c == '.' && (state_map[yyPeek()] == STATE_IDENT ||
		       state_map[yyPeek()] == STATE_NUMBER_IDENT))
	lex->next_state=STATE_IDENT_SEP;// Next is '.'
      // fall through

    case STATE_FOUND_IDENT:		// Complete ident
      yylval->lex_str=get_token(lex,yyLength());
630 631
      if (lex->convert_set)
        lex->convert_set->convert((char*) yylval->lex_str.str,lex->yytoklen);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
632 633 634
      return(IDENT);

    case STATE_USER_VARIABLE_DELIMITER:
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
635
      lex->tok_start=lex->ptr;			// Skip first `
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
636
#ifdef USE_MB
637
      if (use_mb(system_charset_info))
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
638 639 640 641
      {
	while ((c=yyGet()) && state_map[c] != STATE_USER_VARIABLE_DELIMITER &&
	       c != (uchar) NAMES_SEP_CHAR)
	{
642
          if (my_ismbhead(system_charset_info, c))
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
643 644
          {
            int l;
645
            if ((l = my_ismbchar(system_charset_info,
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
646 647 648 649 650 651 652 653 654 655 656 657 658
                                 (const char *)lex->ptr-1,
                                 (const char *)lex->end_of_query)) == 0)
              break;
            lex->ptr += l-1;
          }
        }
      }
      else
#endif
      {
	while ((c=yyGet()) && state_map[c] != STATE_USER_VARIABLE_DELIMITER &&
	       c != (uchar) NAMES_SEP_CHAR) ;
      }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
659
      yylval->lex_str=get_token(lex,yyLength());
660 661
      if (lex->convert_set)
        lex->convert_set->convert((char*) yylval->lex_str.str,lex->yytoklen);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
662
      if (state_map[c] == STATE_USER_VARIABLE_DELIMITER)
663
	yySkip();			// Skip end `
bk@work.mysql.com's avatar
bk@work.mysql.com committed
664 665 666 667 668
      return(IDENT);

    case STATE_SIGNED_NUMBER:		// Incomplete signed number
      if (prev_state == STATE_OPERATOR_OR_IDENT)
      {
669
	if (c == '-' && yyPeek() == '-' &&
670 671
	    (my_isspace(system_charset_info,yyPeek2()) || 
             my_iscntrl(system_charset_info,yyPeek2())))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
672 673 674 675 676
	  state=STATE_COMMENT;
	else
	  state= STATE_CHAR;		// Must be operator
	break;
      }
677
      if (!my_isdigit(system_charset_info,c=yyGet()) || yyPeek() == 'x')
bk@work.mysql.com's avatar
bk@work.mysql.com committed
678 679 680
      {
	if (c != '.')
	{
681
	  if (c == '-' && my_isspace(system_charset_info,yyPeek()))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
682 683 684 685 686 687 688
	    state=STATE_COMMENT;
	  else
	    state = STATE_CHAR;		// Return sign as single char
	  break;
	}
	yyUnget();			// Fix for next loop
      }
689
      while (my_isdigit(system_charset_info,c=yyGet())) ;	// Incomplete real or int number
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
690
      if ((c == 'e' || c == 'E') &&
691
	  (yyPeek() == '+' || yyPeek() == '-' || my_isdigit(system_charset_info,yyPeek())))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
692 693 694 695 696 697 698 699 700 701 702 703 704
      {					// Real number
	yyUnget();
	c= '.';				// Fool next test
      }
      // fall through
    case STATE_INT_OR_REAL:		// Compleat int or incompleat real
      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
    case STATE_REAL:			// Incomplete real number
705
      while (my_isdigit(system_charset_info,c = yyGet())) ;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
706 707 708 709

      if (c == 'e' || c == 'E')
      {
	c = yyGet();
710
	if (c == '-' || c == '+')
711
	  c = yyGet();			// Skip sign
712
	if (!my_isdigit(system_charset_info,c))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
713 714 715 716
	{				// No digit after sign
	  state= STATE_CHAR;
	  break;
	}
717
	while (my_isdigit(system_charset_info,yyGet())) ;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
718 719 720 721 722 723
	yylval->lex_str=get_token(lex,yyLength());
	return(FLOAT_NUM);
      }
      yylval->lex_str=get_token(lex,yyLength());
      return(REAL_NUM);

724 725
    case STATE_HEX_NUMBER:		// Found x'hexstring'
      yyGet();				// Skip '
726
      while (my_isxdigit(system_charset_info,(c = yyGet()))) ;
727 728 729 730 731 732 733 734 735 736 737 738
      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);

bk@work.mysql.com's avatar
bk@work.mysql.com committed
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
    case STATE_CMP_OP:			// Incomplete comparison operator
      if (state_map[yyPeek()] == STATE_CMP_OP ||
	  state_map[yyPeek()] == STATE_LONG_CMP_OP)
	yySkip();
      if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
      {
	lex->next_state= STATE_START;	// Allow signed numbers
	return(tokval);
      }
      state = STATE_CHAR;		// Something fishy found
      break;

    case STATE_LONG_CMP_OP:		// Incomplete comparison operator
      if (state_map[yyPeek()] == STATE_CMP_OP ||
	  state_map[yyPeek()] == STATE_LONG_CMP_OP)
      {
	yySkip();
	if (state_map[yyPeek()] == STATE_CMP_OP)
	  yySkip();
      }
      if ((tokval = find_keyword(lex,(uint) (lex->ptr - lex->tok_start),0)))
      {
	lex->next_state= STATE_START;	// Found long op
	return(tokval);
      }
      state = STATE_CHAR;		// Something fishy found
      break;

    case STATE_BOOL:
      if (c != yyPeek())
      {
	state=STATE_CHAR;
	break;
      }
      yySkip();
      tokval = find_keyword(lex,2,0);	// Is a bool operator
      lex->next_state= STATE_START;	// Allow signed numbers
      return(tokval);

    case STATE_STRING:			// Incomplete text string
      if (!(yylval->lex_str.str = get_text(lex)))
      {
	state= STATE_CHAR;		// Read char by char
	break;
      }
      yylval->lex_str.length=lex->yytoklen;
      return(TEXT_STRING);

    case STATE_COMMENT:			//  Comment
788
      lex->select_lex.options|= OPTION_FOUND_COMMENT;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
789 790 791 792 793 794 795 796 797 798 799
      while ((c = yyGet()) != '\n' && c) ;
      yyUnget();			// Safety against eof
      state = STATE_START;		// Try again
      break;
    case STATE_LONG_COMMENT:		/* Long C comment? */
      if (yyPeek() != '*')
      {
	state=STATE_CHAR;		// Probable division
	break;
      }
      yySkip();				// Skip '*'
800
      lex->select_lex.options|= OPTION_FOUND_COMMENT;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
801 802 803 804 805
      if (yyPeek() == '!')		// MySQL command in comment
      {
	ulong version=MYSQL_VERSION_ID;
	yySkip();
	state=STATE_START;
806
	if (my_isdigit(system_charset_info,yyPeek()))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860
	{				// 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 '/'
      state = STATE_START;		// Try again
      break;
    case STATE_END_LONG_COMMENT:
      if (lex->in_comment && yyPeek() == '/')
      {
	yySkip();
	lex->in_comment=0;
	state=STATE_START;
      }
      else
	state=STATE_CHAR;		// Return '*'
      break;
    case STATE_SET_VAR:			// Check if ':='
      if (yyPeek() != '=')
      {
	state=STATE_CHAR;		// Return ':'
	break;
      }
      yySkip();
      return (SET_VAR);
    case STATE_COLON:			// optional line terminator
      if (yyPeek())
      {
	state=STATE_CHAR;		// Return ';'
	break;
      }
      /* fall true */
    case STATE_EOL:
      lex->next_state=STATE_END;	// Mark for next loop
      return(END_OF_INPUT);
    case STATE_END:
      lex->next_state=STATE_END;
      return(0);			// We found end of input last time

      // Actually real shouldn't start
      // with . but allow them anyhow
    case STATE_REAL_OR_POINT:
861
      if (my_isdigit(system_charset_info,yyPeek()))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
862 863 864 865 866 867 868 869
	state = STATE_REAL;		// Real
      else
      {
	state = STATE_CHAR;		// return '.'
	lex->next_state=STATE_IDENT_START;// Next is an ident (not a keyword)
      }
      break;
    case STATE_USER_END:		// end '@' of user@hostname
870
      switch (state_map[yyPeek()]) {
871 872 873 874
      case STATE_STRING:
      case STATE_USER_VARIABLE_DELIMITER:
	break;
      case STATE_USER_END:
875
	lex->next_state=STATE_SYSTEM_VAR;
876 877 878 879 880
	break;
      default:
	lex->next_state=STATE_HOSTNAME;
	break;
      }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
881 882 883 884 885
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      return((int) '@');
    case STATE_HOSTNAME:		// end '@' of user@hostname
      for (c=yyGet() ;
886
	   my_isalnum(system_charset_info,c) || c == '.' || c == '_' || c == '$';
bk@work.mysql.com's avatar
bk@work.mysql.com committed
887 888 889
	   c= yyGet()) ;
      yylval->lex_str=get_token(lex,yyLength());
      return(LEX_HOSTNAME);
890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916
    case STATE_SYSTEM_VAR:
      yylval->lex_str.str=(char*) lex->ptr;
      yylval->lex_str.length=1;
      lex->next_state=STATE_IDENT_OR_KEYWORD;
      yySkip();					// Skip '@'
      return((int) '@');
    case STATE_IDENT_OR_KEYWORD:
      /*
	We come here when we have found two '@' in a row.
	We should now be able to handle:
	[(global | local | session) .]variable_name
      */

      while (state_map[c=yyGet()] == STATE_IDENT ||
	     state_map[c] == STATE_NUMBER_IDENT) ;
      if (c == '.')
	lex->next_state=STATE_IDENT_SEP;
      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);
      if (lex->convert_set)
	lex->convert_set->convert((char*) yylval->lex_str.str,lex->yytoklen);
      return(IDENT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
917 918 919
    }
  }
}
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935

/*
  st_select_lex structures initialisations
*/

void st_select_lex_node::init_query()
{
  next= master= slave= link_next= 0;
  prev= link_prev= 0;
}

void st_select_lex_node::init_select()
{
  order_list.elements= 0;
  order_list.first= 0;
  order_list.next= (byte**) &order_list.first;
936 937
  select_limit= HA_POS_ERROR;
  offset_limit= 0; 
938 939 940 941
}

void st_select_lex_unit::init_query()
{
942
  linkage= GLOBAL_OPTIONS_TYPE;
943 944
  st_select_lex_node::init_query();
  global_parameters= this;
945 946
  select_limit_cnt= HA_POS_ERROR;
  offset_limit_cnt= 0;
947
  prepared= optimized= 0;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
948
  item= 0;
949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
}

void st_select_lex::init_query()
{
  st_select_lex_node::init_query();
  table_list.elements= 0;
  table_list.first= 0; 
  table_list.next= (byte**) &table_list.first;
  item_list.empty();
}

void st_select_lex::init_select()
{
  st_select_lex_node::init_select();
  group_list.elements= 0;
  group_list.first= 0;
  group_list.next= (byte**) &group_list.first;
  options= 0;
  where= having= 0;
  when_list.empty(); 
  expr_list.empty();
  interval_list.empty(); 
  use_index.empty();
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
972 973
  ftfunc_list_alloc.empty();
  ftfunc_list= &ftfunc_list_alloc;
974 975
  linkage= UNSPECIFIED_TYPE;
  depended= having_fix_field= 0;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
976
  
977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
}

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

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

/* 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()
{
  if(link_prev)
  {
    if ((*link_prev= link_next))
      link_next->link_prev= link_prev;
    // Remove slave structure
    for (; slave; slave= slave->next)
      slave->fast_exclude();
  }
}

/*
  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;
  */
}
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065

/*
  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.
*/

// interface
bool st_select_lex_unit::create_total_list(THD *thd, st_lex *lex,
					   TABLE_LIST **result)
{
  *result= 0;
  return create_total_list_n_last_return(thd, lex, &result);
}

// list creator
bool st_select_lex_unit::create_total_list_n_last_return(THD *thd, st_lex *lex,
							 TABLE_LIST ***result)
{
  TABLE_LIST *slave_list_first=0, **slave_list_last= &slave_list_first;
  TABLE_LIST **new_table_list= *result, *aux;
  SELECT_LEX *sl= (SELECT_LEX*)slave;
1066
  for (; sl; sl= sl->next_select())
1067 1068
  {
    // check usage of ORDER BY in union
1069
    if (sl->order_list.first && sl->next_select() && !sl->braces)
1070
    {
1071
      net_printf(thd,ER_WRONG_USAGE,"UNION","ORDER BY");
1072 1073
      return 1;
    }
1074 1075 1076 1077 1078
    for (SELECT_LEX_UNIT *inner=  sl->first_inner_unit();
	 inner;
	 inner= inner->next_unit())
      if (inner->create_total_list_n_last_return(thd, lex,
						 &slave_list_last))
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
	return 1;
    if ((aux= (TABLE_LIST*) sl->table_list.first))
    {
      TABLE_LIST *next;
      for (; aux; aux= next)
      {
	TABLE_LIST *cursor;
	next= aux->next;
	for (cursor= **result; cursor; cursor= cursor->next)
	  if (!strcmp(cursor->db, aux->db) &&
	      !strcmp(cursor->real_name, aux->real_name) &&
1090
	      !strcmp(cursor->alias, aux->alias))
1091 1092 1093 1094 1095 1096 1097 1098
	    break;
	if (!cursor)
	{
	  /* Add not used table to the total table list */
	  aux->lock_type= lex->lock_option;
	  if (!(cursor= (TABLE_LIST *) thd->memdup((char*) aux,
						   sizeof(*aux))))
	  {
1099
	    send_error(thd,0);
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
	    return 1;
	  }
	  *new_table_list= cursor;
	  new_table_list= &cursor->next;
	  *new_table_list= 0;			// end result list
	}
	else
	  aux->shared= 1;			// Mark that it's used twice
	aux->table_list= cursor;
      }
    }
  }
  if (slave_list_first)
  {
    *new_table_list= slave_list_first;
    new_table_list= slave_list_last;
  }
  *result= new_table_list;
  return 0;
}