sql_yacc.yy 87.3 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
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.
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.
12

unknown's avatar
unknown committed
13 14 15 16
   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 */

unknown's avatar
unknown committed
17
/* sql_yacc.yy */
unknown's avatar
unknown committed
18 19 20 21 22 23

%{
#define MYSQL_YACC
#define YYINITDEPTH 100
#define YYMAXDEPTH 3200				/* Because of 64K stack */
#define Lex current_lex
24
#define Select Lex->select
unknown's avatar
unknown committed
25
#include "mysql_priv.h"
unknown's avatar
unknown committed
26
#include "slave.h"
unknown's avatar
unknown committed
27 28 29
#include "sql_acl.h"
#include "lex_symbol.h"
#include <myisam.h>
30
#include <myisammrg.h>
31

unknown's avatar
unknown committed
32 33 34 35 36 37 38
extern void yyerror(const char*);
int yylex(void *yylval);

#define yyoverflow(A,B,C,D,E,F) if (my_yyoverflow((B),(D),(F))) { yyerror((char*) (A)); return 2; }

inline Item *or_or_concat(Item* A, Item* B)
{
39
  return (current_thd->sql_mode & MODE_PIPES_AS_CONCAT ?
unknown's avatar
unknown committed
40 41 42 43 44 45 46
          (Item*) new Item_func_concat(A,B) : (Item*) new Item_cond_or(A,B));
}

%}
%union {
  int  num;
  ulong ulong_num;
unknown's avatar
unknown committed
47
  ulonglong ulonglong_number;
unknown's avatar
unknown committed
48 49 50 51 52 53 54 55 56 57 58
  LEX_STRING lex_str;
  LEX_STRING *lex_str_ptr;
  LEX_SYMBOL symbol;
  Table_ident *table;
  char *simple_string;
  Item *item;
  List<Item> *item_list;
  List<String> *string_list;
  Key::Keytype key_type;
  enum db_type db_type;
  enum row_type row_type;
unknown's avatar
unknown committed
59
  enum enum_tx_isolation tx_isolation;
unknown's avatar
unknown committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
  String *string;
  key_part_spec *key_part;
  TABLE_LIST *table_list;
  udf_func *udf;
  interval_type interval;
  LEX_USER *lex_user;
  enum Item_udftype udf_type;
}

%{
bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize);
%}

%pure_parser					/* We have threads */

%token	END_OF_INPUT

77 78 79 80 81 82 83
%token CLOSE_SYM
%token HANDLER_SYM
%token LAST_SYM
%token NEXT_SYM
%token PREV_SYM
%token SQL_CALC_FOUND_ROWS

unknown's avatar
unknown committed
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
%token	EQ
%token	EQUAL_SYM
%token	GE
%token	GT_SYM
%token	LE
%token	LT
%token	NE
%token	IS
%token	SHIFT_LEFT
%token	SHIFT_RIGHT
%token  SET_VAR

%token	AVG_SYM
%token	COUNT_SYM
%token	MAX_SYM
%token	MIN_SYM
%token	SUM_SYM
%token	STD_SYM
unknown's avatar
unknown committed
102
%token  ABORT_SYM
unknown's avatar
unknown committed
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
%token	ADD
%token	ALTER
%token	AFTER_SYM
%token  ANALYZE_SYM
%token  BEGIN_SYM
%token	CHANGE
%token  COMMENT_SYM
%token  COMMIT_SYM
%token	CREATE
%token	CROSS
%token	DELETE_SYM
%token	DROP
%token	INSERT
%token	FLUSH_SYM
%token	SELECT_SYM
%token  MASTER_SYM
%token	REPAIR
unknown's avatar
unknown committed
120
%token  RESET_SYM
unknown's avatar
unknown committed
121
%token  PURGE
unknown's avatar
unknown committed
122 123 124
%token  SLAVE
%token  START_SYM
%token  STOP_SYM
125
%token	TRUNCATE_SYM
unknown's avatar
unknown committed
126 127 128 129 130 131 132
%token  ROLLBACK_SYM
%token	OPTIMIZE
%token	SHOW
%token	UPDATE_SYM
%token	KILL_SYM
%token	LOAD
%token	LOCK_SYM
unknown's avatar
unknown committed
133
%token	LOCKS_SYM
unknown's avatar
unknown committed
134
%token	UNLOCK_SYM
unknown's avatar
unknown committed
135 136
%token  BINLOG_SYM
%token  EVENTS_SYM
unknown's avatar
unknown committed
137 138 139 140 141 142 143

%token	ACTION
%token	AGGREGATE_SYM
%token	ALL
%token	AND
%token	AS
%token	ASC
144
%token	AUTO_INC
unknown's avatar
unknown committed
145 146
%token	AUTOCOMMIT
%token	AVG_ROW_LENGTH
unknown's avatar
unknown committed
147
%token  BACKUP_SYM
unknown's avatar
unknown committed
148 149 150 151
%token	BERKELEY_DB_SYM
%token	BINARY
%token	BIT_SYM
%token	BOOL_SYM
unknown's avatar
unknown committed
152
%token	BOOLEAN_SYM
unknown's avatar
unknown committed
153 154 155 156 157
%token	BOTH
%token	BY
%token	CASCADE
%token	CHECKSUM_SYM
%token	CHECK_SYM
unknown's avatar
unknown committed
158
%token	CIPHER
unknown's avatar
unknown committed
159
%token	COMMITTED_SYM
unknown's avatar
unknown committed
160 161
%token	COLUMNS
%token	COLUMN_SYM
unknown's avatar
unknown committed
162
%token	CONCURRENT
unknown's avatar
unknown committed
163 164 165 166 167 168 169 170
%token	CONSTRAINT
%token	DATABASES
%token	DATA_SYM
%token	DEFAULT
%token	DELAYED_SYM
%token	DELAY_KEY_WRITE_SYM
%token	DESC
%token	DESCRIBE
unknown's avatar
unknown committed
171
%token  DIRECTORY_SYM
unknown's avatar
unknown committed
172
%token	DISTINCT
173
%token	DISABLE_SYM
unknown's avatar
unknown committed
174
%token	DYNAMIC_SYM
175
%token	ENABLE_SYM
unknown's avatar
unknown committed
176 177 178 179 180 181 182 183 184 185 186 187
%token	ENCLOSED
%token	ESCAPED
%token	ESCAPE_SYM
%token	EXISTS
%token	EXTENDED_SYM
%token	FILE_SYM
%token	FIRST_SYM
%token	FIXED_SYM
%token	FLOAT_NUM
%token	FOREIGN
%token	FROM
%token	FULL
188
%token  FULLTEXT_SYM
unknown's avatar
unknown committed
189
%token  GLOBAL_SYM
unknown's avatar
unknown committed
190 191 192 193 194 195 196 197 198 199 200 201
%token	GRANT
%token	GRANTS
%token	GREATEST_SYM
%token	GROUP
%token	HAVING
%token	HEAP_SYM
%token	HEX_NUM
%token	HIGH_PRIORITY
%token	HOSTS_SYM
%token	IDENT
%token	IGNORE_SYM
%token	INDEX
unknown's avatar
unknown committed
202
%token	INDEXES
unknown's avatar
unknown committed
203 204
%token	INFILE
%token	INNER_SYM
unknown's avatar
unknown committed
205
%token	INNOBASE_SYM
unknown's avatar
unknown committed
206 207
%token	INTO
%token	IN_SYM
unknown's avatar
unknown committed
208
%token  ISOLATION
unknown's avatar
unknown committed
209
%token	ISAM_SYM
unknown's avatar
unknown committed
210
%token	ISSUER
unknown's avatar
unknown committed
211 212 213 214 215
%token	JOIN_SYM
%token	KEYS
%token	KEY_SYM
%token	LEADING
%token	LEAST_SYM
unknown's avatar
unknown committed
216
%token  LEVEL_SYM
unknown's avatar
unknown committed
217 218 219 220 221 222 223 224 225 226 227 228
%token	LEX_HOSTNAME
%token	LIKE
%token	LINES
%token	LOCAL_SYM
%token	LOGS_SYM
%token	LONG_NUM
%token	LONG_SYM
%token	LOW_PRIORITY
%token  MASTER_HOST_SYM
%token  MASTER_USER_SYM
%token  MASTER_LOG_FILE_SYM
%token  MASTER_LOG_POS_SYM
unknown's avatar
unknown committed
229
%token  MASTER_LOG_SEQ_SYM
unknown's avatar
unknown committed
230 231 232
%token  MASTER_PASSWORD_SYM
%token  MASTER_PORT_SYM
%token  MASTER_CONNECT_RETRY_SYM
unknown's avatar
unknown committed
233
%token  MASTER_SERVER_ID_SYM
unknown's avatar
unknown committed
234 235
%token	MATCH
%token	MAX_ROWS
236
%token	MEDIUM_SYM
unknown's avatar
unknown committed
237 238 239 240 241
%token	MERGE_SYM
%token	MIN_ROWS
%token	MYISAM_SYM
%token	NATIONAL_SYM
%token	NATURAL
unknown's avatar
unknown committed
242
%token  NEW_SYM
unknown's avatar
unknown committed
243 244 245 246 247 248
%token	NCHAR_SYM
%token	NOT
%token	NO_SYM
%token	NULL_SYM
%token	NUM
%token	ON
249
%token	OPEN_SYM
unknown's avatar
unknown committed
250 251 252
%token	OPTION
%token	OPTIONALLY
%token	OR
253
%token	OR_OR_CONCAT
unknown's avatar
unknown committed
254 255 256 257 258 259 260 261 262 263 264
%token	ORDER_SYM
%token	OUTER
%token	OUTFILE
%token  DUMPFILE
%token	PACK_KEYS_SYM
%token	PARTIAL
%token	PRIMARY_SYM
%token	PRIVILEGES
%token	PROCESS
%token	PROCESSLIST_SYM
%token	RAID_0_SYM
265 266
%token	RAID_STRIPED_SYM
%token	RAID_TYPE
unknown's avatar
unknown committed
267 268 269 270 271 272 273 274
%token	RAID_CHUNKS
%token	RAID_CHUNKSIZE
%token	READ_SYM
%token	REAL_NUM
%token	REFERENCES
%token	REGEXP
%token	RELOAD
%token	RENAME
unknown's avatar
unknown committed
275
%token	REPEATABLE_SYM
unknown's avatar
unknown committed
276
%token	REQUIRE_SYM
unknown's avatar
unknown committed
277
%token  RESTORE_SYM
unknown's avatar
unknown committed
278 279 280 281 282 283
%token	RESTRICT
%token	REVOKE
%token	ROWS_SYM
%token	ROW_FORMAT_SYM
%token	ROW_SYM
%token	SET
unknown's avatar
unknown committed
284 285
%token	SERIALIZABLE_SYM
%token	SESSION_SYM
unknown's avatar
unknown committed
286
%token	SHUTDOWN
287
%token  SSL_SYM
unknown's avatar
unknown committed
288 289 290
%token	STARTING
%token	STATUS_SYM
%token	STRAIGHT_JOIN
unknown's avatar
unknown committed
291
%token	SUBJECT_SYM
unknown's avatar
unknown committed
292 293 294 295 296
%token	TABLES
%token	TABLE_SYM
%token	TEMPORARY
%token	TERMINATED
%token	TEXT_STRING
297 298 299 300
%token	TO_SYM
%token	TRAILING
%token	TRANSACTION_SYM
%token	TYPE_SYM
unknown's avatar
unknown committed
301 302 303 304
%token	FUNC_ARG0
%token	FUNC_ARG1
%token	FUNC_ARG2
%token	FUNC_ARG3
305 306 307
%token	UDF_RETURNS_SYM
%token	UDF_SONAME_SYM
%token	UDF_SYM
unknown's avatar
unknown committed
308
%token  UNCOMMITTED_SYM
309 310 311 312 313 314
%token	UNION_SYM
%token	UNIQUE_SYM
%token	USAGE
%token	USE_SYM
%token	USING
%token	VALUES
unknown's avatar
unknown committed
315 316 317 318
%token	VARIABLES
%token	WHERE
%token	WITH
%token	WRITE_SYM
319
%token  X509_SYM
unknown's avatar
unknown committed
320 321 322 323 324
%token  COMPRESSED_SYM

%token	BIGINT
%token	BLOB_SYM
%token	CHAR_SYM
325
%token  CHANGED
unknown's avatar
unknown committed
326 327 328 329 330 331
%token	COALESCE
%token	DATETIME
%token	DATE_SYM
%token	DECIMAL_SYM
%token	DOUBLE_SYM
%token	ENUM
332
%token	FAST_SYM
unknown's avatar
unknown committed
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
%token	FLOAT_SYM
%token	INT_SYM
%token	LIMIT
%token	LONGBLOB
%token	LONGTEXT
%token	MEDIUMBLOB
%token	MEDIUMINT
%token	MEDIUMTEXT
%token	NUMERIC_SYM
%token	PRECISION
%token  QUICK
%token	REAL
%token	SMALLINT
%token	STRING_SYM
%token	TEXT_SYM
%token	TIMESTAMP
%token	TIME_SYM
%token	TINYBLOB
%token	TINYINT
%token	TINYTEXT
unknown's avatar
unknown committed
353
%token	ULONGLONG_NUM
unknown's avatar
unknown committed
354
%token	UNSIGNED
355 356 357
%token	VARBINARY
%token	VARCHAR
%token	VARYING
unknown's avatar
unknown committed
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
%token	ZEROFILL

%token  AGAINST
%token	ATAN
%token	BETWEEN_SYM
%token	BIT_AND
%token	BIT_OR
%token	CASE_SYM
%token	CONCAT
%token  CONCAT_WS
%token	CURDATE
%token	CURTIME
%token	DATABASE
%token	DATE_ADD_INTERVAL
%token	DATE_SUB_INTERVAL
%token	DAY_HOUR_SYM
%token	DAY_MINUTE_SYM
%token	DAY_SECOND_SYM
%token	DAY_SYM
%token	DECODE_SYM
unknown's avatar
unknown committed
378 379
%token	DES_ENCRYPT
%token	DES_DECRYPT
unknown's avatar
unknown committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
%token	ELSE
%token	ELT_FUNC
%token	ENCODE_SYM
%token	ENCRYPT
%token	EXPORT_SET
%token	EXTRACT_SYM
%token	FIELD_FUNC
%token	FORMAT_SYM
%token	FOR_SYM
%token	FROM_UNIXTIME
%token	GROUP_UNIQUE_USERS
%token	HOUR_MINUTE_SYM
%token	HOUR_SECOND_SYM
%token	HOUR_SYM
%token	IDENTIFIED_SYM
%token	IF
%token	INSERT_ID
397
%token	INSERT_METHOD
unknown's avatar
unknown committed
398 399 400 401 402 403 404
%token	INTERVAL_SYM
%token	LAST_INSERT_ID
%token	LEFT
%token	LOCATE
%token	MAKE_SET_SYM
%token	MINUTE_SECOND_SYM
%token	MINUTE_SYM
unknown's avatar
unknown committed
405
%token  MODE_SYM
unknown's avatar
unknown committed
406 407 408 409 410 411 412 413 414 415 416
%token	MODIFY_SYM
%token	MONTH_SYM
%token	NOW_SYM
%token	PASSWORD
%token	POSITION_SYM
%token	PROCEDURE
%token	RAND
%token	REPLACE
%token	RIGHT
%token	ROUND
%token	SECOND_SYM
unknown's avatar
unknown committed
417
%token	SHARE_SYM
unknown's avatar
unknown committed
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 443 444 445 446 447 448 449 450 451 452 453
%token	SUBSTRING
%token	SUBSTRING_INDEX
%token	TRIM
%token	UDA_CHAR_SUM
%token	UDA_FLOAT_SUM
%token	UDA_INT_SUM
%token	UDF_CHAR_FUNC
%token	UDF_FLOAT_FUNC
%token	UDF_INT_FUNC
%token	UNIQUE_USERS
%token	UNIX_TIMESTAMP
%token	USER
%token	WEEK_SYM
%token	WHEN_SYM
%token  WORK_SYM
%token	YEAR_MONTH_SYM
%token	YEAR_SYM
%token	YEARWEEK
%token  BENCHMARK_SYM
%token  END
%token  THEN_SYM

%token	SQL_BIG_TABLES
%token	SQL_BIG_SELECTS
%token	SQL_SELECT_LIMIT
%token	SQL_MAX_JOIN_SIZE
%token	SQL_LOG_BIN
%token	SQL_LOG_OFF
%token	SQL_LOG_UPDATE
%token	SQL_LOW_PRIORITY_UPDATES
%token	SQL_SMALL_RESULT
%token	SQL_BIG_RESULT
%token  SQL_BUFFER_RESULT
%token	SQL_WARNINGS
%token	SQL_AUTO_IS_NULL
%token	SQL_SAFE_UPDATES
454
%token  SQL_QUOTE_SHOW_CREATE
455
%token  SQL_SLAVE_SKIP_COUNTER
unknown's avatar
unknown committed
456

unknown's avatar
unknown committed
457 458
%token  ISSUER_SYM
%token  SUBJECT_SYM
459
%token  CIPHER_SYM
unknown's avatar
unknown committed
460

unknown's avatar
unknown committed
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
%left   SET_VAR
%left	OR_OR_CONCAT OR
%left	AND
%left	BETWEEN_SYM CASE_SYM WHEN_SYM THEN_SYM ELSE
%left	EQ EQUAL_SYM GE GT_SYM LE LT NE IS LIKE REGEXP IN_SYM
%left	'|'
%left	'&'
%left	SHIFT_LEFT SHIFT_RIGHT
%left	'-' '+'
%left	'*' '/' '%'
%left	NEG '~'
%right	NOT
%right	BINARY

%type <lex_str>
	IDENT TEXT_STRING REAL_NUM FLOAT_NUM NUM LONG_NUM HEX_NUM LEX_HOSTNAME
unknown's avatar
unknown committed
477
	ULONGLONG_NUM field_ident select_alias ident ident_or_text
unknown's avatar
unknown committed
478 479 480 481 482 483 484 485 486 487 488 489

%type <lex_str_ptr>
	opt_table_alias

%type <table>
	table_ident

%type <simple_string>
	remember_name remember_end opt_len opt_ident opt_db text_or_password
	opt_escape

%type <string>
unknown's avatar
unknown committed
490
	text_string 
unknown's avatar
unknown committed
491 492 493 494

%type <num>
	type int_type real_type order_dir opt_field_spec set_option lock_option
	udf_type if_exists opt_local opt_table_options table_options
unknown's avatar
unknown committed
495
	table_option opt_if_not_exists 
unknown's avatar
unknown committed
496 497

%type <ulong_num>
498
	ULONG_NUM raid_types merge_insert_types
unknown's avatar
unknown committed
499

unknown's avatar
unknown committed
500 501
%type <ulonglong_number>
	ulonglong_num
unknown's avatar
unknown committed
502 503 504 505 506

%type <item>
	literal text_literal insert_ident group_ident order_ident
	simple_ident select_item2 expr opt_expr opt_else sum_expr in_sum_expr
	table_wild opt_pad no_in_expr expr_expr simple_expr no_and_expr
507
	using_list
unknown's avatar
unknown committed
508 509

%type <item_list>
unknown's avatar
unknown committed
510
	expr_list udf_expr_list when_list ident_list ident_list_arg
unknown's avatar
unknown committed
511 512

%type <key_type>
513
	key_type opt_unique_or_fulltext
unknown's avatar
unknown committed
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533

%type <string_list>
	key_usage_list

%type <key_part>
	key_part

%type <table_list>
	join_table_list join_table

%type <udf>
	UDF_CHAR_FUNC UDF_FLOAT_FUNC UDF_INT_FUNC
	UDA_CHAR_SUM UDA_FLOAT_SUM UDA_INT_SUM

%type <interval> interval

%type <db_type> table_types

%type <row_type> row_types

unknown's avatar
unknown committed
534 535
%type <tx_isolation> tx_isolation isolation_types

unknown's avatar
unknown committed
536 537 538 539 540 541 542 543
%type <udf_type> udf_func_type

%type <symbol> FUNC_ARG0 FUNC_ARG1 FUNC_ARG2 FUNC_ARG3 keyword

%type <lex_user> user grant_user

%type <NONE>
	query verb_clause create change select drop insert replace insert2
544 545
	insert_values update delete truncate rename
	show describe load alter optimize flush
unknown's avatar
unknown committed
546
	reset purge begin commit rollback slave master_def master_defs
547
	repair restore backup analyze check 
548
	field_list field_list_item field_spec kill
unknown's avatar
unknown committed
549 550 551
	select_item_list select_item values_list no_braces
	limit_clause delete_limit_clause fields opt_values values
	procedure_list procedure_list2 procedure_item
552
	when_list2 expr_list2  handler
unknown's avatar
unknown committed
553 554 555 556
	opt_precision opt_ignore opt_column opt_restrict
	grant revoke set lock unlock string_list field_options field_option
	field_opt_list opt_binary table_lock_list table_lock varchar
	references opt_on_delete opt_on_delete_list opt_on_delete_item use
557
	opt_delete_options opt_delete_option
558
	opt_outer table_list table_name opt_option opt_place opt_low_priority
unknown's avatar
unknown committed
559 560 561 562 563 564
	opt_attribute opt_attribute_list attribute column_list column_list_id
	opt_column_list grant_privileges opt_table user_list grant_option
	grant_privilege grant_privilege_list
	flush_options flush_option insert_lock_option replace_lock_option
	equal optional_braces opt_key_definition key_usage_list2
	opt_mi_check_type opt_to mi_check_types normal_join
565
	table_to_table_list table_to_table opt_table_list opt_as
unknown's avatar
unknown committed
566
	handler_rkey_function handler_rkey_mode handler_read_or_scan
unknown's avatar
unknown committed
567
	single_multi table_wild_list table_wild_one opt_wild union union_list
unknown's avatar
unknown committed
568
	precision union_option
569
END_OF_INPUT
unknown's avatar
unknown committed
570 571 572 573 574 575 576 577 578

%type <NONE>
	'-' '+' '*' '/' '%' '(' ')'
	',' '!' '{' '}' '&' '|' AND OR OR_OR_CONCAT BETWEEN_SYM CASE_SYM THEN_SYM WHEN_SYM
%%


query:
	END_OF_INPUT
unknown's avatar
unknown committed
579
	{
unknown's avatar
unknown committed
580 581 582 583 584 585 586 587 588
	   if (!current_thd->bootstrap)
	     send_error(&current_thd->net,ER_EMPTY_QUERY);
	   YYABORT;
	}
	| verb_clause END_OF_INPUT {}

verb_clause:
	  alter
	| analyze
589
	| backup
unknown's avatar
unknown committed
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
	| begin
	| change
	| check
	| commit
	| create
	| delete
	| describe
	| drop
	| grant
	| insert
	| flush
	| load
	| lock
	| kill
	| optimize
unknown's avatar
unknown committed
605
	| purge  
606
	| rename
unknown's avatar
unknown committed
607 608
        | repair
	| replace
unknown's avatar
unknown committed
609
	| reset
610
	| restore
unknown's avatar
unknown committed
611 612 613 614
	| revoke
	| rollback
	| select
	| set
unknown's avatar
unknown committed
615
	| slave
unknown's avatar
unknown committed
616
	| show
617
	| truncate
618
	| handler
unknown's avatar
unknown committed
619 620 621 622 623 624 625
	| unlock
	| update
	| use

/* change master */

change:
unknown's avatar
unknown committed
626
       CHANGE MASTER_SYM TO_SYM
unknown's avatar
unknown committed
627 628 629 630 631 632 633 634 635 636
        {
	  LEX *lex = Lex;
	  lex->sql_command = SQLCOM_CHANGE_MASTER;
	  memset(&lex->mi, 0, sizeof(lex->mi));
        } master_defs

master_defs:
       master_def
       |
       master_defs ',' master_def
unknown's avatar
unknown committed
637

unknown's avatar
unknown committed
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658
master_def:
       MASTER_HOST_SYM EQ TEXT_STRING
       {
	 Lex->mi.host = $3.str;
       }
       |
       MASTER_USER_SYM EQ TEXT_STRING
       {
	 Lex->mi.user = $3.str;
       }
       |
       MASTER_PASSWORD_SYM EQ TEXT_STRING
       {
	 Lex->mi.password = $3.str;
       }
       |
       MASTER_LOG_FILE_SYM EQ TEXT_STRING
       {
	 Lex->mi.log_file_name = $3.str;
       }
       |
unknown's avatar
unknown committed
659
       MASTER_PORT_SYM EQ ULONG_NUM
unknown's avatar
unknown committed
660 661 662 663
       {
	 Lex->mi.port = $3;
       }
       |
unknown's avatar
unknown committed
664
       MASTER_LOG_POS_SYM EQ ulonglong_num
unknown's avatar
unknown committed
665 666 667 668
       {
	 Lex->mi.pos = $3;
       }
       |
unknown's avatar
unknown committed
669
       MASTER_CONNECT_RETRY_SYM EQ ULONG_NUM
unknown's avatar
unknown committed
670 671 672 673
       {
	 Lex->mi.connect_retry = $3;
       }

unknown's avatar
unknown committed
674

unknown's avatar
unknown committed
675 676 677 678 679 680 681
/* create a table */

create:
	CREATE opt_table_options TABLE_SYM opt_if_not_exists table_ident
	{
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_CREATE_TABLE;
unknown's avatar
unknown committed
682
	  if (!add_table_to_list($5,
unknown's avatar
unknown committed
683
				 ($2 & HA_LEX_CREATE_TMP_TABLE ?
684
				   &tmp_table_alias : (LEX_STRING*) 0),1))
unknown's avatar
unknown committed
685 686 687 688 689 690 691 692 693 694 695
	    YYABORT;
	  lex->create_list.empty();
	  lex->key_list.empty();
	  lex->col_list.empty();
	  lex->change=NullS;
	  bzero((char*) &lex->create_info,sizeof(lex->create_info));
	  lex->create_info.options=$2 | $4;
	  lex->create_info.db_type= default_table_type;
	}
	create2

696
	| CREATE opt_unique_or_fulltext INDEX ident ON table_ident
unknown's avatar
unknown committed
697
	  {
unknown's avatar
unknown committed
698 699
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_CREATE_INDEX;
700
	    if (!add_table_to_list($6,NULL,1))
unknown's avatar
unknown committed
701
	      YYABORT;
unknown's avatar
unknown committed
702 703 704 705
	    lex->create_list.empty();
	    lex->key_list.empty();
	    lex->col_list.empty();
	    lex->change=NullS;
unknown's avatar
unknown committed
706 707 708
	  }
	  '(' key_list ')'
	  {
unknown's avatar
unknown committed
709 710 711
	    LEX *lex=Lex;
	    lex->key_list.push_back(new Key($2,$4.str,lex->col_list));
	    lex->col_list.empty();
unknown's avatar
unknown committed
712 713 714
	  }
	| CREATE DATABASE opt_if_not_exists ident
	  {
unknown's avatar
unknown committed
715 716 717 718
	    LEX *lex=Lex;
	    lex->sql_command=SQLCOM_CREATE_DB;
	    lex->name=$4.str;
            lex->create_info.options=$3;
unknown's avatar
unknown committed
719 720 721
	  }
	| CREATE udf_func_type UDF_SYM ident
	  {
unknown's avatar
unknown committed
722 723 724 725 726
	    LEX *lex=Lex;
	    lex->sql_command = SQLCOM_CREATE_FUNCTION;
	    lex->udf.name=$4.str;
	    lex->udf.name_length=$4.length;
	    lex->udf.type= $2;
unknown's avatar
unknown committed
727 728 729
	  }
	  UDF_RETURNS_SYM udf_type UDF_SONAME_SYM TEXT_STRING
	  {
unknown's avatar
unknown committed
730 731 732
	    LEX *lex=Lex;
	    lex->udf.returns=(Item_result) $7;
	    lex->udf.dl=$9.str;
unknown's avatar
unknown committed
733 734 735
	  }

create2:
unknown's avatar
unknown committed
736
	'(' field_list ')' opt_create_table_options create3 {}
unknown's avatar
unknown committed
737 738 739
	| opt_create_table_options create3 {}

create3:
740 741
	/* empty */ {}
	| opt_duplicate opt_as SELECT_SYM
unknown's avatar
unknown committed
742
          {
unknown's avatar
unknown committed
743 744 745
	    LEX *lex=Lex;
	    lex->lock_option= (using_update_log) ? TL_READ_NO_INSERT : TL_READ;
	    mysql_init_select(lex);
unknown's avatar
unknown committed
746
          }
747
          select_options select_item_list opt_select_from union {}
unknown's avatar
unknown committed
748

749 750 751 752
opt_as:
	/* empty */ {}
	| AS	    {}

unknown's avatar
unknown committed
753
opt_table_options:
unknown's avatar
unknown committed
754
	/* empty */	 { $$= 0; }
unknown's avatar
unknown committed
755 756 757 758 759
	| table_options  { $$= $1;}

table_options:
	table_option	{ $$=$1; }
	| table_option table_options { $$= $1 | $2 }
unknown's avatar
unknown committed
760

unknown's avatar
unknown committed
761 762 763 764
table_option:
	TEMPORARY	{ $$=HA_LEX_CREATE_TMP_TABLE; }

opt_if_not_exists:
unknown's avatar
unknown committed
765
	/* empty */	 { $$= 0; }
unknown's avatar
unknown committed
766 767 768 769 770 771 772 773 774 775 776 777
	| IF NOT EXISTS	 { $$=HA_LEX_CREATE_IF_NOT_EXISTS; }

opt_create_table_options:
	/* empty */
	| create_table_options

create_table_options:
	create_table_option
	| create_table_option create_table_options

create_table_option:
	TYPE_SYM EQ table_types		{ Lex->create_info.db_type= $3; }
778 779 780
	| MAX_ROWS EQ ulonglong_num	{ Lex->create_info.max_rows= $3; Lex->create_info.used_fields|= HA_CREATE_USED_MAX_ROWS;}
	| MIN_ROWS EQ ulonglong_num	{ Lex->create_info.min_rows= $3; Lex->create_info.used_fields|= HA_CREATE_USED_MIN_ROWS;}
	| AVG_ROW_LENGTH EQ ULONG_NUM	{ Lex->create_info.avg_row_length=$3; Lex->create_info.used_fields|= HA_CREATE_USED_AVG_ROW_LENGTH;}
unknown's avatar
unknown committed
781 782
	| PASSWORD EQ TEXT_STRING	{ Lex->create_info.password=$3.str; }
	| COMMENT_SYM EQ TEXT_STRING	{ Lex->create_info.comment=$3.str; }
unknown's avatar
unknown committed
783
	| AUTO_INC EQ ulonglong_num	{ Lex->create_info.auto_increment_value=$3; Lex->create_info.used_fields|= HA_CREATE_USED_AUTO;}
784 785
	| PACK_KEYS_SYM EQ ULONG_NUM	{ Lex->create_info.table_options|= $3 ? HA_OPTION_PACK_KEYS : HA_OPTION_NO_PACK_KEYS; Lex->create_info.used_fields|= HA_CREATE_USED_PACK_KEYS;}
	| PACK_KEYS_SYM EQ DEFAULT	{ Lex->create_info.table_options&= ~(HA_OPTION_PACK_KEYS | HA_OPTION_NO_PACK_KEYS); Lex->create_info.used_fields|= HA_CREATE_USED_PACK_KEYS;}
unknown's avatar
unknown committed
786 787
	| CHECKSUM_SYM EQ ULONG_NUM	{ Lex->create_info.table_options|= $3 ? HA_OPTION_CHECKSUM : HA_OPTION_NO_CHECKSUM; }
	| DELAY_KEY_WRITE_SYM EQ ULONG_NUM { Lex->create_info.table_options|= $3 ? HA_OPTION_DELAY_KEY_WRITE : HA_OPTION_NO_DELAY_KEY_WRITE; }
unknown's avatar
unknown committed
788
	| ROW_FORMAT_SYM EQ row_types	{ Lex->create_info.row_type= $3; }
unknown's avatar
unknown committed
789 790 791
	| RAID_TYPE EQ raid_types	{ Lex->create_info.raid_type= $3; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
	| RAID_CHUNKS EQ ULONG_NUM	{ Lex->create_info.raid_chunks= $3; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
	| RAID_CHUNKSIZE EQ ULONG_NUM	{ Lex->create_info.raid_chunksize= $3*RAID_BLOCK_SIZE; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
792 793 794 795
	| UNION_SYM EQ '(' table_list ')'
	  {
	    /* Move the union list to the merge_list */
	    LEX *lex=Lex;
796 797
	    TABLE_LIST *table_list= (TABLE_LIST*) lex->select->table_list.first;
	    lex->create_info.merge_list= lex->select->table_list;
798 799
	    lex->create_info.merge_list.elements--;
	    lex->create_info.merge_list.first= (byte*) (table_list->next);
800 801
	    lex->select->table_list.elements=1;
	    lex->select->table_list.next= (byte**) &(table_list->next);
802
	    table_list->next=0;
803
	    lex->create_info.used_fields|= HA_CREATE_USED_UNION;
804
	  }
805
	| INSERT_METHOD EQ merge_insert_types   { Lex->create_info.merge_insert_method= $3; Lex->create_info.used_fields|= HA_CREATE_USED_INSERT_METHOD;}
unknown's avatar
unknown committed
806 807
	| DATA_SYM DIRECTORY_SYM EQ TEXT_STRING	{ Lex->create_info.data_file_name= $4.str; }
	| INDEX DIRECTORY_SYM EQ TEXT_STRING	{ Lex->create_info.index_file_name= $4.str; }
unknown's avatar
unknown committed
808 809 810 811 812 813 814

table_types:
	ISAM_SYM	{ $$= DB_TYPE_ISAM; }
	| MYISAM_SYM	{ $$= DB_TYPE_MYISAM; }
	| MERGE_SYM	{ $$= DB_TYPE_MRG_MYISAM; }
	| HEAP_SYM	{ $$= DB_TYPE_HEAP; }
	| BERKELEY_DB_SYM { $$= DB_TYPE_BERKELEY_DB; }
815
	| INNOBASE_SYM  { $$= DB_TYPE_INNODB; }
unknown's avatar
unknown committed
816 817 818 819 820 821 822 823 824 825 826 827

row_types:
	DEFAULT		{ $$= ROW_TYPE_DEFAULT; }
	| FIXED_SYM	{ $$= ROW_TYPE_FIXED; }
	| DYNAMIC_SYM	{ $$= ROW_TYPE_DYNAMIC; }
	| COMPRESSED_SYM { $$= ROW_TYPE_COMPRESSED; }

raid_types:
	RAID_STRIPED_SYM { $$= RAID_TYPE_0; }
	| RAID_0_SYM	 { $$= RAID_TYPE_0; }
	| ULONG_NUM	 { $$=$1;}

828 829 830 831 832
merge_insert_types:
       NO_SYM            { $$= MERGE_INSERT_DISABLED; }
       | FIRST_SYM       { $$= MERGE_INSERT_TO_FIRST; }
       | LAST_SYM        { $$= MERGE_INSERT_TO_LAST; }

unknown's avatar
unknown committed
833 834
opt_select_from:
	/* empty */
835
	| select_from select_lock_type
unknown's avatar
unknown committed
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858

udf_func_type:
	/* empty */ 	{ $$ = UDFTYPE_FUNCTION; }
	| AGGREGATE_SYM { $$ = UDFTYPE_AGGREGATE; }

udf_type:
	STRING_SYM {$$ = (int) STRING_RESULT; }
	| REAL {$$ = (int) REAL_RESULT; }
	| INT_SYM {$$ = (int) INT_RESULT; }

field_list:
	  field_list_item
	| field_list ',' field_list_item


field_list_item:
	  field_spec
	| field_spec references
	  {
	    Lex->col_list.empty();		/* Alloced by sql_alloc */
	  }
	| key_type opt_ident '(' key_list ')'
	  {
unknown's avatar
unknown committed
859 860 861
	    LEX *lex=Lex;
	    lex->key_list.push_back(new Key($1,$2,lex->col_list));
	    lex->col_list.empty();		/* Alloced by sql_alloc */
unknown's avatar
unknown committed
862
	  }
863
	| opt_constraint FOREIGN KEY_SYM opt_ident '(' key_list ')' references
unknown's avatar
unknown committed
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878
	  {
	    Lex->col_list.empty();		/* Alloced by sql_alloc */
	  }
	| opt_constraint CHECK_SYM '(' expr ')'
	  {
	    Lex->col_list.empty();		/* Alloced by sql_alloc */
	  }

opt_constraint:
	/* empty */
	| CONSTRAINT opt_ident

field_spec:
	field_ident
	 {
unknown's avatar
unknown committed
879 880 881
	   LEX *lex=Lex;
	   lex->length=lex->dec=0; lex->type=0; lex->interval=0;
	   lex->default_value=0;
unknown's avatar
unknown committed
882 883 884
	 }
	type opt_attribute
	{
unknown's avatar
unknown committed
885
	  LEX *lex=Lex;
unknown's avatar
unknown committed
886 887
	  if (add_field_to_list($1.str,
				(enum enum_field_types) $3,
unknown's avatar
unknown committed
888 889 890
				lex->length,lex->dec,lex->type,
				lex->default_value,lex->change,
				lex->interval))
unknown's avatar
unknown committed
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 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941
	    YYABORT;
	}

type:
	int_type opt_len field_options	{ Lex->length=$2; $$=$1; }
	| real_type opt_precision field_options { $$=$1; }
	| FLOAT_SYM float_options field_options { $$=FIELD_TYPE_FLOAT; }
	| BIT_SYM opt_len		{ Lex->length=(char*) "1";
					  $$=FIELD_TYPE_TINY; }
	| BOOL_SYM			{ Lex->length=(char*) "1";
					  $$=FIELD_TYPE_TINY; }
	| char '(' NUM ')' opt_binary { Lex->length=$3.str;
					  $$=FIELD_TYPE_STRING; }
	| char opt_binary		{ Lex->length=(char*) "1";
					  $$=FIELD_TYPE_STRING; }
	| BINARY '(' NUM ')' 		{ Lex->length=$3.str;
					  Lex->type|=BINARY_FLAG;
					  $$=FIELD_TYPE_STRING; }
	| varchar '(' NUM ')' opt_binary { Lex->length=$3.str;
					  $$=FIELD_TYPE_VAR_STRING; }
	| VARBINARY '(' NUM ')' 	{ Lex->length=$3.str;
					  Lex->type|=BINARY_FLAG;
					  $$=FIELD_TYPE_VAR_STRING; }
	| YEAR_SYM opt_len field_options { $$=FIELD_TYPE_YEAR; Lex->length=$2; }
	| DATE_SYM			{ $$=FIELD_TYPE_DATE; }
	| TIME_SYM			{ $$=FIELD_TYPE_TIME; }
	| TIMESTAMP			{ $$=FIELD_TYPE_TIMESTAMP; }
	| TIMESTAMP '(' NUM ')'		{ Lex->length=$3.str;
					  $$=FIELD_TYPE_TIMESTAMP; }
	| DATETIME			{ $$=FIELD_TYPE_DATETIME; }
	| TINYBLOB			{ Lex->type|=BINARY_FLAG;
					  $$=FIELD_TYPE_TINY_BLOB; }
	| BLOB_SYM			{ Lex->type|=BINARY_FLAG;
					  $$=FIELD_TYPE_BLOB; }
	| MEDIUMBLOB			{ Lex->type|=BINARY_FLAG;
					  $$=FIELD_TYPE_MEDIUM_BLOB; }
	| LONGBLOB			{ Lex->type|=BINARY_FLAG;
					  $$=FIELD_TYPE_LONG_BLOB; }
	| LONG_SYM VARBINARY		{ Lex->type|=BINARY_FLAG;
					  $$=FIELD_TYPE_MEDIUM_BLOB; }
	| LONG_SYM varchar		{ $$=FIELD_TYPE_MEDIUM_BLOB; }
	| TINYTEXT			{ $$=FIELD_TYPE_TINY_BLOB; }
	| TEXT_SYM			{ $$=FIELD_TYPE_BLOB; }
	| MEDIUMTEXT			{ $$=FIELD_TYPE_MEDIUM_BLOB; }
	| LONGTEXT			{ $$=FIELD_TYPE_LONG_BLOB; }
	| DECIMAL_SYM float_options field_options
					{ $$=FIELD_TYPE_DECIMAL;}
	| NUMERIC_SYM float_options field_options
					{ $$=FIELD_TYPE_DECIMAL;}
	| ENUM {Lex->interval_list.empty();} '(' string_list ')'
	  {
unknown's avatar
unknown committed
942 943
	    LEX *lex=Lex;
	    lex->interval=typelib(lex->interval_list);
unknown's avatar
unknown committed
944 945 946 947
	    $$=FIELD_TYPE_ENUM;
	  }
	| SET { Lex->interval_list.empty();} '(' string_list ')'
	  {
unknown's avatar
unknown committed
948 949
	    LEX *lex=Lex;
	    lex->interval=typelib(lex->interval_list);
unknown's avatar
unknown committed
950 951 952 953 954 955 956
	    $$=FIELD_TYPE_SET;
	  }

char:
	CHAR_SYM {}
	| NCHAR_SYM {}
	| NATIONAL_SYM CHAR_SYM {}
unknown's avatar
unknown committed
957

unknown's avatar
unknown committed
958 959 960 961 962 963 964 965 966 967 968 969 970 971
varchar:
	char VARYING {}
	| VARCHAR {}
	| NATIONAL_SYM VARCHAR {}
	| NCHAR_SYM VARCHAR {}

int_type:
	INT_SYM		{ $$=FIELD_TYPE_LONG; }
	| TINYINT	{ $$=FIELD_TYPE_TINY; }
	| SMALLINT	{ $$=FIELD_TYPE_SHORT; }
	| MEDIUMINT	{ $$=FIELD_TYPE_INT24; }
	| BIGINT	{ $$=FIELD_TYPE_LONGLONG; }

real_type:
972
	REAL		{ $$= current_thd->sql_mode & MODE_REAL_AS_FLOAT ?
unknown's avatar
unknown committed
973 974 975 976 977 978 979 980
			      FIELD_TYPE_FLOAT : FIELD_TYPE_DOUBLE; }
	| DOUBLE_SYM	{ $$=FIELD_TYPE_DOUBLE; }
	| DOUBLE_SYM PRECISION { $$=FIELD_TYPE_DOUBLE; }


float_options:
	/* empty */		{}
	| '(' NUM ')'		{ Lex->length=$2.str; }
unknown's avatar
unknown committed
981 982 983 984 985 986 987 988
	| precision		{}

precision:
	'(' NUM ',' NUM ')'
	{
	  LEX *lex=Lex;
	  lex->length=$2.str; lex->dec=$4.str;
	}
unknown's avatar
unknown committed
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007

field_options:
	/* empty */		{}
	| field_opt_list	{}

field_opt_list:
	field_opt_list field_option {}
	| field_option {}

field_option:
	UNSIGNED	{ Lex->type|= UNSIGNED_FLAG;}
	| ZEROFILL	{ Lex->type|= UNSIGNED_FLAG | ZEROFILL_FLAG; }

opt_len:
	/* empty */	{ $$=(char*) 0; }	/* use default length */
	| '(' NUM ')'	{ $$=$2.str; }

opt_precision:
	/* empty */	{}
unknown's avatar
unknown committed
1008
	| precision	{}
unknown's avatar
unknown committed
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 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062

opt_attribute:
	/* empty */ {}
	| opt_attribute_list {}

opt_attribute_list:
	opt_attribute_list attribute {}
	| attribute

attribute:
	NULL_SYM	  { Lex->type&= ~ NOT_NULL_FLAG; }
	| NOT NULL_SYM	  { Lex->type|= NOT_NULL_FLAG; }
	| DEFAULT literal { Lex->default_value=$2; }
	| AUTO_INC	  { Lex->type|= AUTO_INCREMENT_FLAG | NOT_NULL_FLAG; }
	| PRIMARY_SYM KEY_SYM { Lex->type|= PRI_KEY_FLAG | NOT_NULL_FLAG; }
	| UNIQUE_SYM	  { Lex->type|= UNIQUE_FLAG; }
	| UNIQUE_SYM KEY_SYM { Lex->type|= UNIQUE_KEY_FLAG; }

opt_binary:
	/* empty */	{}
	| BINARY	{ Lex->type|=BINARY_FLAG; }

references:
	REFERENCES table_ident opt_on_delete {}
	| REFERENCES table_ident '(' key_list ')' opt_on_delete
	  {
	    Lex->col_list.empty();		/* Alloced by sql_alloc */
	  }

opt_on_delete:
	/* empty */ {}
	| opt_on_delete_list {}

opt_on_delete_list:
	opt_on_delete_list opt_on_delete_item {}
	| opt_on_delete_item {}


opt_on_delete_item:
	ON DELETE_SYM delete_option {}
	| ON UPDATE_SYM delete_option {}
	| MATCH FULL	{}
	| MATCH PARTIAL {}

delete_option:
	RESTRICT	 {}
	| CASCADE	 {}
	| SET NULL_SYM {}
	| NO_SYM ACTION {}
	| SET DEFAULT {}

key_type:
	opt_constraint PRIMARY_SYM KEY_SYM  { $$= Key::PRIMARY; }
	| key_or_index			    { $$= Key::MULTIPLE; }
1063 1064
	| FULLTEXT_SYM			    { $$= Key::FULLTEXT; }
	| FULLTEXT_SYM key_or_index	    { $$= Key::FULLTEXT; }
unknown's avatar
unknown committed
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
	| opt_constraint UNIQUE_SYM	    { $$= Key::UNIQUE; }
	| opt_constraint UNIQUE_SYM key_or_index { $$= Key::UNIQUE; }

key_or_index:
	KEY_SYM {}
	| INDEX {}

keys_or_index:
	KEYS {}
	| INDEX {}
unknown's avatar
unknown committed
1075
	| INDEXES {}
unknown's avatar
unknown committed
1076

1077
opt_unique_or_fulltext:
unknown's avatar
unknown committed
1078 1079
	/* empty */	{ $$= Key::MULTIPLE; }
	| UNIQUE_SYM	{ $$= Key::UNIQUE; }
1080
	| FULLTEXT_SYM	{ $$= Key::FULLTEXT; }
unknown's avatar
unknown committed
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107

key_list:
	key_list ',' key_part order_dir { Lex->col_list.push_back($3); }
	| key_part order_dir		{ Lex->col_list.push_back($1); }

key_part:
	ident			{ $$=new key_part_spec($1.str); }
	| ident '(' NUM ')'	{ $$=new key_part_spec($1.str,(uint) atoi($3.str)); }

opt_ident:
	/* empty */	{ $$=(char*) 0; }	/* Defaultlength */
	| field_ident	{ $$=$1.str; }

string_list:
	text_string			{ Lex->interval_list.push_back($1); }
	| string_list ',' text_string	{ Lex->interval_list.push_back($3); }

/*
** Alter table
*/

alter:
	ALTER opt_ignore TABLE_SYM table_ident
	{
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_ALTER_TABLE;
	  lex->name=0;
1108
	  if (!add_table_to_list($4, NULL,1))
unknown's avatar
unknown committed
1109 1110 1111 1112 1113 1114 1115
	    YYABORT;
	  lex->drop_primary=0;
	  lex->create_list.empty();
	  lex->key_list.empty();
	  lex->col_list.empty();
	  lex->drop_list.empty();
	  lex->alter_list.empty();
1116 1117 1118 1119
          lex->select->order_list.elements=0;
          lex->select->order_list.first=0;
          lex->select->order_list.next= (byte**) &lex->select->order_list.first;
	  lex->select->db=lex->name=0;
unknown's avatar
unknown committed
1120 1121
    	  bzero((char*) &lex->create_info,sizeof(lex->create_info));
	  lex->create_info.db_type= DB_TYPE_DEFAULT;
1122
	  lex->create_info.row_type= ROW_TYPE_NOT_USED;
1123 1124
          lex->alter_keys_onoff=LEAVE_AS_IS;
          lex->simple_alter=1;
unknown's avatar
unknown committed
1125
	}
1126
	alter_list
unknown's avatar
unknown committed
1127
 
unknown's avatar
unknown committed
1128
alter_list:
unknown's avatar
unknown committed
1129
        | alter_list_item
unknown's avatar
unknown committed
1130 1131 1132
	| alter_list ',' alter_list_item

add_column:
1133
	ADD opt_column { Lex->change=0; }
unknown's avatar
unknown committed
1134 1135

alter_list_item:
1136 1137
	add_column field_list_item opt_place { Lex->simple_alter=0; }
	| add_column '(' field_list ')'      { Lex->simple_alter=0; }
unknown's avatar
unknown committed
1138 1139 1140 1141 1142
	| CHANGE opt_column field_ident
	  {
	     LEX *lex=Lex;
	     lex->change= $3.str; lex->simple_alter=0;
	  }
1143
          field_spec opt_place
unknown's avatar
unknown committed
1144 1145
	| MODIFY_SYM opt_column field_ident
	  {
unknown's avatar
unknown committed
1146 1147 1148 1149
	    LEX *lex=Lex;
	    lex->length=lex->dec=0; lex->type=0; lex->interval=0;
	    lex->default_value=0;
            lex->simple_alter=0;
unknown's avatar
unknown committed
1150 1151 1152
	  }
	  type opt_attribute
	  {
unknown's avatar
unknown committed
1153
	    LEX *lex=Lex;
unknown's avatar
unknown committed
1154 1155
	    if (add_field_to_list($3.str,
				  (enum enum_field_types) $5,
unknown's avatar
unknown committed
1156 1157 1158
				  lex->length,lex->dec,lex->type,
				  lex->default_value, $3.str,
				  lex->interval))
unknown's avatar
unknown committed
1159
	     YYABORT;
unknown's avatar
unknown committed
1160
             lex->simple_alter=0;
unknown's avatar
unknown committed
1161
	  }
1162
	  opt_place
unknown's avatar
unknown committed
1163
	| DROP opt_column field_ident opt_restrict
unknown's avatar
unknown committed
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
	  {
	    LEX *lex=Lex;
	    lex->drop_list.push_back(new Alter_drop(Alter_drop::COLUMN,
					    $3.str)); lex->simple_alter=0;
	  }
	| DROP PRIMARY_SYM KEY_SYM
	  {
	    LEX *lex=Lex;
	    lex->drop_primary=1; lex->simple_alter=0;
	  }
1174
	| DROP FOREIGN KEY_SYM opt_ident { Lex->simple_alter=0; }
unknown's avatar
unknown committed
1175
	| DROP key_or_index field_ident
unknown's avatar
unknown committed
1176 1177 1178 1179 1180 1181
	  {
	    LEX *lex=Lex;
	    lex->drop_list.push_back(new Alter_drop(Alter_drop::KEY,
						    $3.str));
	    lex->simple_alter=0;
	  }
1182 1183
	| DISABLE_SYM KEYS { Lex->alter_keys_onoff=DISABLE; }
	| ENABLE_SYM KEYS  { Lex->alter_keys_onoff=ENABLE; }
unknown's avatar
unknown committed
1184
	| ALTER opt_column field_ident SET DEFAULT literal
unknown's avatar
unknown committed
1185 1186 1187 1188 1189
	  {
	    LEX *lex=Lex;
	    lex->alter_list.push_back(new Alter_column($3.str,$6));
	    lex->simple_alter=0;
	  }
unknown's avatar
unknown committed
1190
	| ALTER opt_column field_ident DROP DEFAULT
unknown's avatar
unknown committed
1191 1192 1193 1194 1195
	  {
	    LEX *lex=Lex;
	    lex->alter_list.push_back(new Alter_column($3.str,(Item*) 0));
	    lex->simple_alter=0;
	  }
unknown's avatar
unknown committed
1196
	| RENAME opt_to table_alias table_ident
1197 1198
	  { 
	    LEX *lex=Lex;
unknown's avatar
unknown committed
1199 1200 1201
	    lex->select->db=$4->db.str;
	    lex->name= $4->table.str;
	    lex->simple_alter=0; 
1202
	  }
1203 1204
        | create_table_options { Lex->simple_alter=0; }
	| order_clause         { Lex->simple_alter=0; }
unknown's avatar
unknown committed
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226

opt_column:
	/* empty */	{}
	| COLUMN_SYM	{}

opt_ignore:
	/* empty */	{ Lex->duplicates=DUP_ERROR; }
	| IGNORE_SYM	{ Lex->duplicates=DUP_IGNORE; }

opt_restrict:
	/* empty */	{}
	| RESTRICT	{}
	| CASCADE	{}

opt_place:
	/* empty */	{}
	| AFTER_SYM ident { store_position_for_column($2.str); }
	| FIRST_SYM	  { store_position_for_column(first_keyword); }

opt_to:
	/* empty */	{}
	| TO_SYM	{}
1227
	| AS		{}
unknown's avatar
unknown committed
1228 1229 1230 1231

slave:
	SLAVE START_SYM
         {
unknown's avatar
unknown committed
1232 1233 1234
	   LEX *lex=Lex;
           lex->sql_command = SQLCOM_SLAVE_START;
	   lex->type = 0;
unknown's avatar
unknown committed
1235 1236 1237 1238
         }
         |
	SLAVE STOP_SYM
         {
unknown's avatar
unknown committed
1239 1240 1241
	   LEX *lex=Lex;
           lex->sql_command = SQLCOM_SLAVE_STOP;
	   lex->type = 0;
unknown's avatar
unknown committed
1242
         };
unknown's avatar
unknown committed
1243

unknown's avatar
unknown committed
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
restore:
	RESTORE_SYM table_or_tables
	{
	   Lex->sql_command = SQLCOM_RESTORE_TABLE;
	}
	table_list FROM TEXT_STRING
        {
	  Lex->backup_dir = $6.str;
        }
backup:
	BACKUP_SYM table_or_tables
	{
	   Lex->sql_command = SQLCOM_BACKUP_TABLE;
	}
	table_list TO_SYM TEXT_STRING
        {
	  Lex->backup_dir = $6.str;
        }


unknown's avatar
unknown committed
1264 1265 1266
repair:
	REPAIR table_or_tables
	{
unknown's avatar
unknown committed
1267 1268 1269
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_REPAIR;
	   lex->check_opt.init();
unknown's avatar
unknown committed
1270 1271 1272 1273 1274 1275 1276
	}
	table_list opt_mi_check_type


opt_mi_check_type:
	/* empty */ { Lex->check_opt.flags = T_MEDIUM; }
	| TYPE_SYM EQ mi_check_types {}
1277
	| mi_check_types {}
unknown's avatar
unknown committed
1278 1279

mi_check_types:
1280 1281 1282 1283
	mi_check_type {}
	| mi_check_type mi_check_types {}

mi_check_type:
1284 1285
	QUICK      { Lex->check_opt.quick = 1; }
	| FAST_SYM { Lex->check_opt.flags|= T_FAST; }
1286
	| MEDIUM_SYM { Lex->check_opt.flags|= T_MEDIUM; }
1287 1288
	| EXTENDED_SYM { Lex->check_opt.flags|= T_EXTEND; }
	| CHANGED  { Lex->check_opt.flags|= T_CHECK_ONLY_CHANGED; }
unknown's avatar
unknown committed
1289 1290

analyze:
1291
	ANALYZE_SYM table_or_tables
unknown's avatar
unknown committed
1292
	{
unknown's avatar
unknown committed
1293 1294 1295
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_ANALYZE;
	   lex->check_opt.init();
unknown's avatar
unknown committed
1296
	}
1297
	table_list opt_mi_check_type
unknown's avatar
unknown committed
1298 1299

check:
unknown's avatar
unknown committed
1300
	CHECK_SYM table_or_tables
unknown's avatar
unknown committed
1301
	{
unknown's avatar
unknown committed
1302 1303 1304
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_CHECK;
	   lex->check_opt.init();
unknown's avatar
unknown committed
1305 1306 1307 1308
	}
	table_list opt_mi_check_type

optimize:
1309
	OPTIMIZE table_or_tables
unknown's avatar
unknown committed
1310
	{
unknown's avatar
unknown committed
1311 1312 1313
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_OPTIMIZE;
	   lex->check_opt.init();
unknown's avatar
unknown committed
1314
	}
1315
	table_list opt_mi_check_type
unknown's avatar
unknown committed
1316

1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329
rename:
	RENAME table_or_tables
	{
	   Lex->sql_command=SQLCOM_RENAME_TABLE;
	}
	table_to_table_list

table_to_table_list:
	table_to_table
	| table_to_table_list ',' table_to_table

table_to_table:
	table_ident TO_SYM table_ident
1330 1331
	{ if (!add_table_to_list($1,NULL,1,TL_IGNORE) ||
	      !add_table_to_list($3,NULL,1,TL_IGNORE))
1332 1333 1334
	     YYABORT;
 	}

unknown's avatar
unknown committed
1335 1336 1337 1338 1339 1340
/*
** Select : retrieve data from table
*/


select:
1341 1342 1343
	SELECT_SYM select_part2  {Select->braces=false;} union
	|
	'(' SELECT_SYM 	select_part2 ')' {Select->braces=true;} union_opt
1344 1345

select_part2:
unknown's avatar
unknown committed
1346 1347
	{
	  LEX *lex=Lex;
unknown's avatar
unknown committed
1348
	  lex->lock_option=TL_READ;
1349
	   mysql_init_select(lex);
unknown's avatar
unknown committed
1350
	}
1351
	select_options select_item_list select_into select_lock_type
1352

unknown's avatar
unknown committed
1353
select_into:
1354
	limit_clause {}
unknown's avatar
unknown committed
1355 1356 1357 1358 1359
	| select_from
	| opt_into select_from
	| select_from opt_into

select_from:
1360
	FROM join_table_list where_clause group_clause having_clause opt_order_clause limit_clause procedure_clause
unknown's avatar
unknown committed
1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371


select_options:
	/* empty*/
	| select_option_list

select_option_list:
	select_option_list select_option
	| select_option

select_option:
1372
	STRAIGHT_JOIN { Select->options|= SELECT_STRAIGHT_JOIN; }
unknown's avatar
unknown committed
1373
	| HIGH_PRIORITY { Lex->lock_option= TL_READ_HIGH_PRIORITY; }
1374 1375 1376 1377 1378
	| DISTINCT	{ Select->options|= SELECT_DISTINCT; }
	| SQL_SMALL_RESULT { Select->options|= SELECT_SMALL_RESULT; }
	| SQL_BIG_RESULT { Select->options|= SELECT_BIG_RESULT; }
	| SQL_BUFFER_RESULT { Select->options|= OPTION_BUFFER_RESULT; }
	| SQL_CALC_FOUND_ROWS { Select->options|= OPTION_FOUND_ROWS; }
unknown's avatar
unknown committed
1379 1380
	| ALL		{}

unknown's avatar
unknown committed
1381 1382 1383 1384 1385 1386 1387
select_lock_type:
	/* empty */
	| FOR_SYM UPDATE_SYM
	  { Lex->lock_option= TL_WRITE; }
	| IN_SYM SHARE_SYM MODE_SYM
	  { Lex->lock_option= TL_READ_WITH_SHARED_LOCKS; }

unknown's avatar
unknown committed
1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
select_item_list:
	  select_item_list ',' select_item
	| select_item
	| '*'
	  {
	    if (add_item_to_list(new Item_field(NULL,NULL,"*")))
	      YYABORT;
	  }


select_item:
	  remember_name select_item2 remember_end select_alias
	  {
	    if (add_item_to_list($2))
	      YYABORT;
	    if ($4.str)
	      $2->set_name($4.str);
	    else if (!$2->name)
	      $2->set_name($1,(uint) ($3 - $1));
	  }

remember_name:
	{ $$=(char*) Lex->tok_start; }

remember_end:
	{ $$=(char*) Lex->tok_end; }

select_item2:
	table_wild	{ $$=$1; } /* table.* */
	| expr		{ $$=$1; }

select_alias:
	{ $$.str=0;}
	| AS ident { $$=$2; }
	| AS TEXT_STRING  { $$=$2; }
	| ident { $$=$1; }
	| TEXT_STRING  { $$=$1; }

optional_braces:
	/* empty */ {}
	| '(' ')' {}
unknown's avatar
unknown committed
1429

unknown's avatar
unknown committed
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555
/* all possible expressions */
expr:	expr_expr	{$$ = $1; }
	| simple_expr	{$$ = $1; }

/* expressions that begin with 'expr' */
expr_expr:
	expr IN_SYM '(' expr_list ')'
	  { $$= new Item_func_in($1,*$4); }
	| expr NOT IN_SYM '(' expr_list ')'
	  { $$= new Item_func_not(new Item_func_in($1,*$5)); }
	| expr BETWEEN_SYM no_and_expr AND expr
	  { $$= new Item_func_between($1,$3,$5); }
	| expr NOT BETWEEN_SYM no_and_expr AND expr
	  { $$= new Item_func_not(new Item_func_between($1,$4,$6)); }
	| expr OR_OR_CONCAT expr { $$= or_or_concat($1,$3); }
	| expr OR expr		{ $$= new Item_cond_or($1,$3); }
	| expr AND expr		{ $$= new Item_cond_and($1,$3); }
	| expr LIKE simple_expr opt_escape { $$= new Item_func_like($1,$3,$4); }
	| expr NOT LIKE simple_expr opt_escape	{ $$= new Item_func_not(new Item_func_like($1,$4,$5));}
	| expr REGEXP expr { $$= new Item_func_regex($1,$3); }
	| expr NOT REGEXP expr { $$= new Item_func_not(new Item_func_regex($1,$4)); }
	| expr IS NULL_SYM	{ $$= new Item_func_isnull($1); }
	| expr IS NOT NULL_SYM { $$= new Item_func_isnotnull($1); }
	| expr EQ expr		{ $$= new Item_func_eq($1,$3); }
	| expr EQUAL_SYM expr	{ $$= new Item_func_equal($1,$3); }
	| expr GE expr		{ $$= new Item_func_ge($1,$3); }
	| expr GT_SYM expr	{ $$= new Item_func_gt($1,$3); }
	| expr LE expr		{ $$= new Item_func_le($1,$3); }
	| expr LT expr		{ $$= new Item_func_lt($1,$3); }
	| expr NE expr		{ $$= new Item_func_ne($1,$3); }
	| expr SHIFT_LEFT expr	{ $$= new Item_func_shift_left($1,$3); }
	| expr SHIFT_RIGHT expr { $$= new Item_func_shift_right($1,$3); }
	| expr '+' expr		{ $$= new Item_func_plus($1,$3); }
	| expr '-' expr		{ $$= new Item_func_minus($1,$3); }
	| expr '*' expr		{ $$= new Item_func_mul($1,$3); }
	| expr '/' expr		{ $$= new Item_func_div($1,$3); }
	| expr '|' expr		{ $$= new Item_func_bit_or($1,$3); }
	| expr '&' expr		{ $$= new Item_func_bit_and($1,$3); }
	| expr '%' expr		{ $$= new Item_func_mod($1,$3); }
	| expr '+' INTERVAL_SYM expr interval
	  { $$= new Item_date_add_interval($1,$4,$5,0); }
	| expr '-' INTERVAL_SYM expr interval
	  { $$= new Item_date_add_interval($1,$4,$5,1); }

/* expressions that begin with 'expr' that do NOT follow IN_SYM */
no_in_expr:
	no_in_expr BETWEEN_SYM no_and_expr AND expr
	  { $$= new Item_func_between($1,$3,$5); }
	| no_in_expr NOT BETWEEN_SYM no_and_expr AND expr
	  { $$= new Item_func_not(new Item_func_between($1,$4,$6)); }
	| no_in_expr OR_OR_CONCAT expr	{ $$= or_or_concat($1,$3); }
	| no_in_expr OR expr		{ $$= new Item_cond_or($1,$3); }
	| no_in_expr AND expr		{ $$= new Item_cond_and($1,$3); }
	| no_in_expr LIKE simple_expr opt_escape { $$= new Item_func_like($1,$3,$4); }
	| no_in_expr NOT LIKE simple_expr opt_escape { $$= new Item_func_not(new Item_func_like($1,$4,$5)); }
	| no_in_expr REGEXP expr { $$= new Item_func_regex($1,$3); }
	| no_in_expr NOT REGEXP expr { $$= new Item_func_not(new Item_func_regex($1,$4)); }
	| no_in_expr IS NULL_SYM	{ $$= new Item_func_isnull($1); }
	| no_in_expr IS NOT NULL_SYM { $$= new Item_func_isnotnull($1); }
	| no_in_expr EQ expr		{ $$= new Item_func_eq($1,$3); }
	| no_in_expr EQUAL_SYM expr	{ $$= new Item_func_equal($1,$3); }
	| no_in_expr GE expr		{ $$= new Item_func_ge($1,$3); }
	| no_in_expr GT_SYM expr	{ $$= new Item_func_gt($1,$3); }
	| no_in_expr LE expr		{ $$= new Item_func_le($1,$3); }
	| no_in_expr LT expr		{ $$= new Item_func_lt($1,$3); }
	| no_in_expr NE expr		{ $$= new Item_func_ne($1,$3); }
	| no_in_expr SHIFT_LEFT expr  { $$= new Item_func_shift_left($1,$3); }
	| no_in_expr SHIFT_RIGHT expr { $$= new Item_func_shift_right($1,$3); }
	| no_in_expr '+' expr		{ $$= new Item_func_plus($1,$3); }
	| no_in_expr '-' expr		{ $$= new Item_func_minus($1,$3); }
	| no_in_expr '*' expr		{ $$= new Item_func_mul($1,$3); }
	| no_in_expr '/' expr		{ $$= new Item_func_div($1,$3); }
	| no_in_expr '|' expr		{ $$= new Item_func_bit_or($1,$3); }
	| no_in_expr '&' expr		{ $$= new Item_func_bit_and($1,$3); }
	| no_in_expr '%' expr		{ $$= new Item_func_mod($1,$3); }
	| no_in_expr '+' INTERVAL_SYM expr interval
	  { $$= new Item_date_add_interval($1,$4,$5,0); }
	| no_in_expr '-' INTERVAL_SYM expr interval
	  { $$= new Item_date_add_interval($1,$4,$5,1); }
	| simple_expr

/* expressions that begin with 'expr' that does NOT follow AND */
no_and_expr:
	no_and_expr IN_SYM '(' expr_list ')'
	{ $$= new Item_func_in($1,*$4); }
	| no_and_expr NOT IN_SYM '(' expr_list ')'
	  { $$= new Item_func_not(new Item_func_in($1,*$5)); }
	| no_and_expr BETWEEN_SYM no_and_expr AND expr
	  { $$= new Item_func_between($1,$3,$5); }
	| no_and_expr NOT BETWEEN_SYM no_and_expr AND expr
	  { $$= new Item_func_not(new Item_func_between($1,$4,$6)); }
	| no_and_expr OR_OR_CONCAT expr	{ $$= or_or_concat($1,$3); }
	| no_and_expr OR expr		{ $$= new Item_cond_or($1,$3); }
	| no_and_expr LIKE simple_expr opt_escape { $$= new Item_func_like($1,$3,$4); }
	| no_and_expr NOT LIKE simple_expr opt_escape	{ $$= new Item_func_not(new Item_func_like($1,$4,$5)); }
	| no_and_expr REGEXP expr { $$= new Item_func_regex($1,$3); }
	| no_and_expr NOT REGEXP expr { $$= new Item_func_not(new Item_func_regex($1,$4)); }
	| no_and_expr IS NULL_SYM	{ $$= new Item_func_isnull($1); }
	| no_and_expr IS NOT NULL_SYM { $$= new Item_func_isnotnull($1); }
	| no_and_expr EQ expr		{ $$= new Item_func_eq($1,$3); }
	| no_and_expr EQUAL_SYM expr	{ $$= new Item_func_equal($1,$3); }
	| no_and_expr GE expr		{ $$= new Item_func_ge($1,$3); }
	| no_and_expr GT_SYM expr	{ $$= new Item_func_gt($1,$3); }
	| no_and_expr LE expr		{ $$= new Item_func_le($1,$3); }
	| no_and_expr LT expr		{ $$= new Item_func_lt($1,$3); }
	| no_and_expr NE expr		{ $$= new Item_func_ne($1,$3); }
	| no_and_expr SHIFT_LEFT expr  { $$= new Item_func_shift_left($1,$3); }
	| no_and_expr SHIFT_RIGHT expr { $$= new Item_func_shift_right($1,$3); }
	| no_and_expr '+' expr		{ $$= new Item_func_plus($1,$3); }
	| no_and_expr '-' expr		{ $$= new Item_func_minus($1,$3); }
	| no_and_expr '*' expr		{ $$= new Item_func_mul($1,$3); }
	| no_and_expr '/' expr		{ $$= new Item_func_div($1,$3); }
	| no_and_expr '|' expr		{ $$= new Item_func_bit_or($1,$3); }
	| no_and_expr '&' expr		{ $$= new Item_func_bit_and($1,$3); }
	| no_and_expr '%' expr		{ $$= new Item_func_mod($1,$3); }
	| no_and_expr '+' INTERVAL_SYM expr interval
	  { $$= new Item_date_add_interval($1,$4,$5,0); }
	| no_and_expr '-' INTERVAL_SYM expr interval
	  { $$= new Item_date_add_interval($1,$4,$5,1); }
	| simple_expr

simple_expr:
	simple_ident
	| literal
	| '@' ident_or_text SET_VAR expr { $$= new Item_func_set_user_var($2,$4); }
	| '@' ident_or_text	 { $$= new Item_func_get_user_var($2); }
1556
	| '@' '@' ident_or_text	 { if (!($$= get_system_var($3))) YYABORT; }
unknown's avatar
unknown committed
1557 1558 1559 1560 1561 1562 1563
	| sum_expr
	| '-' expr %prec NEG	{ $$= new Item_func_neg($2); }
	| '~' expr %prec NEG	{ $$= new Item_func_bit_neg($2); }
	| NOT expr %prec NEG	{ $$= new Item_func_not($2); }
	| '!' expr %prec NEG	{ $$= new Item_func_not($2); }
	| '(' expr ')'		{ $$= $2; }
	| '{' ident expr '}'	{ $$= $3; }
unknown's avatar
unknown committed
1564 1565
        | MATCH ident_list_arg AGAINST '(' expr ')'
          { Select->ftfunc_list.push_back((Item_func_match *)
unknown's avatar
unknown committed
1566
                   ($$=new Item_func_match_nl(*$2,$5))); }
unknown's avatar
unknown committed
1567 1568
        | MATCH ident_list_arg AGAINST '(' expr IN_SYM BOOLEAN_SYM MODE_SYM ')'
          { Select->ftfunc_list.push_back((Item_func_match *)
unknown's avatar
unknown committed
1569
                   ($$=new Item_func_match_bool(*$2,$5))); }
unknown's avatar
unknown committed
1570 1571
	| BINARY expr %prec NEG	{ $$= new Item_func_binary($2); }
	| CASE_SYM opt_expr WHEN_SYM when_list opt_else END
unknown's avatar
unknown committed
1572
	  { $$= new Item_func_case(* $4, $2, $5 ) }
unknown's avatar
unknown committed
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
	| FUNC_ARG0 '(' ')'
	  { $$= ((Item*(*)(void))($1.symbol->create_func))();}
	| FUNC_ARG1 '(' expr ')'
	  { $$= ((Item*(*)(Item*))($1.symbol->create_func))($3);}
	| FUNC_ARG2 '(' expr ',' expr ')'
	  { $$= ((Item*(*)(Item*,Item*))($1.symbol->create_func))($3,$5);}
	| FUNC_ARG3 '(' expr ',' expr ',' expr ')'
	  { $$= ((Item*(*)(Item*,Item*,Item*))($1.symbol->create_func))($3,$5,$7);}
	| ATAN	'(' expr ')'
	  { $$= new Item_func_atan($3); }
	| ATAN	'(' expr ',' expr ')'
	  { $$= new Item_func_atan($3,$5); }
	| CHAR_SYM '(' expr_list ')'
	  { $$= new Item_func_char(*$3); }
	| COALESCE '(' expr_list ')'
	  { $$= new Item_func_coalesce(* $3); }
	| CONCAT '(' expr_list ')'
	  { $$= new Item_func_concat(* $3); }
	| CONCAT_WS '(' expr ',' expr_list ')'
	  { $$= new Item_func_concat_ws($3, *$5); }
	| CURDATE optional_braces
	  { $$= new Item_func_curdate(); }
	| CURTIME optional_braces
	  { $$= new Item_func_curtime(); }
	| CURTIME '(' expr ')'
	  { $$= new Item_func_curtime($3); }
	| DATE_ADD_INTERVAL '(' expr ',' INTERVAL_SYM expr interval ')'
	  { $$= new Item_date_add_interval($3,$6,$7,0); }
	| DATE_SUB_INTERVAL '(' expr ',' INTERVAL_SYM expr interval ')'
	  { $$= new Item_date_add_interval($3,$6,$7,1); }
	| DATABASE '(' ')'
	  { $$= new Item_func_database(); }
	| ELT_FUNC '(' expr ',' expr_list ')'
	  { $$= new Item_func_elt($3, *$5); }
	| MAKE_SET_SYM '(' expr ',' expr_list ')'
	  { $$= new Item_func_make_set($3, *$5); }
	| ENCRYPT '(' expr ')' 		  { $$= new Item_func_encrypt($3); }
	| ENCRYPT '(' expr ',' expr ')'   { $$= new Item_func_encrypt($3,$5); }
	| DECODE_SYM '(' expr ',' TEXT_STRING ')'
	  { $$= new Item_func_decode($3,$5.str); }
	| ENCODE_SYM '(' expr ',' TEXT_STRING ')'
	 { $$= new Item_func_encode($3,$5.str); }
unknown's avatar
unknown committed
1615 1616
	| DES_ENCRYPT '(' expr ',' expr ')'   { $$= new Item_func_des_encrypt($3,$5); }
	| DES_DECRYPT '(' expr ',' expr ')'   { $$= new Item_func_des_decrypt($3,$5); }
unknown's avatar
unknown committed
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
	| EXPORT_SET '(' expr ',' expr ',' expr ')'
		{ $$= new Item_func_export_set($3, $5, $7); }
	| EXPORT_SET '(' expr ',' expr ',' expr ',' expr ')'
		{ $$= new Item_func_export_set($3, $5, $7, $9); }
	| EXPORT_SET '(' expr ',' expr ',' expr ',' expr ',' expr ')'
		{ $$= new Item_func_export_set($3, $5, $7, $9, $11); }
	| FORMAT_SYM '(' expr ',' NUM ')'
	  { $$= new Item_func_format($3,atoi($5.str)); }
	| FROM_UNIXTIME '(' expr ')'
	  { $$= new Item_func_from_unixtime($3); }
	| FROM_UNIXTIME '(' expr ',' expr ')'
	  {
	    $$= new Item_func_date_format(new Item_func_from_unixtime($3),$5,0);
	  }
	| FIELD_FUNC '(' expr ',' expr_list ')'
	  { $$= new Item_func_field($3, *$5); }
	| HOUR_SYM '(' expr ')'
	  { $$= new Item_func_hour($3); }
	| IF '(' expr ',' expr ',' expr ')'
	  { $$= new Item_func_if($3,$5,$7); }
	| INSERT '(' expr ',' expr ',' expr ',' expr ')'
	  { $$= new Item_func_insert($3,$5,$7,$9); }
	| INTERVAL_SYM expr interval '+' expr
	  /* we cannot put interval before - */
	  { $$= new Item_date_add_interval($5,$2,$3,0); }
	| INTERVAL_SYM '(' expr ',' expr_list ')'
	  { $$= new Item_func_interval($3,* $5); }
	| LAST_INSERT_ID '(' ')'
	  {
	    $$= new Item_int((char*) "last_insert_id()",
			     current_thd->insert_id(),21);
	  }
	| LAST_INSERT_ID '(' expr ')'
	  {
	    $$= new Item_func_set_last_insert_id($3);
	  }
	| LEFT '(' expr ',' expr ')'
	  { $$= new Item_func_left($3,$5); }
	| LOCATE '(' expr ',' expr ')'
	  { $$= new Item_func_locate($5,$3); }
	| LOCATE '(' expr ',' expr ',' expr ')'
	  { $$= new Item_func_locate($5,$3,$7); }
 	| GREATEST_SYM '(' expr ',' expr_list ')'
	  { $5->push_front($3); $$= new Item_func_max(*$5); }
	| LEAST_SYM '(' expr ',' expr_list ')'
	  { $5->push_front($3); $$= new Item_func_min(*$5); }
	| MINUTE_SYM '(' expr ')'
	  { $$= new Item_func_minute($3); }
	| MONTH_SYM '(' expr ')'
	  { $$= new Item_func_month($3); }
	| NOW_SYM optional_braces
	  { $$= new Item_func_now(); }
	| NOW_SYM '(' expr ')'
	  { $$= new Item_func_now($3); }
	| PASSWORD '(' expr ')' 	  { $$= new Item_func_password($3); }
	| POSITION_SYM '(' no_in_expr IN_SYM expr ')'
	  { $$ = new Item_func_locate($5,$3); }
	| RAND '(' expr ')'	{ $$= new Item_func_rand($3); }
	| RAND '(' ')'		{ $$= new Item_func_rand(); }
	| REPLACE '(' expr ',' expr ',' expr ')'
	  { $$= new Item_func_replace($3,$5,$7); }
	| RIGHT '(' expr ',' expr ')'
	  { $$= new Item_func_right($3,$5); }
	| ROUND '(' expr ')'
	  { $$= new Item_func_round($3, new Item_int((char*)"0",0,1),0); }
	| ROUND '(' expr ',' expr ')' { $$= new Item_func_round($3,$5,0); }
	| SECOND_SYM '(' expr ')'
	  { $$= new Item_func_second($3); }
	| SUBSTRING '(' expr ',' expr ',' expr ')'
	  { $$= new Item_func_substr($3,$5,$7); }
	| SUBSTRING '(' expr ',' expr ')'
	  { $$= new Item_func_substr($3,$5); }
	| SUBSTRING '(' expr FROM expr FOR_SYM expr ')'
	  { $$= new Item_func_substr($3,$5,$7); }
	| SUBSTRING '(' expr FROM expr ')'
	  { $$= new Item_func_substr($3,$5); }
	| SUBSTRING_INDEX '(' expr ',' expr ',' expr ')'
	  { $$= new Item_func_substr_index($3,$5,$7); }
	| TRIM '(' expr ')'
	  { $$= new Item_func_trim($3,new Item_string(" ",1)); }
	| TRIM '(' LEADING opt_pad FROM expr ')'
	  { $$= new Item_func_ltrim($6,$4); }
	| TRIM '(' TRAILING opt_pad FROM expr ')'
	  { $$= new Item_func_rtrim($6,$4); }
	| TRIM '(' BOTH opt_pad FROM expr ')'
	  { $$= new Item_func_trim($6,$4); }
	| TRIM '(' expr FROM expr ')'
	  { $$= new Item_func_trim($5,$3); }
1705 1706
	| TRUNCATE_SYM '(' expr ',' expr ')'
	  { $$= new Item_func_round($3,$5,1); }
unknown's avatar
unknown committed
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768
	| UDA_CHAR_SUM '(' udf_expr_list ')'
	  {
	    if ($3 != NULL)
	      $$ = new Item_sum_udf_str($1, *$3);
	    else
	      $$ = new Item_sum_udf_str($1);
	  }
	| UDA_FLOAT_SUM '(' udf_expr_list ')'
	  {
	    if ($3 != NULL)
	      $$ = new Item_sum_udf_float($1, *$3);
	    else
	      $$ = new Item_sum_udf_float($1);
	  }
	| UDA_INT_SUM '(' udf_expr_list ')'
	  {
	    if ($3 != NULL)
	      $$ = new Item_sum_udf_int($1, *$3);
	    else
	      $$ = new Item_sum_udf_int($1);
	  }
	| UDF_CHAR_FUNC '(' udf_expr_list ')'
	  {
	    if ($3 != NULL)
	      $$ = new Item_func_udf_str($1, *$3);
	    else
	      $$ = new Item_func_udf_str($1);
	  }
	| UDF_FLOAT_FUNC '(' udf_expr_list ')'
	  {
	    if ($3 != NULL)
	      $$ = new Item_func_udf_float($1, *$3);
	    else
	      $$ = new Item_func_udf_float($1);
	  }
	| UDF_INT_FUNC '(' udf_expr_list ')'
	  {
	    if ($3 != NULL)
	      $$ = new Item_func_udf_int($1, *$3);
	    else
	      $$ = new Item_func_udf_int($1);
	  }
	| UNIQUE_USERS '(' text_literal ',' NUM ',' NUM ',' expr_list ')'
	  { $$= new Item_func_unique_users($3,atoi($5.str),atoi($7.str), * $9); }
	| UNIX_TIMESTAMP '(' ')'
	  { $$= new Item_func_unix_timestamp(); }
	| UNIX_TIMESTAMP '(' expr ')'
	  { $$= new Item_func_unix_timestamp($3); }
	| USER '(' ')'
	  { $$= new Item_func_user(); }
	| WEEK_SYM '(' expr ')'
	  { $$= new Item_func_week($3,new Item_int((char*) "0",0,1)); }
	| WEEK_SYM '(' expr ',' expr ')'
	  { $$= new Item_func_week($3,$5); }
	| YEAR_SYM '(' expr ')'
	  { $$= new Item_func_year($3); }
	| YEARWEEK '(' expr ')'
	  { $$= new Item_func_yearweek($3,new Item_int((char*) "0",0,1)); }
	| YEARWEEK '(' expr ',' expr ')'
	  { $$= new Item_func_yearweek($3, $5); }
	| BENCHMARK_SYM '(' ULONG_NUM ',' expr ')'
	  { $$=new Item_func_benchmark($3,$5); }
unknown's avatar
unknown committed
1769
	| EXTRACT_SYM '(' interval FROM expr ')'
unknown's avatar
unknown committed
1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800
	{ $$=new Item_extract( $3, $5); }

udf_expr_list:
	/* empty */	{ $$= NULL; }
	| expr_list	{ $$= $1;}

sum_expr:
	AVG_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_avg($3); }
	| BIT_AND  '(' in_sum_expr ')'
	  { $$=new Item_sum_and($3); }
	| BIT_OR  '(' in_sum_expr ')'
	  { $$=new Item_sum_or($3); }
	| COUNT_SYM '(' '*' ')'
	  { $$=new Item_sum_count(new Item_int((int32) 0L,1)); }
	| COUNT_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_count($3); }
	| COUNT_SYM '(' DISTINCT expr_list ')'
	  { $$=new Item_sum_count_distinct(* $4); }
	| GROUP_UNIQUE_USERS '(' text_literal ',' NUM ',' NUM ',' in_sum_expr ')'
	  { $$= new Item_sum_unique_users($3,atoi($5.str),atoi($7.str),$9); }
	| MIN_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_min($3); }
	| MAX_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_max($3); }
	| STD_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_std($3); }
	| SUM_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_sum($3); }

in_sum_expr:
1801
	{ Select->in_sum_expr++ }
unknown's avatar
unknown committed
1802 1803
	expr
	{
1804
	  Select->in_sum_expr--;
unknown's avatar
unknown committed
1805 1806 1807 1808
	  $$=$2;
	}

expr_list:
1809
	{ Select->expr_list.push_front(new List<Item>); }
unknown's avatar
unknown committed
1810
	expr_list2
1811
	{ $$= Select->expr_list.pop(); }
unknown's avatar
unknown committed
1812 1813

expr_list2:
1814 1815
	expr { Select->expr_list.head()->push_back($1); }
	| expr_list2 ',' expr { Select->expr_list.head()->push_back($3); }
unknown's avatar
unknown committed
1816

unknown's avatar
unknown committed
1817 1818 1819 1820
ident_list_arg:
          ident_list          { $$= $1; }
        | '(' ident_list ')'  { $$= $2; }

unknown's avatar
unknown committed
1821
ident_list:
1822
        { Select->expr_list.push_front(new List<Item>); }
unknown's avatar
unknown committed
1823
        ident_list2
1824
        { $$= Select->expr_list.pop(); }
unknown's avatar
unknown committed
1825 1826

ident_list2:
1827 1828
        simple_ident { Select->expr_list.head()->push_back($1); }
        | ident_list2 ',' simple_ident { Select->expr_list.head()->push_back($3); }
unknown's avatar
unknown committed
1829 1830 1831 1832 1833 1834 1835 1836 1837 1838

opt_expr:
	/* empty */      { $$= NULL; }
	| expr         	 { $$= $1; }

opt_else:
	/* empty */    { $$= NULL; }
	| ELSE expr    { $$= $2; }

when_list:
1839
        { Select->when_list.push_front(new List<Item>) }
unknown's avatar
unknown committed
1840
	when_list2
1841
	{ $$= Select->when_list.pop(); }
unknown's avatar
unknown committed
1842 1843

when_list2:
unknown's avatar
unknown committed
1844
	expr THEN_SYM expr
unknown's avatar
unknown committed
1845
	  {
unknown's avatar
unknown committed
1846 1847 1848
	    SELECT_LEX *sel=Select;	    
	    sel->when_list.head()->push_back($1);
	    sel->when_list.head()->push_back($3);
unknown's avatar
unknown committed
1849
	}
unknown's avatar
unknown committed
1850
	| when_list2 WHEN_SYM expr THEN_SYM expr
unknown's avatar
unknown committed
1851
	  {
unknown's avatar
unknown committed
1852 1853 1854
	    SELECT_LEX *sel=Select;
	    sel->when_list.head()->push_back($3);
	    sel->when_list.head()->push_back($5);
unknown's avatar
unknown committed
1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868
	  }

opt_pad:
	/* empty */ { $$=new Item_string(" ",1); }
	| expr	    { $$=$1; }

join_table_list:
	'(' join_table_list ')'	{ $$=$2; }
	| join_table		{ $$=$1; }
	| join_table_list normal_join join_table { $$=$3 }
	| join_table_list STRAIGHT_JOIN join_table { $$=$3 ; $$->straight=1; }
	| join_table_list INNER_SYM JOIN_SYM join_table ON expr
	  { add_join_on($4,$6); $$=$4; }
	| join_table_list INNER_SYM JOIN_SYM join_table
unknown's avatar
unknown committed
1869 1870 1871 1872 1873
	  {
	    SELECT_LEX *sel=Select;
	    sel->db1=$1->db; sel->table1=$1->name;
	    sel->db2=$4->db; sel->table2=$4->name;
	  }
unknown's avatar
unknown committed
1874 1875 1876
	  USING '(' using_list ')'
	  { add_join_on($4,$8); $$=$4; }
	| join_table_list LEFT opt_outer JOIN_SYM join_table ON expr
1877
	  { add_join_on($5,$7); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
unknown's avatar
unknown committed
1878
	| join_table_list LEFT opt_outer JOIN_SYM join_table
unknown's avatar
unknown committed
1879 1880 1881 1882 1883
	  {
	    SELECT_LEX *sel=Select;
	    sel->db1=$1->db; sel->table1=$1->name;
	    sel->db2=$5->db; sel->table2=$5->name;
	  }
unknown's avatar
unknown committed
1884
	  USING '(' using_list ')'
1885
	  { add_join_on($5,$9); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
unknown's avatar
unknown committed
1886
	| join_table_list NATURAL LEFT opt_outer JOIN_SYM join_table
1887 1888 1889 1890
	  { add_join_natural($1,$6); $6->outer_join|=JOIN_TYPE_LEFT; $$=$6; }
	| join_table_list RIGHT opt_outer JOIN_SYM join_table ON expr
	  { add_join_on($1,$7); $1->outer_join|=JOIN_TYPE_RIGHT; $$=$1; }
	| join_table_list RIGHT opt_outer JOIN_SYM join_table
unknown's avatar
unknown committed
1891 1892 1893 1894 1895
	  {
	    SELECT_LEX *sel=Select;
	    sel->db1=$1->db; sel->table1=$1->name;
	    sel->db2=$5->db; sel->table2=$5->name;
	  }
1896 1897 1898 1899
	  USING '(' using_list ')'
	  { add_join_on($1,$9); $1->outer_join|=JOIN_TYPE_RIGHT; $$=$1; }
	| join_table_list NATURAL RIGHT opt_outer JOIN_SYM join_table
	  { add_join_natural($6,$1); $1->outer_join|=JOIN_TYPE_RIGHT; $$=$1; }
unknown's avatar
unknown committed
1900 1901 1902 1903 1904 1905 1906 1907 1908
	| join_table_list NATURAL JOIN_SYM join_table
	  { add_join_natural($1,$4); $$=$4; }

normal_join:
	',' {}
	| JOIN_SYM {}
	| CROSS JOIN_SYM {}

join_table:
unknown's avatar
unknown committed
1909 1910 1911 1912
	{
	  SELECT_LEX *sel=Select;
	  sel->use_index_ptr=sel->ignore_index_ptr=0;
	}
unknown's avatar
unknown committed
1913
        table_ident opt_table_alias opt_key_definition
unknown's avatar
unknown committed
1914 1915 1916 1917 1918
	{
	  SELECT_LEX *sel=Select;
	  if (!($$=add_table_to_list($2,$3,0,TL_UNLOCK, sel->use_index_ptr,
	                             sel->ignore_index_ptr))) YYABORT;
	}
unknown's avatar
unknown committed
1919
	| '{' ident join_table LEFT OUTER JOIN_SYM join_table ON expr '}'
1920
	  { add_join_on($7,$9); $7->outer_join|=JOIN_TYPE_LEFT; $$=$7; }
unknown's avatar
unknown committed
1921 1922 1923 1924 1925 1926 1927 1928

opt_outer:
	/* empty */	{}
	| OUTER		{}

opt_key_definition:
	/* empty */	{}
	| USE_SYM    key_usage_list
unknown's avatar
unknown committed
1929 1930 1931 1932 1933
          {
	    SELECT_LEX *sel=Select;
	    sel->use_index= *$2;
	    sel->use_index_ptr= &sel->use_index;
	  }
unknown's avatar
unknown committed
1934
	| IGNORE_SYM key_usage_list
unknown's avatar
unknown committed
1935 1936 1937 1938 1939
	  {
	    SELECT_LEX *sel=Select;
	    sel->ignore_index= *$2;
	    sel->ignore_index_ptr= &sel->ignore_index;
	  }
unknown's avatar
unknown committed
1940 1941

key_usage_list:
1942 1943
	key_or_index { Select->interval_list.empty() } '(' key_usage_list2 ')'
        { $$= &Select->interval_list; }
unknown's avatar
unknown committed
1944 1945 1946

key_usage_list2:
	key_usage_list2 ',' ident
1947
        { Select->interval_list.push_back(new String((const char*) $3.str,$3.length)); }
unknown's avatar
unknown committed
1948
	| ident
1949
        { Select->interval_list.push_back(new String((const char*) $1.str,$1.length)); }
unknown's avatar
unknown committed
1950
	| PRIMARY_SYM
1951
        { Select->interval_list.push_back(new String("PRIMARY",7)); }
unknown's avatar
unknown committed
1952 1953 1954

using_list:
	ident
unknown's avatar
unknown committed
1955 1956 1957
	  {
	    SELECT_LEX *sel=Select;
	    if (!($$= new Item_func_eq(new Item_field(sel->db1,sel->table1, $1.str), new Item_field(sel->db2,sel->table2,$1.str))))
unknown's avatar
unknown committed
1958 1959 1960 1961
	      YYABORT;
	  }
	| using_list ',' ident
	  {
unknown's avatar
unknown committed
1962 1963
	    SELECT_LEX *sel=Select;
	    if (!($$= new Item_cond_and(new Item_func_eq(new Item_field(sel->db1,sel->table1,$3.str), new Item_field(sel->db2,sel->table2,$3.str)), $1)))
unknown's avatar
unknown committed
1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
	      YYABORT;
	  }

interval:
	 DAY_HOUR_SYM		{ $$=INTERVAL_DAY_HOUR; }
	| DAY_MINUTE_SYM	{ $$=INTERVAL_DAY_MINUTE; }
	| DAY_SECOND_SYM	{ $$=INTERVAL_DAY_SECOND; }
	| DAY_SYM		{ $$=INTERVAL_DAY; }
	| HOUR_MINUTE_SYM	{ $$=INTERVAL_HOUR_MINUTE; }
	| HOUR_SECOND_SYM	{ $$=INTERVAL_HOUR_SECOND; }
	| HOUR_SYM		{ $$=INTERVAL_HOUR; }
	| MINUTE_SECOND_SYM	{ $$=INTERVAL_MINUTE_SECOND; }
	| MINUTE_SYM		{ $$=INTERVAL_MINUTE; }
	| MONTH_SYM		{ $$=INTERVAL_MONTH; }
	| SECOND_SYM		{ $$=INTERVAL_SECOND; }
	| YEAR_MONTH_SYM	{ $$=INTERVAL_YEAR_MONTH; }
	| YEAR_SYM		{ $$=INTERVAL_YEAR; }

table_alias:
	/* empty */
	| AS
	| EQ

opt_table_alias:
	/* empty */		{ $$=0; }
	| table_alias ident
	  { $$= (LEX_STRING*) sql_memdup(&$2,sizeof(LEX_STRING)); }


where_clause:
1994 1995
	/* empty */  { Select->where= 0; }
	| WHERE expr { Select->where= $2; }
unknown's avatar
unknown committed
1996 1997 1998

having_clause:
	/* empty */
1999
	| HAVING { Select->create_refs=1; } expr
unknown's avatar
unknown committed
2000 2001 2002 2003
	{
	  SELECT_LEX *sel=Select;
	  sel->having= $3; sel->create_refs=0;
	}
unknown's avatar
unknown committed
2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019

opt_escape:
	ESCAPE_SYM TEXT_STRING	{ $$= $2.str; }
	| /* empty */		{ $$= (char*) "\\"; }


/*
** group by statement in select
*/

group_clause:
	/* empty */
	| GROUP BY group_list

group_list:
	group_list ',' group_ident
unknown's avatar
unknown committed
2020 2021 2022
	  { if (add_group_to_list($3,(bool) 1)) YYABORT; }
	| group_ident
	  { if (add_group_to_list($1,(bool) 1)) YYABORT; }
unknown's avatar
unknown committed
2023 2024 2025 2026 2027

/*
** Order by statement in select
*/

2028
opt_order_clause:
unknown's avatar
unknown committed
2029
	/* empty */
2030 2031 2032
	| order_clause

order_clause:
2033
	ORDER_SYM BY { Select->sort_default=1; } order_list
unknown's avatar
unknown committed
2034 2035 2036 2037 2038 2039 2040 2041 2042

order_list:
	order_list ',' order_ident order_dir
	  { if (add_order_to_list($3,(bool) $4)) YYABORT; }
	| order_ident order_dir
	  { if (add_order_to_list($1,(bool) $2)) YYABORT; }

order_dir:
	/* empty */ { $$ =  1; }
2043 2044
	| ASC  { $$ = Select->sort_default=1; }
	| DESC { $$ = Select->sort_default=0; }
unknown's avatar
unknown committed
2045 2046 2047 2048 2049


limit_clause:
	/* empty */
	{
unknown's avatar
unknown committed
2050 2051
	  SELECT_LEX *sel=Select;
	  sel->select_limit= (Lex->sql_command == SQLCOM_HA_READ) ?
unknown's avatar
unknown committed
2052
             1 : current_thd->default_select_limit;
unknown's avatar
unknown committed
2053
	  sel->offset_limit= 0L;
unknown's avatar
unknown committed
2054 2055
	}
	| LIMIT ULONG_NUM
unknown's avatar
unknown committed
2056 2057 2058 2059
	  {
	    SELECT_LEX *sel=Select;
	    sel->select_limit= $2; sel->offset_limit=0L;
	  }
unknown's avatar
unknown committed
2060
	| LIMIT ULONG_NUM ',' ULONG_NUM
unknown's avatar
unknown committed
2061 2062 2063 2064
	  {
	    SELECT_LEX *sel=Select;
	    sel->select_limit= $4; sel->offset_limit=$2;
	  }
unknown's avatar
unknown committed
2065 2066 2067 2068

delete_limit_clause:
	/* empty */
	{
2069
	  Select->select_limit= HA_POS_ERROR;
unknown's avatar
unknown committed
2070
	}
unknown's avatar
unknown committed
2071
	| LIMIT ulonglong_num
2072
	{ Select->select_limit= (ha_rows) $2; }
unknown's avatar
unknown committed
2073 2074

ULONG_NUM:
unknown's avatar
unknown committed
2075
	NUM	    { $$= strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2076
	| ULONGLONG_NUM { $$= (ulong) strtoull($1.str,NULL,10); }
unknown's avatar
unknown committed
2077
	| REAL_NUM  { $$= strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2078 2079
	| FLOAT_NUM { $$= strtoul($1.str,NULL,10); }

unknown's avatar
unknown committed
2080
ulonglong_num:
unknown's avatar
unknown committed
2081
	NUM	    { $$= (ulonglong) strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2082 2083
	| ULONGLONG_NUM { $$= strtoull($1.str,NULL,10); }
	| LONG_NUM  { $$= (ulonglong) strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2084
	| REAL_NUM  { $$= strtoull($1.str,NULL,10); }
unknown's avatar
unknown committed
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136
	| FLOAT_NUM { $$= strtoull($1.str,NULL,10); }

procedure_clause:
	/* empty */
	| PROCEDURE ident			/* Procedure name */
	  {
	    LEX *lex=Lex;
	    lex->proc_list.elements=0;
	    lex->proc_list.first=0;
	    lex->proc_list.next= (byte**) &lex->proc_list.first;
	    if (add_proc_to_list(new Item_field(NULL,NULL,$2.str)))
	      YYABORT;
	  }
	  '(' procedure_list ')'


procedure_list:
	/* empty */ {}
	| procedure_list2 {}

procedure_list2:
	procedure_list2 ',' procedure_item
	| procedure_item

procedure_item:
	  remember_name expr
	  {
	    if (add_proc_to_list($2))
	      YYABORT;
	    if (!$2->name)
	      $2->set_name($1,(uint) ((char*) Lex->tok_end - $1));
	  }

opt_into:
	INTO OUTFILE TEXT_STRING
	{
	  if (!(Lex->exchange= new sql_exchange($3.str,0)))
	    YYABORT;
	}
	opt_field_term opt_line_term
	| INTO DUMPFILE TEXT_STRING
	{
	  if (!(Lex->exchange= new sql_exchange($3.str,1)))
	    YYABORT;
	}


/*
** Drop : delete tables or index
*/

drop:
2137
	DROP TABLE_SYM if_exists table_list opt_restrict
unknown's avatar
unknown committed
2138
	{
unknown's avatar
unknown committed
2139 2140 2141
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_DROP_TABLE;
	  lex->drop_if_exists = $3;
unknown's avatar
unknown committed
2142 2143 2144
	}
	| DROP INDEX ident ON table_ident {}
	  {
unknown's avatar
unknown committed
2145 2146 2147 2148
	     LEX *lex=Lex;
	     lex->sql_command= SQLCOM_DROP_INDEX;
	     lex->drop_list.empty();
	     lex->drop_list.push_back(new Alter_drop(Alter_drop::KEY,
unknown's avatar
unknown committed
2149
						     $3.str));
2150
	     if (!add_table_to_list($5,NULL, 1))
unknown's avatar
unknown committed
2151 2152 2153 2154
	      YYABORT;
	  }
	| DROP DATABASE if_exists ident
	  {
unknown's avatar
unknown committed
2155 2156 2157 2158
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_DROP_DB;
	    lex->drop_if_exists=$3;
	    lex->name=$4.str;
unknown's avatar
unknown committed
2159 2160 2161
	 }
	| DROP UDF_SYM ident
	  {
unknown's avatar
unknown committed
2162 2163 2164
	    LEX *lex=Lex;
	    lex->sql_command = SQLCOM_DROP_FUNCTION;
	    lex->udf.name=$3.str;
unknown's avatar
unknown committed
2165 2166 2167 2168
	  }


table_list:
2169 2170
	table_name
	| table_list ',' table_name
unknown's avatar
unknown committed
2171

2172
table_name:
unknown's avatar
unknown committed
2173
	table_ident
2174
	{ if (!add_table_to_list($1,NULL,1)) YYABORT; }
unknown's avatar
unknown committed
2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204

if_exists:
	/* empty */ { $$=0; }
	| IF EXISTS { $$= 1; }

/*
** Insert : add new data to table
*/

insert:
	INSERT { Lex->sql_command = SQLCOM_INSERT; } insert_lock_option opt_ignore insert2 insert_field_spec

replace:
	REPLACE { Lex->sql_command = SQLCOM_REPLACE; } replace_lock_option insert2 insert_field_spec

insert_lock_option:
	/* empty */	{ Lex->lock_option= TL_WRITE_CONCURRENT_INSERT; }
	| LOW_PRIORITY	{ Lex->lock_option= TL_WRITE_LOW_PRIORITY; }
	| DELAYED_SYM	{ Lex->lock_option= TL_WRITE_DELAYED; }
	| HIGH_PRIORITY { Lex->lock_option= TL_WRITE; }

replace_lock_option:
	opt_low_priority {}
	| DELAYED_SYM	{ Lex->lock_option= TL_WRITE_DELAYED; }

insert2:
	INTO insert_table {}
	| insert_table {}

insert_table:
2205
	table_name
unknown's avatar
unknown committed
2206
	{
unknown's avatar
unknown committed
2207 2208 2209 2210
	  LEX *lex=Lex;
	  lex->field_list.empty();
	  lex->many_values.empty();
	  lex->insert_list=0;
unknown's avatar
unknown committed
2211 2212 2213 2214 2215 2216
	}

insert_field_spec:
	opt_field_spec insert_values {}
	| SET
	  {
unknown's avatar
unknown committed
2217 2218 2219
	    LEX *lex=Lex;
	    if (!(lex->insert_list = new List_item) ||
		lex->many_values.push_back(lex->insert_list))
unknown's avatar
unknown committed
2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239
	      YYABORT;
	   }
	   ident_eq_list

opt_field_spec:
	/* empty */	  { }
	| '(' fields ')'  { }
	| '(' ')'	  { }

fields:
	fields ',' insert_ident { Lex->field_list.push_back($3); }
	| insert_ident		{ Lex->field_list.push_back($1); }

insert_values:
	VALUES	values_list  {}
	| SELECT_SYM
	  {
	    LEX *lex=Lex;
	    lex->sql_command = (lex->sql_command == SQLCOM_INSERT ?
				SQLCOM_INSERT_SELECT : SQLCOM_REPLACE_SELECT);
unknown's avatar
unknown committed
2240
	    lex->lock_option= (using_update_log) ? TL_READ_NO_INSERT : TL_READ;
2241
	    mysql_init_select(lex);
unknown's avatar
unknown committed
2242
	  }
2243
	  select_options select_item_list select_from select_lock_type union {}
unknown's avatar
unknown committed
2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256

values_list:
	values_list ','  no_braces
	| no_braces

ident_eq_list:
	ident_eq_list ',' ident_eq_value
	|
	ident_eq_value

ident_eq_value:
	simple_ident equal expr
	 {
unknown's avatar
unknown committed
2257 2258 2259
	  LEX *lex=Lex;
	  if (lex->field_list.push_back($1) ||
	      lex->insert_list->push_back($3))
unknown's avatar
unknown committed
2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273
	    YYABORT;
	 }

equal:	EQ		{}
	| SET_VAR	{}

no_braces:
	 '('
	 {
	    if (!(Lex->insert_list = new List_item))
	      YYABORT;
	 }
	 opt_values ')'
	 {
unknown's avatar
unknown committed
2274 2275
	  LEX *lex=Lex;
	  if (lex->many_values.push_back(lex->insert_list))
unknown's avatar
unknown committed
2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297
	    YYABORT;
	 }

opt_values:
	/* empty */ {}
	| values

values:
	values ','  expr
	{
	  if (Lex->insert_list->push_back($3))
	    YYABORT;
	}
	| expr
	{
	  if (Lex->insert_list->push_back($1))
	    YYABORT;
	}

/* Update rows in a table */

update:
unknown's avatar
unknown committed
2298
	UPDATE_SYM opt_low_priority opt_ignore table_name
2299 2300 2301 2302 2303
        SET update_list 
        where_clause 
        opt_order_clause
        delete_limit_clause
	{ 
unknown's avatar
unknown committed
2304 2305 2306 2307 2308
	  LEX *lex=Lex;
          lex->sql_command = SQLCOM_UPDATE;
          lex->select->order_list.elements=0;
          lex->select->order_list.first=0;
          lex->select->order_list.next= (byte**) &lex->select->order_list.first;
2309
        }
unknown's avatar
unknown committed
2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329

update_list:
	update_list ',' simple_ident equal expr
	{
	  if (add_item_to_list($3) || add_value_to_list($5))
	    YYABORT;
	}
	| simple_ident equal expr
	  {
	    if (add_item_to_list($1) || add_value_to_list($3))
	      YYABORT;
	  }

opt_low_priority:
	/* empty */	{ Lex->lock_option= current_thd->update_lock_default; }
	| LOW_PRIORITY	{ Lex->lock_option= TL_WRITE_LOW_PRIORITY; }

/* Delete rows from a table */

delete:
2330
	DELETE_SYM
2331
	{ 
unknown's avatar
unknown committed
2332 2333 2334 2335 2336 2337 2338 2339
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_DELETE; lex->select->options=0;
	  lex->lock_option= lex->thd->update_lock_default;
	  lex->select->order_list.elements=0;
	  lex->select->order_list.first=0;
	  lex->select->order_list.next= (byte**) &lex->select->order_list.first;
	}
	opt_delete_options single_multi	{}
2340 2341

single_multi:
unknown's avatar
unknown committed
2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381
 	FROM table_name where_clause opt_order_clause delete_limit_clause {}
	| table_wild_list
	  {
	    LEX *lex=Lex;
	    lex->sql_command =  SQLCOM_MULTI_DELETE;
            mysql_init_select(lex);
            lex->select->select_limit=HA_POS_ERROR;
            lex->auxilliary_table_list.elements=0; 
            lex->auxilliary_table_list.first=0;
            lex->auxilliary_table_list.next= (byte**) &(lex->auxilliary_table_list.first);
          }
          FROM 
          {
	    LEX *lex=Lex;
	    lex->auxilliary_table_list=lex->select_lex.table_list;
	    lex->select->table_list.elements=0; 
            lex->select->table_list.first=0;
            lex->select->table_list.next= (byte**) &(lex->select->table_list.first);
	  } join_table_list where_clause


table_wild_list:
	  table_wild_one {}
	  | table_wild_list ',' table_wild_one {}

table_wild_one:
	 ident opt_wild
	 {
	    if (!add_table_to_list(new Table_ident($1),NULL,1,TL_WRITE))
	      YYABORT;
         }
	 | ident '.' ident opt_wild
	   {
	     if (!add_table_to_list(new Table_ident($1,$3,0),NULL,1,TL_WRITE))
	      YYABORT;
	   }

opt_wild:
	/* empty */	{} 
	| '.' '*'	{}
unknown's avatar
unknown committed
2382 2383


2384
opt_delete_options:
unknown's avatar
unknown committed
2385
	/* empty */	{}
2386 2387 2388
	| opt_delete_option opt_delete_options {}

opt_delete_option:
2389
	QUICK		{ Select->options|= OPTION_QUICK; }
2390 2391
	| LOW_PRIORITY	{ Lex->lock_option= TL_WRITE_LOW_PRIORITY; }

2392
truncate:
unknown's avatar
unknown committed
2393
	TRUNCATE_SYM opt_table_sym table_name
2394 2395 2396
	{
	  LEX* lex = Lex;
	  lex->sql_command= SQLCOM_TRUNCATE;
unknown's avatar
unknown committed
2397 2398 2399 2400
	  lex->select->options=0;
	  lex->select->order_list.elements=0;
          lex->select->order_list.first=0;
          lex->select->order_list.next= (byte**) &lex->select->order_list.first;
2401
	  lex->lock_option= current_thd->update_lock_default; }
2402

unknown's avatar
unknown committed
2403 2404 2405
opt_table_sym:
	/* empty */
	| TABLE_SYM
2406
 
unknown's avatar
unknown committed
2407 2408 2409 2410 2411 2412 2413 2414
/* Show things */

show:	SHOW { Lex->wild=0;} show_param

show_param:
	DATABASES wild
	  { Lex->sql_command= SQLCOM_SHOW_DATABASES; }
	| TABLES opt_db wild
unknown's avatar
unknown committed
2415 2416 2417 2418 2419
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_TABLES;
	    lex->select->db= $2; lex->select->options=0;
	   }
unknown's avatar
unknown committed
2420
	| TABLE_SYM STATUS_SYM opt_db wild
unknown's avatar
unknown committed
2421 2422 2423 2424 2425
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_TABLES;
	    lex->select->options|= SELECT_DESCRIBE;
	    lex->select->db= $3;
unknown's avatar
unknown committed
2426
	  }
2427
	| OPEN_SYM TABLES opt_db wild
unknown's avatar
unknown committed
2428 2429 2430 2431 2432
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_OPEN_TABLES;
	    lex->select->db= $3;
	    lex->select->options=0;
2433
	  }
unknown's avatar
unknown committed
2434
	| opt_full COLUMNS from_or_in table_ident opt_db wild
unknown's avatar
unknown committed
2435 2436
	  {
	    Lex->sql_command= SQLCOM_SHOW_FIELDS;
unknown's avatar
unknown committed
2437 2438 2439
	    if ($5)
	      $4->change_db($5);
	    if (!add_table_to_list($4,NULL,0))
unknown's avatar
unknown committed
2440 2441
	      YYABORT;
	  }
unknown's avatar
unknown committed
2442
        | NEW_SYM MASTER_SYM FOR_SYM SLAVE WITH MASTER_LOG_FILE_SYM EQ 
unknown's avatar
unknown committed
2443
	  TEXT_STRING AND MASTER_LOG_POS_SYM EQ ulonglong_num AND
unknown's avatar
unknown committed
2444 2445 2446 2447 2448 2449 2450 2451 2452
	MASTER_LOG_SEQ_SYM EQ ULONG_NUM AND MASTER_SERVER_ID_SYM EQ
	ULONG_NUM
          {
	    Lex->sql_command = SQLCOM_SHOW_NEW_MASTER;
	    Lex->mi.log_file_name = $8.str;
	    Lex->mi.pos = $12;
	    Lex->mi.last_log_seq = $16;
	    Lex->mi.server_id = $20;
          }
unknown's avatar
unknown committed
2453 2454 2455
        | MASTER_SYM LOGS_SYM
          {
	    Lex->sql_command = SQLCOM_SHOW_BINLOGS;
2456 2457 2458 2459 2460
          }
        | SLAVE HOSTS_SYM
          {
	    Lex->sql_command = SQLCOM_SHOW_SLAVE_HOSTS;
          }
unknown's avatar
unknown committed
2461 2462 2463 2464
        | BINLOG_SYM EVENTS_SYM binlog_in binlog_from limit_clause
          {
	    Lex->sql_command = SQLCOM_SHOW_BINLOG_EVENTS;
          } 
unknown's avatar
unknown committed
2465 2466 2467 2468 2469
	| keys_or_index FROM table_ident opt_db
	  {
	    Lex->sql_command= SQLCOM_SHOW_KEYS;
	    if ($4)
	      $3->change_db($4);
2470
	    if (!add_table_to_list($3,NULL,0))
unknown's avatar
unknown committed
2471 2472 2473 2474
	      YYABORT;
	  }
	| STATUS_SYM wild
	  { Lex->sql_command= SQLCOM_SHOW_STATUS; }
unknown's avatar
unknown committed
2475 2476
	| opt_full PROCESSLIST_SYM
	  { Lex->sql_command= SQLCOM_SHOW_PROCESSLIST;}
unknown's avatar
unknown committed
2477 2478
	| VARIABLES wild
	  { Lex->sql_command= SQLCOM_SHOW_VARIABLES; }
unknown's avatar
unknown committed
2479 2480
	| LOGS_SYM
	  { Lex->sql_command= SQLCOM_SHOW_LOGS; }
unknown's avatar
unknown committed
2481
	| GRANTS FOR_SYM user
unknown's avatar
unknown committed
2482 2483 2484 2485 2486 2487
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_GRANTS;
	    lex->grant_user=$3;
	    lex->grant_user->password.str=NullS;
	  }
unknown's avatar
unknown committed
2488 2489 2490
        | CREATE TABLE_SYM table_ident
          {
	    Lex->sql_command = SQLCOM_SHOW_CREATE;
2491
	    if(!add_table_to_list($3, NULL,0))
unknown's avatar
unknown committed
2492 2493 2494 2495 2496
	      YYABORT;
	  }
        | MASTER_SYM STATUS_SYM
          {
	    Lex->sql_command = SQLCOM_SHOW_MASTER_STAT;
unknown's avatar
unknown committed
2497
          }
unknown's avatar
unknown committed
2498 2499 2500
        | SLAVE STATUS_SYM
          {
	    Lex->sql_command = SQLCOM_SHOW_SLAVE_STAT;
unknown's avatar
unknown committed
2501
          }
unknown's avatar
unknown committed
2502 2503 2504

opt_db:
	/* empty */  { $$= 0; }
unknown's avatar
unknown committed
2505
	| from_or_in ident { $$= $2.str; }
unknown's avatar
unknown committed
2506 2507 2508 2509 2510

wild:
	/* empty */
	| LIKE text_string { Lex->wild= $2; }

unknown's avatar
unknown committed
2511 2512 2513 2514
opt_full:
	/* empty */ { Lex->verbose=0; }
	| FULL	    { Lex->verbose=1; }

unknown's avatar
unknown committed
2515 2516 2517 2518
from_or_in:
	FROM
	| IN_SYM

unknown's avatar
unknown committed
2519 2520 2521 2522 2523 2524
binlog_in:
	/* empty */ { Lex->mi.log_file_name = 0; }
        | IN_SYM TEXT_STRING { Lex->mi.log_file_name = $2.str; }

binlog_from:
	/* empty */ { Lex->mi.pos = 4; /* skip magic number */ }
unknown's avatar
unknown committed
2525
        | FROM ulonglong_num { Lex->mi.pos = $2; }
unknown's avatar
unknown committed
2526 2527


unknown's avatar
unknown committed
2528 2529 2530 2531
/* A Oracle compatible synonym for show */
describe:
	describe_command table_ident
	{
unknown's avatar
unknown committed
2532 2533 2534 2535
	  LEX *lex=Lex;
	  lex->wild=0;
	  lex->verbose=0;
	  lex->sql_command=SQLCOM_SHOW_FIELDS;
2536
	  if (!add_table_to_list($2, NULL,0))
unknown's avatar
unknown committed
2537 2538 2539
	    YYABORT;
	}
	opt_describe_column
2540
	| describe_command select { Lex->select_lex.options|= SELECT_DESCRIBE };
unknown's avatar
unknown committed
2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555


describe_command:
	DESC
	| DESCRIBE

opt_describe_column:
	/* empty */	{}
	| text_string	{ Lex->wild= $1; }
	| ident		{ Lex->wild= new String((const char*) $1.str,$1.length); }


/* flush things */

flush:
unknown's avatar
unknown committed
2556 2557 2558 2559 2560 2561
	FLUSH_SYM
	{
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_FLUSH; lex->type=0;
	}
	flush_options
unknown's avatar
unknown committed
2562 2563 2564 2565 2566 2567

flush_options:
	flush_options ',' flush_option
	| flush_option

flush_option:
2568
	table_or_tables	{ Lex->type|= REFRESH_TABLES; } opt_table_list
unknown's avatar
unknown committed
2569 2570 2571 2572 2573
	| TABLES WITH READ_SYM LOCK_SYM { Lex->type|= REFRESH_TABLES | REFRESH_READ_LOCK; }
	| HOSTS_SYM	{ Lex->type|= REFRESH_HOSTS; }
	| PRIVILEGES	{ Lex->type|= REFRESH_GRANT; }
	| LOGS_SYM	{ Lex->type|= REFRESH_LOG; }
	| STATUS_SYM	{ Lex->type|= REFRESH_STATUS; }
unknown's avatar
unknown committed
2574 2575
        | SLAVE         { Lex->type|= REFRESH_SLAVE; }
        | MASTER_SYM    { Lex->type|= REFRESH_MASTER; }
unknown's avatar
unknown committed
2576

unknown's avatar
unknown committed
2577 2578 2579
opt_table_list:
	/* empty */  {}
	| table_list {}
unknown's avatar
unknown committed
2580

unknown's avatar
unknown committed
2581
reset:
unknown's avatar
unknown committed
2582 2583 2584 2585 2586
	RESET_SYM
	{
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_RESET; lex->type=0;
	} reset_options
unknown's avatar
unknown committed
2587 2588 2589 2590 2591 2592 2593 2594
reset_options:
	reset_options ',' reset_option
	| reset_option

reset_option:
        SLAVE           { Lex->type|= REFRESH_SLAVE; }
        | MASTER_SYM    { Lex->type|= REFRESH_MASTER; }

unknown's avatar
unknown committed
2595
purge:
unknown's avatar
unknown committed
2596 2597 2598 2599 2600 2601
	PURGE
	{
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_PURGE;
	  lex->type=0;
	}
unknown's avatar
unknown committed
2602 2603 2604 2605 2606
        MASTER_SYM LOGS_SYM TO_SYM TEXT_STRING
         {
	   Lex->to_log = $6.str;
         } 

unknown's avatar
unknown committed
2607 2608 2609
/* kill threads */

kill:
2610
	KILL_SYM expr
unknown's avatar
unknown committed
2611
	{
unknown's avatar
unknown committed
2612 2613 2614 2615 2616 2617 2618 2619
	  LEX *lex=Lex;
	  if ($2->fix_fields(lex->thd,0))
	  { 
	    send_error(&lex->thd->net, ER_SET_CONSTANTS_ONLY);
	    YYABORT;
	  }
          lex->sql_command=SQLCOM_KILL;
	  lex->thread_id= (ulong) $2->val_int();
unknown's avatar
unknown committed
2620 2621 2622 2623 2624
	}

/* change database */

use:	USE_SYM ident
unknown's avatar
unknown committed
2625 2626 2627 2628
	{
	  LEX *lex=Lex;
	  lex->sql_command=SQLCOM_CHANGE_DB; lex->select->db= $2.str;
	}
unknown's avatar
unknown committed
2629 2630 2631

/* import, export of files */

unknown's avatar
unknown committed
2632
load:	LOAD DATA_SYM load_data_lock opt_local INFILE TEXT_STRING
unknown's avatar
unknown committed
2633
	{
unknown's avatar
unknown committed
2634 2635 2636 2637
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_LOAD;
	  lex->local_file= $4;
	  if (!(lex->exchange= new sql_exchange($6.str,0)))
unknown's avatar
unknown committed
2638
	    YYABORT;
unknown's avatar
unknown committed
2639
	  lex->field_list.empty();
unknown's avatar
unknown committed
2640 2641 2642 2643
	}
	opt_duplicate INTO TABLE_SYM table_ident opt_field_term opt_line_term
	opt_ignore_lines opt_field_spec
	{
2644
	  if (!add_table_to_list($11,NULL,1))
unknown's avatar
unknown committed
2645 2646 2647
	    YYABORT;
	}
        |
unknown's avatar
unknown committed
2648
	LOAD TABLE_SYM table_ident FROM MASTER_SYM
unknown's avatar
unknown committed
2649 2650
        {
	  Lex->sql_command = SQLCOM_LOAD_MASTER_TABLE;
2651
	  if (!add_table_to_list($3,NULL,1))
unknown's avatar
unknown committed
2652
	    YYABORT;
unknown's avatar
unknown committed
2653 2654

        }
2655 2656 2657 2658 2659
        |
	LOAD DATA_SYM FROM MASTER_SYM
        {
	  Lex->sql_command = SQLCOM_LOAD_MASTER_DATA;
        }
unknown's avatar
unknown committed
2660 2661 2662 2663 2664

opt_local:
	/* empty */	{ $$=0;}
	| LOCAL_SYM	{ $$=1;}

unknown's avatar
unknown committed
2665 2666 2667 2668 2669 2670
load_data_lock:
	/* empty */	{ Lex->lock_option= current_thd->update_lock_default; }
	| CONCURRENT	{ Lex->lock_option= TL_WRITE_CONCURRENT_INSERT ; }
	| LOW_PRIORITY	{ Lex->lock_option= TL_WRITE_LOW_PRIORITY; }


unknown's avatar
unknown committed
2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686
opt_duplicate:
	/* empty */	{ Lex->duplicates=DUP_ERROR; }
	| REPLACE	{ Lex->duplicates=DUP_REPLACE; }
	| IGNORE_SYM	{ Lex->duplicates=DUP_IGNORE; }

opt_field_term:
	/* empty */
	| COLUMNS field_term_list

field_term_list:
	field_term_list field_term
	| field_term

field_term:
	TERMINATED BY text_string { Lex->exchange->field_term= $3;}
	| OPTIONALLY ENCLOSED BY text_string
unknown's avatar
unknown committed
2687 2688 2689 2690 2691
	  {
	    LEX *lex=Lex;
	    lex->exchange->enclosed= $4;
	    lex->exchange->opt_enclosed=1;
	  }
unknown's avatar
unknown committed
2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730
	| ENCLOSED BY text_string { Lex->exchange->enclosed= $3;}
	| ESCAPED BY text_string  { Lex->exchange->escaped= $3;}

opt_line_term:
	/* empty */
	| LINES line_term_list

line_term_list:
	line_term_list line_term
	| line_term

line_term:
	TERMINATED BY text_string { Lex->exchange->line_term= $3;}
	| STARTING BY text_string { Lex->exchange->line_start= $3;}

opt_ignore_lines:
	/* empty */
	| IGNORE_SYM NUM LINES
	  { Lex->exchange->skip_lines=atol($2.str); }

/* Common definitions */

text_literal:
	TEXT_STRING { $$ = new Item_string($1.str,$1.length); }
	| text_literal TEXT_STRING
	{ ((Item_string*) $1)->append($2.str,$2.length); }

text_string:
	TEXT_STRING	{ $$=  new String($1.str,$1.length); }
	| HEX_NUM
	  {
	    Item *tmp = new Item_varbinary($1.str,$1.length);
	    $$= tmp ? tmp->val_str((String*) 0) : (String*) 0;
	  }

literal:
	text_literal	{ $$ =	$1; }
	| NUM		{ $$ =	new Item_int($1.str, (longlong) atol($1.str),$1.length); }
	| LONG_NUM	{ $$ =	new Item_int($1.str); }
unknown's avatar
unknown committed
2731
	| ULONGLONG_NUM	{ $$ =	new Item_uint($1.str, $1.length); }
unknown's avatar
unknown committed
2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754
	| REAL_NUM	{ $$ =	new Item_real($1.str, $1.length); }
	| FLOAT_NUM	{ $$ =	new Item_float($1.str, $1.length); }
	| NULL_SYM	{ $$ =	new Item_null();
			  Lex->next_state=STATE_OPERATOR_OR_IDENT;}
	| HEX_NUM	{ $$ =	new Item_varbinary($1.str,$1.length)};
	| DATE_SYM text_literal { $$ = $2; }
	| TIME_SYM text_literal { $$ = $2; }
	| TIMESTAMP text_literal { $$ = $2; }

/**********************************************************************
** Createing different items.
**********************************************************************/

insert_ident:
	simple_ident	 { $$=$1; }
	| table_wild	 { $$=$1; }

table_wild:
	ident '.' '*' { $$ = new Item_field(NullS,$1.str,"*"); }
	| ident '.' ident '.' '*'
	{ $$ = new Item_field((current_thd->client_capabilities & CLIENT_NO_SCHEMA ? NullS : $1.str),$3.str,"*"); }

group_ident:
unknown's avatar
unknown committed
2755
	order_ident order_dir
unknown's avatar
unknown committed
2756 2757 2758 2759 2760 2761

order_ident:
	expr { $$=$1; }

simple_ident:
	ident
unknown's avatar
unknown committed
2762 2763 2764 2765
	{
	  SELECT_LEX *sel=Select;
	  $$ = !sel->create_refs || sel->in_sum_expr > 0 ? (Item*) new Item_field(NullS,NullS,$1.str) : (Item*) new Item_ref(NullS,NullS,$1.str);
	}
unknown's avatar
unknown committed
2766
	| ident '.' ident
unknown's avatar
unknown committed
2767 2768 2769 2770
	{
	  SELECT_LEX *sel=Select;
	  $$ = !sel->create_refs || sel->in_sum_expr > 0 ? (Item*) new Item_field(NullS,$1.str,$3.str) : (Item*) new Item_ref(NullS,$1.str,$3.str);
	}
unknown's avatar
unknown committed
2771
	| '.' ident '.' ident
unknown's avatar
unknown committed
2772 2773 2774 2775
	{
	  SELECT_LEX *sel=Select;
	  $$ = !sel->create_refs || sel->in_sum_expr > 0 ? (Item*) new Item_field(NullS,$2.str,$4.str) : (Item*) new Item_ref(NullS,$2.str,$4.str);
	}
unknown's avatar
unknown committed
2776
	| ident '.' ident '.' ident
unknown's avatar
unknown committed
2777 2778 2779 2780
	{
	  SELECT_LEX *sel=Select;
	  $$ = !sel->create_refs || sel->in_sum_expr > 0 ? (Item*) new Item_field((current_thd->client_capabilities & CLIENT_NO_SCHEMA ? NullS :$1.str),$3.str,$5.str) : (Item*) new Item_ref((current_thd->client_capabilities & CLIENT_NO_SCHEMA ? NullS :$1.str),$3.str,$5.str);
	}
unknown's avatar
unknown committed
2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796


field_ident:
	ident			{ $$=$1;}
	| ident '.' ident	{ $$=$3;}	/* Skipp schema name in create*/
	| '.' ident		{ $$=$2;}	/* For Delphi */

table_ident:
	ident			{ $$=new Table_ident($1); }
	| ident '.' ident	{ $$=new Table_ident($1,$3,0);}
	| '.' ident		{ $$=new Table_ident($2);}	/* For Delphi */

ident:
	IDENT	    { $$=$1; }
	| keyword
	{
unknown's avatar
unknown committed
2797
	  LEX *lex;
unknown's avatar
unknown committed
2798 2799
	  $$.str=sql_strmake($1.str,$1.length);
	  $$.length=$1.length;
unknown's avatar
unknown committed
2800 2801
	  if ((lex=Lex)->next_state != STATE_END)
	    lex->next_state=STATE_OPERATOR_OR_IDENT;
unknown's avatar
unknown committed
2802 2803 2804 2805
	}

ident_or_text:
	ident 		{ $$=$1;}
unknown's avatar
unknown committed
2806
	| TEXT_STRING	{ $$=$1;}
unknown's avatar
unknown committed
2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
	| LEX_HOSTNAME	{ $$=$1;}

user:
	ident_or_text
	{
	  if (!($$=(LEX_USER*) sql_alloc(sizeof(st_lex_user))))
	    YYABORT;
	  $$->user = $1; $$->host.str=NullS;
	  }
	| ident_or_text '@' ident_or_text
	  {
	  if (!($$=(LEX_USER*) sql_alloc(sizeof(st_lex_user))))
	      YYABORT;
	    $$->user = $1; $$->host=$3;
	  }

/* Keyword that we allow for identifiers */

keyword:
	ACTION			{}
	| AFTER_SYM		{}
2828
	| AGAINST		{}
unknown's avatar
unknown committed
2829 2830
	| AGGREGATE_SYM		{}
	| AUTOCOMMIT		{}
unknown's avatar
unknown committed
2831
	| AUTO_INC		{}
unknown's avatar
unknown committed
2832 2833
	| AVG_ROW_LENGTH	{}
	| AVG_SYM		{}
unknown's avatar
unknown committed
2834
	| BACKUP_SYM		{}
unknown's avatar
unknown committed
2835
	| BEGIN_SYM		{}
unknown's avatar
unknown committed
2836
	| BERKELEY_DB_SYM	{}
unknown's avatar
unknown committed
2837
	| BINLOG_SYM		{}
unknown's avatar
unknown committed
2838 2839
	| BIT_SYM		{}
	| BOOL_SYM		{}
unknown's avatar
unknown committed
2840
	| BOOLEAN_SYM		{}
2841
	| CHANGED		{}
unknown's avatar
unknown committed
2842 2843
	| CHECKSUM_SYM		{}
	| CHECK_SYM		{}
2844
	| CIPHER_SYM		{}
2845
	| CLOSE_SYM		{}
unknown's avatar
unknown committed
2846 2847
	| COMMENT_SYM		{}
	| COMMIT_SYM		{}
unknown's avatar
unknown committed
2848
	| COMMITTED_SYM		{}
unknown's avatar
unknown committed
2849
	| COMPRESSED_SYM	{}
unknown's avatar
unknown committed
2850
	| CONCURRENT		{}
unknown's avatar
unknown committed
2851 2852 2853 2854
	| DATA_SYM		{}
	| DATETIME		{}
	| DATE_SYM		{}
	| DAY_SYM		{}
unknown's avatar
unknown committed
2855
	| DIRECTORY_SYM		{}
unknown's avatar
unknown committed
2856
	| DELAY_KEY_WRITE_SYM	{}
2857
        | DISABLE_SYM           {}
unknown's avatar
unknown committed
2858 2859
	| DUMPFILE		{}
	| DYNAMIC_SYM		{}
2860
        | ENABLE_SYM            {}
unknown's avatar
unknown committed
2861 2862 2863
	| END			{}
	| ENUM			{}
	| ESCAPE_SYM		{}
unknown's avatar
unknown committed
2864
	| EVENTS_SYM		{}
unknown's avatar
unknown committed
2865
	| EXTENDED_SYM		{}
2866
	| FAST_SYM		{}
unknown's avatar
unknown committed
2867
	| FULL			{}
unknown's avatar
unknown committed
2868 2869 2870 2871 2872
	| FILE_SYM		{}
	| FIRST_SYM		{}
	| FIXED_SYM		{}
	| FLUSH_SYM		{}
	| GRANTS                {}
unknown's avatar
unknown committed
2873
	| GLOBAL_SYM		{}
unknown's avatar
unknown committed
2874
	| HEAP_SYM		{}
2875
	| HANDLER_SYM		{}
unknown's avatar
unknown committed
2876 2877 2878
	| HOSTS_SYM		{}
	| HOUR_SYM		{}
	| IDENTIFIED_SYM	{}
unknown's avatar
unknown committed
2879
	| INDEXES		{}
unknown's avatar
unknown committed
2880
	| ISOLATION		{}
unknown's avatar
unknown committed
2881
	| ISAM_SYM		{}
unknown's avatar
unknown committed
2882
	| ISSUER_SYM		{}
unknown's avatar
unknown committed
2883
	| INNOBASE_SYM		{}
2884
	| INSERT_METHOD		{}
2885
	| LAST_SYM		{}
unknown's avatar
unknown committed
2886
	| LEVEL_SYM		{}
unknown's avatar
unknown committed
2887
	| LOCAL_SYM		{}
unknown's avatar
unknown committed
2888
	| LOCKS_SYM		{}
unknown's avatar
unknown committed
2889 2890 2891 2892 2893 2894 2895 2896 2897 2898
	| LOGS_SYM		{}
	| MAX_ROWS		{}
	| MASTER_SYM		{}
	| MASTER_HOST_SYM	{}
	| MASTER_PORT_SYM	{}
	| MASTER_LOG_FILE_SYM	{}
	| MASTER_LOG_POS_SYM	{}
	| MASTER_USER_SYM	{}
	| MASTER_PASSWORD_SYM	{}
	| MASTER_CONNECT_RETRY_SYM	{}
2899
	| MEDIUM_SYM		{}
unknown's avatar
unknown committed
2900 2901 2902 2903
	| MERGE_SYM		{}
	| MINUTE_SYM		{}
	| MIN_ROWS		{}
	| MODIFY_SYM		{}
unknown's avatar
unknown committed
2904
	| MODE_SYM		{}
unknown's avatar
unknown committed
2905 2906 2907 2908
	| MONTH_SYM		{}
	| MYISAM_SYM		{}
	| NATIONAL_SYM		{}
	| NCHAR_SYM		{}
2909
	| NEXT_SYM		{}
unknown's avatar
unknown committed
2910
	| NEW_SYM		{}
unknown's avatar
unknown committed
2911
	| NO_SYM		{}
2912
	| OPEN_SYM		{}
unknown's avatar
unknown committed
2913 2914
	| PACK_KEYS_SYM		{}
	| PASSWORD		{}
2915
	| PREV_SYM		{}
unknown's avatar
unknown committed
2916 2917
	| PROCESS		{}
	| PROCESSLIST_SYM	{}
2918
	| QUICK			{}
unknown's avatar
unknown committed
2919
	| RAID_0_SYM            {}
unknown's avatar
unknown committed
2920 2921
	| RAID_CHUNKS		{}
	| RAID_CHUNKSIZE	{}
unknown's avatar
unknown committed
2922
	| RAID_STRIPED_SYM      {}
unknown's avatar
unknown committed
2923
	| RAID_TYPE		{}
unknown's avatar
unknown committed
2924 2925
	| RELOAD		{}
	| REPAIR		{}
unknown's avatar
unknown committed
2926
	| REPEATABLE_SYM	{}
unknown's avatar
unknown committed
2927
	| RESET_SYM		{}
unknown's avatar
unknown committed
2928
	| RESTORE_SYM		{}
unknown's avatar
unknown committed
2929 2930 2931 2932 2933
	| ROLLBACK_SYM		{}
	| ROWS_SYM		{}
	| ROW_FORMAT_SYM	{}
	| ROW_SYM		{}
	| SECOND_SYM		{}
unknown's avatar
unknown committed
2934 2935 2936
	| SERIALIZABLE_SYM	{}
	| SESSION_SYM		{}
	| SHARE_SYM		{}
unknown's avatar
unknown committed
2937
	| SHUTDOWN		{}
unknown's avatar
unknown committed
2938
        | SLAVE		        {}
unknown's avatar
unknown committed
2939 2940 2941 2942
	| START_SYM		{}
	| STATUS_SYM		{}
	| STOP_SYM		{}
	| STRING_SYM		{}
unknown's avatar
unknown committed
2943
	| SUBJECT_SYM		{}
unknown's avatar
unknown committed
2944 2945
	| TEMPORARY		{}
	| TEXT_SYM		{}
unknown's avatar
unknown committed
2946
	| TRANSACTION_SYM	{}
2947
	| TRUNCATE_SYM		{}
unknown's avatar
unknown committed
2948 2949 2950 2951
	| TIMESTAMP		{}
	| TIME_SYM		{}
	| TYPE_SYM		{}
	| UDF_SYM		{}
unknown's avatar
unknown committed
2952
	| UNCOMMITTED_SYM	{}
unknown's avatar
unknown committed
2953 2954 2955 2956 2957 2958 2959 2960 2961 2962
	| VARIABLES		{}
	| WORK_SYM		{}
	| YEAR_SYM		{}
        | SLAVE                 {}

/* Option functions */

set:
	SET opt_option
	{
unknown's avatar
unknown committed
2963 2964 2965 2966 2967
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_SET_OPTION;
	  lex->select->options=lex->thd->options;
	  lex->select->select_limit=lex->thd->default_select_limit;
	  lex->tx_isolation=lex->thd->tx_isolation;
unknown's avatar
unknown committed
2968 2969
	  lex->option_type=0;
	  lex->option_list.empty()
unknown's avatar
unknown committed
2970 2971 2972 2973 2974 2975 2976 2977 2978
	}
	option_value_list

opt_option:
	/* empty */ {}
	| OPTION {}

option_value_list:
	option_value
unknown's avatar
unknown committed
2979 2980
	| GLOBAL_SYM { Lex->option_type=1; } option_value
	| LOCAL_SYM  { Lex->option_type=0; } option_value
unknown's avatar
unknown committed
2981 2982 2983 2984 2985
	| option_value_list ',' option_value

option_value:
	set_option equal NUM
	{
unknown's avatar
unknown committed
2986
	  SELECT_LEX *sel=Select;
unknown's avatar
unknown committed
2987
	  if (atoi($3.str) == 0)
unknown's avatar
unknown committed
2988
	    sel->options&= ~$1;
unknown's avatar
unknown committed
2989
	  else
unknown's avatar
unknown committed
2990
	    sel->options|= $1;
unknown's avatar
unknown committed
2991
	}
unknown's avatar
unknown committed
2992
	| set_isolation
2993 2994
	| AUTOCOMMIT equal NUM
	{
unknown's avatar
unknown committed
2995
	  SELECT_LEX *sel=Select;
2996
	  if (atoi($3.str) != 0)	/* Test NOT AUTOCOMMIT */
unknown's avatar
unknown committed
2997
	    sel->options&= ~(OPTION_NOT_AUTO_COMMIT);
2998
	  else
unknown's avatar
unknown committed
2999
	    sel->options|= OPTION_NOT_AUTO_COMMIT;
3000
	}
unknown's avatar
unknown committed
3001 3002
	| SQL_SELECT_LIMIT equal ULONG_NUM
	{
3003
	  Select->select_limit= $3;
unknown's avatar
unknown committed
3004 3005 3006
	}
	| SQL_SELECT_LIMIT equal DEFAULT
	{
3007
	  Select->select_limit= HA_POS_ERROR;
unknown's avatar
unknown committed
3008 3009 3010
	}
	| SQL_MAX_JOIN_SIZE equal ULONG_NUM
	{
unknown's avatar
unknown committed
3011 3012 3013
	  LEX *lex=Lex;
	  lex->thd->max_join_size= $3;
	  lex->select->options&= ~OPTION_BIG_SELECTS;
unknown's avatar
unknown committed
3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026
	}
	| SQL_MAX_JOIN_SIZE equal DEFAULT
	{
	  current_thd->max_join_size= HA_POS_ERROR;
	}
	| TIMESTAMP equal ULONG_NUM
	{
	  current_thd->set_time((time_t) $3);
	}
	| TIMESTAMP equal DEFAULT
	{
	  current_thd->user_time=0;
	}
unknown's avatar
unknown committed
3027
	| LAST_INSERT_ID equal ulonglong_num
unknown's avatar
unknown committed
3028 3029 3030
	{
	  current_thd->insert_id($3);
	}
unknown's avatar
unknown committed
3031
	| INSERT_ID equal ulonglong_num
unknown's avatar
unknown committed
3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065
	{
	  current_thd->next_insert_id=$3;
	}
	| CHAR_SYM SET IDENT
	{
	  CONVERT *tmp;
	  if (!(tmp=get_convert_set($3.str)))
	  {
	    net_printf(&current_thd->net,ER_UNKNOWN_CHARACTER_SET,$3);
	    YYABORT;
	  }
	  current_thd->convert_set=tmp;
	}
	| CHAR_SYM SET DEFAULT
	{
	  current_thd->convert_set=0;
	}
	| PASSWORD equal text_or_password
	 {
	   if (change_password(current_thd,current_thd->host,
			       current_thd->priv_user,$3))
	     YYABORT;
	 }
	| PASSWORD FOR_SYM user equal text_or_password
	 {
	   if (change_password(current_thd,
			       $3->host.str ? $3->host.str : current_thd->host,
			       $3->user.str,$5))
	     YYABORT;
	 }
	| '@' ident_or_text equal expr
	  {
	     Item_func_set_user_var *item = new Item_func_set_user_var($2,$4);
	     if (item->fix_fields(current_thd,0) || item->update())
3066
	     { 
unknown's avatar
unknown committed
3067
		send_error(&current_thd->net, ER_SET_CONSTANTS_ONLY);
3068 3069 3070
	        YYABORT;
	     }
	   }
3071 3072 3073
         | SQL_SLAVE_SKIP_COUNTER equal ULONG_NUM
          {
	    pthread_mutex_lock(&LOCK_slave);
3074
	    if (slave_running)
3075 3076 3077 3078 3079
	      send_error(&current_thd->net, ER_SLAVE_MUST_STOP);
	    else
	      slave_skip_counter = $3;
	    pthread_mutex_unlock(&LOCK_slave);
          }
unknown's avatar
unknown committed
3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101
	| ident equal DEFAULT
	  {
	    LEX *lex=Lex;
	    lex->option_list.push_back(new Set_option(lex->option_type,
						      $1.str,$1.length,
						      (Item*) 0));
	   }
	| ident equal expr
	  {
	     THD *thd=current_thd;
	     Item *item= $3;
	     if (item->fix_fields(current_thd,0))
	     {
		send_error(&thd->net, ER_SET_CONSTANTS_ONLY);
	        YYABORT;
	     }
	     thd->lex.option_list.
	       push_back(new Set_option(thd->lex.option_type,
					$1.str,$1.length,
					item));
	   }

unknown's avatar
unknown committed
3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117

text_or_password:
	TEXT_STRING { $$=$1.str;}
	| PASSWORD '(' TEXT_STRING ')'
	  {
	    if (!$3.length)
	      $$=$3.str;
	    else
	    {
	      char *buff=(char*) sql_alloc(HASH_PASSWORD_LENGTH+1);
	      make_scrambled_password(buff,$3.str);
	      $$=buff;
	    }
	  }

set_option:
unknown's avatar
unknown committed
3118
	SQL_BIG_TABLES	        { $$= OPTION_BIG_TABLES; }
unknown's avatar
unknown committed
3119 3120 3121 3122
	| SQL_BIG_SELECTS	{ $$= OPTION_BIG_SELECTS; }
	| SQL_LOG_OFF		{ $$= OPTION_LOG_OFF; }
	| SQL_LOG_UPDATE
           {
unknown's avatar
unknown committed
3123 3124 3125
	     $$= (opt_sql_bin_update)? 
                        OPTION_UPDATE_LOG|OPTION_BIN_LOG: 
                        OPTION_UPDATE_LOG ;
unknown's avatar
unknown committed
3126 3127 3128
	   }
	| SQL_LOG_BIN
           {
unknown's avatar
unknown committed
3129 3130 3131
	     $$= (opt_sql_bin_update)? 
                        OPTION_UPDATE_LOG|OPTION_BIN_LOG: 
                        OPTION_BIN_LOG ;
unknown's avatar
unknown committed
3132 3133 3134 3135 3136 3137
	   }
	| SQL_WARNINGS		{ $$= OPTION_WARNINGS; }
	| SQL_LOW_PRIORITY_UPDATES { $$= OPTION_LOW_PRIORITY_UPDATES; }
	| SQL_AUTO_IS_NULL	{ $$= OPTION_AUTO_IS_NULL; }
	| SQL_SAFE_UPDATES	{ $$= OPTION_SAFE_UPDATES; }
	| SQL_BUFFER_RESULT	{ $$= OPTION_BUFFER_RESULT; }
3138
	| SQL_QUOTE_SHOW_CREATE { $$= OPTION_QUOTE_SHOW_CREATE; }
unknown's avatar
unknown committed
3139

unknown's avatar
unknown committed
3140 3141 3142 3143 3144 3145 3146

set_isolation:
	GLOBAL_SYM tx_isolation
	{
	  if (check_process_priv())
	    YYABORT;
	  default_tx_isolation= $2;
3147
	  default_tx_isolation_name=tx_isolation_typelib.type_names[default_tx_isolation];
unknown's avatar
unknown committed
3148 3149
        }
	| SESSION_SYM tx_isolation
unknown's avatar
unknown committed
3150
	{
unknown's avatar
unknown committed
3151 3152
	  LEX *lex=Lex;
	  lex->thd->session_tx_isolation= lex->tx_isolation= $2;
unknown's avatar
unknown committed
3153
	}
unknown's avatar
unknown committed
3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165
	| tx_isolation
	{ Lex->tx_isolation= $1; }

tx_isolation:
	TRANSACTION_SYM ISOLATION LEVEL_SYM isolation_types { $$=$4; }

isolation_types:
	READ_SYM UNCOMMITTED_SYM	{ $$= ISO_READ_UNCOMMITTED; }
	| READ_SYM COMMITTED_SYM	{ $$= ISO_READ_COMMITTED; }
	| REPEATABLE_SYM READ_SYM	{ $$= ISO_REPEATABLE_READ; }
	| SERIALIZABLE_SYM		{ $$= ISO_SERIALIZABLE; }

unknown's avatar
unknown committed
3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184
/* Lock function */

lock:
	LOCK_SYM table_or_tables
	{
	  Lex->sql_command=SQLCOM_LOCK_TABLES;
	}
	table_lock_list

table_or_tables:
	TABLE_SYM
	| TABLES

table_lock_list:
	table_lock
	| table_lock_list ',' table_lock

table_lock:
	table_ident opt_table_alias lock_option
3185
	{ if (!add_table_to_list($1,$2,0,(thr_lock_type) $3)) YYABORT; }
unknown's avatar
unknown committed
3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196

lock_option:
	READ_SYM	{ $$=TL_READ_NO_INSERT; }
	| WRITE_SYM     { $$=current_thd->update_lock_default; }
	| LOW_PRIORITY WRITE_SYM { $$=TL_WRITE_LOW_PRIORITY; }
	| READ_SYM LOCAL_SYM { $$= TL_READ; }

unlock:
	UNLOCK_SYM table_or_tables { Lex->sql_command=SQLCOM_UNLOCK_TABLES; }


3197
/*
unknown's avatar
unknown committed
3198
** Handler: direct access to ISAM functions
3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213
*/

handler:
	HANDLER_SYM table_ident OPEN_SYM opt_table_alias
	{
	  Lex->sql_command = SQLCOM_HA_OPEN;
	  if (!add_table_to_list($2,$4,0))
	    YYABORT;
	}
	| HANDLER_SYM table_ident CLOSE_SYM
	{
	  Lex->sql_command = SQLCOM_HA_CLOSE;
	  if (!add_table_to_list($2,0,0))
	    YYABORT;
	}
unknown's avatar
unknown committed
3214
	| HANDLER_SYM table_ident READ_SYM handler_read_or_scan
3215 3216 3217 3218
	{
	  Lex->sql_command = SQLCOM_HA_READ;
	  if (!add_table_to_list($2,0,0))
	    YYABORT;
unknown's avatar
unknown committed
3219 3220
        }
        where_clause limit_clause { }
3221

unknown's avatar
unknown committed
3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234
handler_read_or_scan:
	handler_scan_function         { Lex->backup_dir= 0; }
        | ident handler_rkey_function { Lex->backup_dir= $1.str; }

handler_scan_function:
	FIRST_SYM  { Lex->ha_read_mode = RFIRST; }
	| NEXT_SYM { Lex->ha_read_mode = RNEXT;  }

handler_rkey_function:
	FIRST_SYM  { Lex->ha_read_mode = RFIRST; }
	| NEXT_SYM { Lex->ha_read_mode = RNEXT;  }
	| PREV_SYM { Lex->ha_read_mode = RPREV;  }
	| LAST_SYM { Lex->ha_read_mode = RLAST;  }
3235 3236
	| handler_rkey_mode
	{
unknown's avatar
unknown committed
3237 3238 3239
	  LEX *lex=Lex;
	  lex->ha_read_mode = RKEY;
	  if (!(lex->insert_list = new List_item))
3240
	    YYABORT;
unknown's avatar
unknown committed
3241
	} '(' values ')' { }
3242 3243

handler_rkey_mode:
unknown's avatar
unknown committed
3244 3245 3246 3247 3248
	  EQ     { Lex->ha_rkey_mode=HA_READ_KEY_EXACT;   }
	| GE     { Lex->ha_rkey_mode=HA_READ_KEY_OR_NEXT; }
	| LE     { Lex->ha_rkey_mode=HA_READ_KEY_OR_PREV; }
	| GT_SYM { Lex->ha_rkey_mode=HA_READ_AFTER_KEY;   }
	| LT     { Lex->ha_rkey_mode=HA_READ_BEFORE_KEY;  }
3249

unknown's avatar
unknown committed
3250 3251 3252 3253 3254
/* GRANT / REVOKE */

revoke:
	REVOKE
	{
unknown's avatar
unknown committed
3255 3256 3257 3258 3259 3260
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_REVOKE;
	  lex->users_list.empty();
	  lex->columns.empty();
	  lex->grant= lex->grant_tot_col=0;
	  lex->select->db=0;
unknown's avatar
unknown committed
3261 3262 3263 3264 3265 3266
	}
	grant_privileges ON opt_table FROM user_list

grant:
	GRANT
	{
unknown's avatar
unknown committed
3267 3268 3269 3270 3271 3272
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_GRANT;
	  lex->users_list.empty();
	  lex->columns.empty();
	  lex->grant= lex->grant_tot_col=0;
	  lex->select->db=0;
3273 3274
	  lex->ssl_type=SSL_TYPE_NONE;
	  lex->ssl_cipher=lex->x509_subject=lex->x509_issuer=0;
unknown's avatar
unknown committed
3275 3276
	}
	grant_privileges ON opt_table TO_SYM user_list
3277
	require_clause grant_option 
unknown's avatar
unknown committed
3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310

grant_privileges:
	grant_privilege_list {}
	| ALL PRIVILEGES	{ Lex->grant = UINT_MAX;}
	| ALL			{ Lex->grant = UINT_MAX;}

grant_privilege_list:
	grant_privilege
	| grant_privilege_list ',' grant_privilege

grant_privilege:
	SELECT_SYM
	  { Lex->which_columns = SELECT_ACL;}
	  opt_column_list
	| INSERT
	  { Lex->which_columns = INSERT_ACL; }
	  opt_column_list
	| UPDATE_SYM
	  { Lex->which_columns = UPDATE_ACL; }
	  opt_column_list
	| DELETE_SYM { Lex->grant |= DELETE_ACL;}
	| REFERENCES { Lex->which_columns = REFERENCES_ACL;} opt_column_list
	| USAGE {}
	| INDEX		{ Lex->grant |= INDEX_ACL;}
	| ALTER		{ Lex->grant |= ALTER_ACL;}
	| CREATE	{ Lex->grant |= CREATE_ACL;}
	| DROP		{ Lex->grant |= DROP_ACL;}
	| RELOAD	{ Lex->grant |= RELOAD_ACL;}
	| SHUTDOWN	{ Lex->grant |= SHUTDOWN_ACL;}
	| PROCESS	{ Lex->grant |= PROCESS_ACL;}
	| FILE_SYM	{ Lex->grant |= FILE_ACL;}
	| GRANT OPTION  { Lex->grant |= GRANT_ACL;}

unknown's avatar
unknown committed
3311 3312 3313 3314 3315
require_list: require_list_element AND require_list
| require_list_element 

require_list_element: SUBJECT_SYM TEXT_STRING
 {
unknown's avatar
unknown committed
3316 3317 3318 3319
   LEX *lex=Lex;
   if (lex->x509_subject)
   {
     net_printf(&lex->thd->net,ER_DUP_ARGUMENT, "SUBJECT");
3320
     YYABORT;
unknown's avatar
unknown committed
3321 3322
   }
   lex->x509_subject=$2.str;
unknown's avatar
unknown committed
3323 3324 3325
 }
 | ISSUER_SYM TEXT_STRING
 {
unknown's avatar
unknown committed
3326 3327 3328 3329
   LEX *lex=Lex;
   if (lex->x509_issuer)
   {
     net_printf(&lex->thd->net,ER_DUP_ARGUMENT, "ISSUER");
3330
     YYABORT;
unknown's avatar
unknown committed
3331 3332
   }
   lex->x509_issuer=$2.str;
unknown's avatar
unknown committed
3333
 }
unknown's avatar
unknown committed
3334
 | CIPHER_SYM TEXT_STRING
unknown's avatar
unknown committed
3335
 {
3336
   LEX *lex=Lex;
unknown's avatar
unknown committed
3337 3338 3339
   if (lex->ssl_cipher)
   {
     net_printf(&lex->thd->net,ER_DUP_ARGUMENT, "CHIPER");
3340
     YYABORT;
unknown's avatar
unknown committed
3341 3342
   }
   lex->ssl_cipher=$2.str;
unknown's avatar
unknown committed
3343 3344
 }
 
unknown's avatar
unknown committed
3345 3346 3347
opt_table:
	'*'
	  {
unknown's avatar
unknown committed
3348 3349 3350 3351 3352
	    LEX *lex=Lex;
	    lex->select->db=lex->thd->db;
	    if (lex->grant == UINT_MAX)
	      lex->grant = DB_ACLS & ~GRANT_ACL;
	    else if (lex->columns.elements)
unknown's avatar
unknown committed
3353
	    {
unknown's avatar
unknown committed
3354
	       send_error(&lex->thd->net,ER_ILLEGAL_GRANT_FOR_TABLE);
unknown's avatar
unknown committed
3355
	       YYABORT;
unknown's avatar
unknown committed
3356
	    }
unknown's avatar
unknown committed
3357 3358 3359
	  }
	| ident '.' '*'
	  {
unknown's avatar
unknown committed
3360 3361 3362 3363 3364
	    LEX *lex=Lex;
	    lex->select->db = $1.str;
	    if (lex->grant == UINT_MAX)
	      lex->grant = DB_ACLS & ~GRANT_ACL;
	    else if (lex->columns.elements)
unknown's avatar
unknown committed
3365
	    {
unknown's avatar
unknown committed
3366
	      send_error(&lex->thd->net,ER_ILLEGAL_GRANT_FOR_TABLE);
unknown's avatar
unknown committed
3367 3368 3369 3370 3371
	      YYABORT;
	    }
	  }
	| '*' '.' '*'
	  {
unknown's avatar
unknown committed
3372 3373 3374 3375 3376
	    LEX *lex=Lex;
	    lex->select->db = NULL;
	    if (lex->grant == UINT_MAX)
	      lex->grant = GLOBAL_ACLS & ~GRANT_ACL;
	    else if (lex->columns.elements)
unknown's avatar
unknown committed
3377
	    {
unknown's avatar
unknown committed
3378
	      send_error(&lex->thd->net,ER_ILLEGAL_GRANT_FOR_TABLE);
unknown's avatar
unknown committed
3379 3380 3381 3382 3383
	      YYABORT;
	    }
	  }
	| table_ident
	  {
unknown's avatar
unknown committed
3384
	    LEX *lex=Lex;
3385
	    if (!add_table_to_list($1,NULL,0))
unknown's avatar
unknown committed
3386
	      YYABORT;
unknown's avatar
unknown committed
3387 3388
	    if (lex->grant == UINT_MAX)
	      lex->grant =  TABLE_ACLS & ~GRANT_ACL;
unknown's avatar
unknown committed
3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418
	  }


user_list:
	grant_user	     { if (Lex->users_list.push_back($1)) YYABORT;}
	| user_list ',' grant_user { if (Lex->users_list.push_back($3)) YYABORT;}


grant_user:
	user IDENTIFIED_SYM BY TEXT_STRING
	{
	   $$=$1; $1->password=$4;
	   if ($4.length)
	   {
	     char *buff=(char*) sql_alloc(HASH_PASSWORD_LENGTH+1);
	     if (buff)
	     {
	       make_scrambled_password(buff,$4.str);
	       $1->password.str=buff;
	       $1->password.length=HASH_PASSWORD_LENGTH;
	     }
	  }
	}
	| user IDENTIFIED_SYM BY PASSWORD TEXT_STRING
	  { $$=$1; $1->password=$5 ; }
	| user
	  { $$=$1; $1->password.str=NullS; }


opt_column_list:
unknown's avatar
unknown committed
3419 3420 3421 3422 3423
	/* empty */
	{
	  LEX *lex=Lex;
	  lex->grant |= lex->which_columns;
	}
unknown's avatar
unknown committed
3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435
	| '(' column_list ')'

column_list:
	column_list ',' column_list_id
	| column_list_id

column_list_id:
	ident
	{
	  String *new_str = new String((const char*) $1.str,$1.length);
	  List_iterator <LEX_COLUMN> iter(Lex->columns);
	  class LEX_COLUMN *point;
unknown's avatar
unknown committed
3436
	  LEX *lex=Lex;
unknown's avatar
unknown committed
3437 3438 3439 3440 3441
	  while ((point=iter++))
	  {
	    if (!my_strcasecmp(point->column.ptr(),new_str->ptr()))
		break;
	  }
unknown's avatar
unknown committed
3442
	  lex->grant_tot_col|= lex->which_columns;
unknown's avatar
unknown committed
3443
	  if (point)
unknown's avatar
unknown committed
3444
	    point->rights |= lex->which_columns;
unknown's avatar
unknown committed
3445
	  else
unknown's avatar
unknown committed
3446
	    lex->columns.push_back(new LEX_COLUMN (*new_str,lex->which_columns));
unknown's avatar
unknown committed
3447 3448
	}

unknown's avatar
unknown committed
3449 3450

require_clause: /* empty */
3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462
        | REQUIRE_SYM require_list 
        {
          Lex->ssl_type=SSL_TYPE_SPECIFIED;
        }
        | REQUIRE_SYM SSL_SYM
        {
          Lex->ssl_type=SSL_TYPE_ANY;
        }
        | REQUIRE_SYM X509_SYM
        {
          Lex->ssl_type=SSL_TYPE_X509;
        }
unknown's avatar
unknown committed
3463

unknown's avatar
unknown committed
3464 3465 3466 3467 3468
grant_option:
	/* empty */ {}
	| WITH GRANT OPTION { Lex->grant |= GRANT_ACL;}

begin:
3469
	BEGIN_SYM   { Lex->sql_command = SQLCOM_BEGIN;} opt_work
unknown's avatar
unknown committed
3470 3471 3472 3473 3474 3475 3476 3477 3478 3479

opt_work:
	/* empty */ {}
	| WORK_SYM {}

commit:
	COMMIT_SYM   { Lex->sql_command = SQLCOM_COMMIT;}

rollback:
	ROLLBACK_SYM { Lex->sql_command = SQLCOM_ROLLBACK;}
3480 3481 3482 3483 3484 3485 3486 3487


/*
** UNIONS : glue selects together
*/


union:	
3488
  /* empty */ {}
3489 3490 3491
  | union_list

union_list:
unknown's avatar
unknown committed
3492
  UNION_SYM    union_option
3493 3494
  {
    LEX *lex=Lex;
unknown's avatar
unknown committed
3495 3496 3497
    if (lex->exchange)
    {
       /* Only the last SELECT can have  INTO...... */
unknown's avatar
unknown committed
3498
       net_printf(&lex->thd->net, ER_WRONG_USAGE,"UNION","INTO");
unknown's avatar
unknown committed
3499 3500
       YYABORT;
    } 
3501 3502
    if (lex->select->linkage==NOT_A_SELECT)
      YYABORT;
unknown's avatar
unknown committed
3503 3504
    mysql_new_select(lex);
    lex->select->linkage=UNION_TYPE;
3505
  } 
3506 3507 3508 3509 3510
  select

union_opt:
  union {}
  |  optional_order_or_limit {}
3511 3512 3513 3514 3515

optional_order_or_limit:
  /* emty */ {}
  |
  {
3516 3517 3518 3519 3520 3521
    LEX *lex=Lex;
    if (!lex->select->braces)
      YYABORT;
    mysql_new_select(lex);
    mysql_init_select(lex);
    lex->select->linkage=NOT_A_SELECT;
3522
  }
3523
  opt_order_clause limit_clause
unknown's avatar
unknown committed
3524 3525 3526 3527

union_option:
  /* empty */ {}
  | ALL {Lex->union_option=1;}