sql_yacc.yy 87.9 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 ha_rkey_function ha_rkey_mode;
unknown's avatar
unknown committed
60
  enum enum_tx_isolation tx_isolation;
unknown's avatar
unknown committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
  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

78 79 80 81 82 83 84
%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
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
%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
103
%token  ABORT_SYM
unknown's avatar
unknown committed
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
%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
121
%token  RESET_SYM
unknown's avatar
unknown committed
122
%token  PURGE
unknown's avatar
unknown committed
123 124 125
%token  SLAVE
%token  START_SYM
%token  STOP_SYM
126
%token	TRUNCATE_SYM
unknown's avatar
unknown committed
127 128 129 130 131 132 133
%token  ROLLBACK_SYM
%token	OPTIMIZE
%token	SHOW
%token	UPDATE_SYM
%token	KILL_SYM
%token	LOAD
%token	LOCK_SYM
unknown's avatar
unknown committed
134
%token	LOCKS_SYM
unknown's avatar
unknown committed
135
%token	UNLOCK_SYM
unknown's avatar
unknown committed
136 137
%token  BINLOG_SYM
%token  EVENTS_SYM
unknown's avatar
unknown committed
138 139 140 141 142 143 144

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

%token	BIGINT
%token	BLOB_SYM
%token	CHAR_SYM
326
%token  CHANGED
unknown's avatar
unknown committed
327 328 329 330 331 332
%token	COALESCE
%token	DATETIME
%token	DATE_SYM
%token	DECIMAL_SYM
%token	DOUBLE_SYM
%token	ENUM
333
%token	FAST_SYM
unknown's avatar
unknown committed
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
%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
354
%token	ULONGLONG_NUM
unknown's avatar
unknown committed
355
%token	UNSIGNED
356 357 358
%token	VARBINARY
%token	VARCHAR
%token	VARYING
unknown's avatar
unknown committed
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
%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
379 380
%token	DES_ENCRYPT
%token	DES_DECRYPT
unknown's avatar
unknown committed
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
%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
398
%token	INSERT_METHOD
unknown's avatar
unknown committed
399 400 401 402 403 404 405
%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
406
%token  MODE_SYM
unknown's avatar
unknown committed
407 408 409 410 411 412 413 414 415 416 417
%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
418
%token	SHARE_SYM
unknown's avatar
unknown committed
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 454
%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
455
%token  SQL_QUOTE_SHOW_CREATE
456
%token  SQL_SLAVE_SKIP_COUNTER
unknown's avatar
unknown committed
457

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

unknown's avatar
unknown committed
462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
%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
478
	ULONGLONG_NUM field_ident select_alias ident ident_or_text
unknown's avatar
unknown committed
479 480 481 482 483 484 485 486 487 488 489 490

%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
491
	text_string 
unknown's avatar
unknown committed
492 493 494 495

%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
496
	table_option opt_if_not_exists 
unknown's avatar
unknown committed
497 498

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

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

%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
508
	using_list
unknown's avatar
unknown committed
509 510

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

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

%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
535 536
%type <tx_isolation> tx_isolation isolation_types

unknown's avatar
unknown committed
537 538
%type <ha_rkey_mode> handler_rkey_mode

unknown's avatar
unknown committed
539 540 541 542 543 544 545 546
%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
547 548
	insert_values update delete truncate rename
	show describe load alter optimize flush
unknown's avatar
unknown committed
549
	reset purge begin commit rollback slave master_def master_defs
550
	repair restore backup analyze check 
551
	field_list field_list_item field_spec kill
unknown's avatar
unknown committed
552 553 554
	select_item_list select_item values_list no_braces
	limit_clause delete_limit_clause fields opt_values values
	procedure_list procedure_list2 procedure_item
555
	when_list2 expr_list2  handler
unknown's avatar
unknown committed
556 557 558 559
	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
560
	opt_delete_options opt_delete_option
561
	opt_outer table_list table_name opt_option opt_place opt_low_priority
unknown's avatar
unknown committed
562 563 564 565 566 567
	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
568
	table_to_table_list table_to_table opt_table_list opt_as
unknown's avatar
unknown committed
569
	handler_rkey_function handler_read_or_scan
unknown's avatar
unknown committed
570
	single_multi table_wild_list table_wild_one opt_wild union union_list
unknown's avatar
unknown committed
571
	precision union_option
572
END_OF_INPUT
unknown's avatar
unknown committed
573 574 575 576 577 578 579 580 581

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


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

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

/* change master */

change:
unknown's avatar
unknown committed
629
       CHANGE MASTER_SYM TO_SYM
unknown's avatar
unknown committed
630 631 632 633 634 635 636 637 638 639
        {
	  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
640

unknown's avatar
unknown committed
641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
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
662
       MASTER_PORT_SYM EQ ULONG_NUM
unknown's avatar
unknown committed
663 664 665 666
       {
	 Lex->mi.port = $3;
       }
       |
unknown's avatar
unknown committed
667
       MASTER_LOG_POS_SYM EQ ulonglong_num
unknown's avatar
unknown committed
668 669 670 671
       {
	 Lex->mi.pos = $3;
       }
       |
unknown's avatar
unknown committed
672
       MASTER_CONNECT_RETRY_SYM EQ ULONG_NUM
unknown's avatar
unknown committed
673 674 675 676
       {
	 Lex->mi.connect_retry = $3;
       }

unknown's avatar
unknown committed
677

unknown's avatar
unknown committed
678 679 680 681 682 683 684
/* 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
685
	  if (!add_table_to_list($5,
unknown's avatar
unknown committed
686
				 ($2 & HA_LEX_CREATE_TMP_TABLE ?
687
				   &tmp_table_alias : (LEX_STRING*) 0),1))
unknown's avatar
unknown committed
688 689 690 691 692 693 694 695 696 697 698
	    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

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

create2:
unknown's avatar
unknown committed
739
	'(' field_list ')' opt_create_table_options create3 {}
unknown's avatar
unknown committed
740 741 742
	| opt_create_table_options create3 {}

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

752 753 754 755
opt_as:
	/* empty */ {}
	| AS	    {}

unknown's avatar
unknown committed
756
opt_table_options:
unknown's avatar
unknown committed
757
	/* empty */	 { $$= 0; }
unknown's avatar
unknown committed
758 759 760 761 762
	| table_options  { $$= $1;}

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

unknown's avatar
unknown committed
764 765 766 767
table_option:
	TEMPORARY	{ $$=HA_LEX_CREATE_TMP_TABLE; }

opt_if_not_exists:
unknown's avatar
unknown committed
768
	/* empty */	 { $$= 0; }
unknown's avatar
unknown committed
769 770 771 772 773 774 775 776 777 778 779 780
	| 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; }
781 782 783
	| 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
784 785
	| 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
786
	| AUTO_INC EQ ulonglong_num	{ Lex->create_info.auto_increment_value=$3; Lex->create_info.used_fields|= HA_CREATE_USED_AUTO;}
787 788
	| 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
789 790
	| 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
791
	| ROW_FORMAT_SYM EQ row_types	{ Lex->create_info.row_type= $3; }
unknown's avatar
unknown committed
792 793 794
	| 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;}
795 796 797 798
	| UNION_SYM EQ '(' table_list ')'
	  {
	    /* Move the union list to the merge_list */
	    LEX *lex=Lex;
799 800
	    TABLE_LIST *table_list= (TABLE_LIST*) lex->select->table_list.first;
	    lex->create_info.merge_list= lex->select->table_list;
801 802
	    lex->create_info.merge_list.elements--;
	    lex->create_info.merge_list.first= (byte*) (table_list->next);
803 804
	    lex->select->table_list.elements=1;
	    lex->select->table_list.next= (byte**) &(table_list->next);
805
	    table_list->next=0;
806
	    lex->create_info.used_fields|= HA_CREATE_USED_UNION;
807
	  }
808
	| INSERT_METHOD EQ merge_insert_types   { Lex->create_info.merge_insert_method= $3; Lex->create_info.used_fields|= HA_CREATE_USED_INSERT_METHOD;}
809 810
	| 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
811 812 813 814 815 816 817

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; }
818
	| INNOBASE_SYM  { $$= DB_TYPE_INNODB; }
unknown's avatar
unknown committed
819 820 821 822 823 824 825 826 827 828 829 830

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

831 832 833 834 835
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
836 837
opt_select_from:
	/* empty */
838
	| select_from select_lock_type
unknown's avatar
unknown committed
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861

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
862 863 864
	    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
865
	  }
866
	| opt_constraint FOREIGN KEY_SYM opt_ident '(' key_list ')' references
unknown's avatar
unknown committed
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881
	  {
	    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
882 883 884
	   LEX *lex=Lex;
	   lex->length=lex->dec=0; lex->type=0; lex->interval=0;
	   lex->default_value=0;
unknown's avatar
unknown committed
885 886 887
	 }
	type opt_attribute
	{
unknown's avatar
unknown committed
888
	  LEX *lex=Lex;
unknown's avatar
unknown committed
889 890
	  if (add_field_to_list($1.str,
				(enum enum_field_types) $3,
unknown's avatar
unknown committed
891 892 893
				lex->length,lex->dec,lex->type,
				lex->default_value,lex->change,
				lex->interval))
unknown's avatar
unknown committed
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 942 943 944
	    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
945 946
	    LEX *lex=Lex;
	    lex->interval=typelib(lex->interval_list);
unknown's avatar
unknown committed
947 948 949 950
	    $$=FIELD_TYPE_ENUM;
	  }
	| SET { Lex->interval_list.empty();} '(' string_list ')'
	  {
unknown's avatar
unknown committed
951 952
	    LEX *lex=Lex;
	    lex->interval=typelib(lex->interval_list);
unknown's avatar
unknown committed
953 954 955 956 957 958 959
	    $$=FIELD_TYPE_SET;
	  }

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

unknown's avatar
unknown committed
961 962 963 964 965 966 967 968 969 970 971 972 973 974
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:
975
	REAL		{ $$= current_thd->sql_mode & MODE_REAL_AS_FLOAT ?
unknown's avatar
unknown committed
976 977 978 979 980 981 982 983
			      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
984 985 986 987 988 989 990 991
	| precision		{}

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

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
1011
	| precision	{}
unknown's avatar
unknown committed
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 1063 1064 1065

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; }
1066 1067
	| FULLTEXT_SYM			    { $$= Key::FULLTEXT; }
	| FULLTEXT_SYM key_or_index	    { $$= Key::FULLTEXT; }
unknown's avatar
unknown committed
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
	| 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
1078
	| INDEXES {}
unknown's avatar
unknown committed
1079

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

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;
1111
	  if (!add_table_to_list($4, NULL,1))
unknown's avatar
unknown committed
1112 1113 1114 1115 1116 1117 1118
	    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();
1119 1120 1121 1122
          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
1123 1124
    	  bzero((char*) &lex->create_info,sizeof(lex->create_info));
	  lex->create_info.db_type= DB_TYPE_DEFAULT;
1125
	  lex->create_info.row_type= ROW_TYPE_NOT_USED;
1126 1127
          lex->alter_keys_onoff=LEAVE_AS_IS;
          lex->simple_alter=1;
unknown's avatar
unknown committed
1128
	}
1129
	alter_list
unknown's avatar
unknown committed
1130
 
unknown's avatar
unknown committed
1131
alter_list:
unknown's avatar
unknown committed
1132
        | alter_list_item
unknown's avatar
unknown committed
1133 1134 1135
	| alter_list ',' alter_list_item

add_column:
1136
	ADD opt_column { Lex->change=0; }
unknown's avatar
unknown committed
1137 1138

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

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	{}
1230
	| AS		{}
unknown's avatar
unknown committed
1231 1232 1233 1234

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

unknown's avatar
unknown committed
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
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
1267 1268 1269
repair:
	REPAIR table_or_tables
	{
unknown's avatar
unknown committed
1270 1271 1272
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_REPAIR;
	   lex->check_opt.init();
unknown's avatar
unknown committed
1273 1274 1275 1276 1277 1278 1279
	}
	table_list opt_mi_check_type


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

mi_check_types:
1283 1284 1285 1286
	mi_check_type {}
	| mi_check_type mi_check_types {}

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

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

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

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

1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
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
1333 1334
	{ if (!add_table_to_list($1,NULL,1,TL_IGNORE) ||
	      !add_table_to_list($3,NULL,1,TL_IGNORE))
1335 1336 1337
	     YYABORT;
 	}

unknown's avatar
unknown committed
1338 1339 1340 1341 1342 1343
/*
** Select : retrieve data from table
*/


select:
1344 1345 1346
	SELECT_SYM select_part2  {Select->braces=false;} union
	|
	'(' SELECT_SYM 	select_part2 ')' {Select->braces=true;} union_opt
1347 1348

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

unknown's avatar
unknown committed
1356
select_into:
1357
	limit_clause {}
unknown's avatar
unknown committed
1358 1359 1360 1361 1362
	| select_from
	| opt_into select_from
	| select_from opt_into

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


select_options:
	/* empty*/
	| select_option_list

select_option_list:
	select_option_list select_option
	| select_option

select_option:
1375
	STRAIGHT_JOIN { Select->options|= SELECT_STRAIGHT_JOIN; }
unknown's avatar
unknown committed
1376
	| HIGH_PRIORITY { Lex->lock_option= TL_READ_HIGH_PRIORITY; }
1377 1378 1379 1380 1381
	| 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
1382 1383
	| ALL		{}

unknown's avatar
unknown committed
1384 1385 1386 1387 1388 1389 1390
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
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 1429 1430 1431
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
1432

unknown's avatar
unknown committed
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 1556 1557 1558
/* 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); }
1559
	| '@' '@' ident_or_text	 { if (!($$= get_system_var($3))) YYABORT; }
unknown's avatar
unknown committed
1560 1561 1562 1563 1564 1565 1566
	| 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
1567 1568
        | MATCH ident_list_arg AGAINST '(' expr ')'
          { Select->ftfunc_list.push_back((Item_func_match *)
1569
                   ($$=new Item_func_match_nl(*$2,$5))); }
unknown's avatar
unknown committed
1570 1571
        | MATCH ident_list_arg AGAINST '(' expr IN_SYM BOOLEAN_SYM MODE_SYM ')'
          { Select->ftfunc_list.push_back((Item_func_match *)
1572
                   ($$=new Item_func_match_bool(*$2,$5))); }
unknown's avatar
unknown committed
1573 1574
	| 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
1575
	  { $$= new Item_func_case(* $4, $2, $5 ) }
unknown's avatar
unknown committed
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 1615 1616 1617
	| 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); }
1618 1619 1620 1621 1622 1623
	| DES_ENCRYPT '(' expr ')'                   { $$= new Item_func_des_encrypt($3); }
	| DES_DECRYPT '(' expr ')'                   { $$= new Item_func_des_decrypt($3); }
	| DES_ENCRYPT '(' expr ',' expr ')'          { $$= new Item_func_des_encrypt($3,$5); }
	| DES_DECRYPT '(' expr ',' expr ')'          { $$= new Item_func_des_decrypt($3,$5); }
	| DES_ENCRYPT '(' expr ',' expr ',' expr ')' { $$= new Item_func_des_encrypt($3,$5,$7); }
	| DES_DECRYPT '(' expr ',' expr ',' expr ')' { $$= new Item_func_des_decrypt($3,$5,$7); }
unknown's avatar
unknown committed
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 1705 1706 1707 1708 1709 1710 1711
	| 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); }
1712 1713
	| TRUNCATE_SYM '(' expr ',' expr ')'
	  { $$= new Item_func_round($3,$5,1); }
unknown's avatar
unknown committed
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 1769 1770 1771 1772 1773 1774 1775
	| 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
1776
	| EXTRACT_SYM '(' interval FROM expr ')'
unknown's avatar
unknown committed
1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
	{ $$=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:
1808
	{ Select->in_sum_expr++ }
unknown's avatar
unknown committed
1809 1810
	expr
	{
1811
	  Select->in_sum_expr--;
unknown's avatar
unknown committed
1812 1813 1814 1815
	  $$=$2;
	}

expr_list:
1816
	{ Select->expr_list.push_front(new List<Item>); }
unknown's avatar
unknown committed
1817
	expr_list2
1818
	{ $$= Select->expr_list.pop(); }
unknown's avatar
unknown committed
1819 1820

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

unknown's avatar
unknown committed
1824 1825 1826 1827
ident_list_arg:
          ident_list          { $$= $1; }
        | '(' ident_list ')'  { $$= $2; }

unknown's avatar
unknown committed
1828
ident_list:
1829
        { Select->expr_list.push_front(new List<Item>); }
unknown's avatar
unknown committed
1830
        ident_list2
1831
        { $$= Select->expr_list.pop(); }
unknown's avatar
unknown committed
1832 1833

ident_list2:
1834 1835
        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
1836 1837 1838 1839 1840 1841 1842 1843 1844 1845

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

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

when_list:
1846
        { Select->when_list.push_front(new List<Item>) }
unknown's avatar
unknown committed
1847
	when_list2
1848
	{ $$= Select->when_list.pop(); }
unknown's avatar
unknown committed
1849 1850

when_list2:
unknown's avatar
unknown committed
1851
	expr THEN_SYM expr
unknown's avatar
unknown committed
1852
	  {
unknown's avatar
unknown committed
1853 1854 1855
	    SELECT_LEX *sel=Select;	    
	    sel->when_list.head()->push_back($1);
	    sel->when_list.head()->push_back($3);
unknown's avatar
unknown committed
1856
	}
unknown's avatar
unknown committed
1857
	| when_list2 WHEN_SYM expr THEN_SYM expr
unknown's avatar
unknown committed
1858
	  {
unknown's avatar
unknown committed
1859 1860 1861
	    SELECT_LEX *sel=Select;
	    sel->when_list.head()->push_back($3);
	    sel->when_list.head()->push_back($5);
unknown's avatar
unknown committed
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875
	  }

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
1876 1877 1878 1879 1880
	  {
	    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
1881 1882 1883
	  USING '(' using_list ')'
	  { add_join_on($4,$8); $$=$4; }
	| join_table_list LEFT opt_outer JOIN_SYM join_table ON expr
1884
	  { add_join_on($5,$7); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
unknown's avatar
unknown committed
1885
	| join_table_list LEFT opt_outer JOIN_SYM join_table
unknown's avatar
unknown committed
1886 1887 1888 1889 1890
	  {
	    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
1891
	  USING '(' using_list ')'
1892
	  { add_join_on($5,$9); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
unknown's avatar
unknown committed
1893
	| join_table_list NATURAL LEFT opt_outer JOIN_SYM join_table
1894 1895 1896 1897
	  { 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
1898 1899 1900 1901 1902
	  {
	    SELECT_LEX *sel=Select;
	    sel->db1=$1->db; sel->table1=$1->name;
	    sel->db2=$5->db; sel->table2=$5->name;
	  }
1903 1904 1905 1906
	  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
1907 1908 1909 1910 1911 1912 1913 1914 1915
	| 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
1916 1917 1918 1919
	{
	  SELECT_LEX *sel=Select;
	  sel->use_index_ptr=sel->ignore_index_ptr=0;
	}
unknown's avatar
unknown committed
1920
        table_ident opt_table_alias opt_key_definition
unknown's avatar
unknown committed
1921 1922 1923 1924 1925
	{
	  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
1926
	| '{' ident join_table LEFT OUTER JOIN_SYM join_table ON expr '}'
1927
	  { add_join_on($7,$9); $7->outer_join|=JOIN_TYPE_LEFT; $$=$7; }
unknown's avatar
unknown committed
1928 1929 1930 1931 1932 1933 1934 1935

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

opt_key_definition:
	/* empty */	{}
	| USE_SYM    key_usage_list
unknown's avatar
unknown committed
1936 1937 1938 1939 1940
          {
	    SELECT_LEX *sel=Select;
	    sel->use_index= *$2;
	    sel->use_index_ptr= &sel->use_index;
	  }
unknown's avatar
unknown committed
1941
	| IGNORE_SYM key_usage_list
unknown's avatar
unknown committed
1942 1943 1944 1945 1946
	  {
	    SELECT_LEX *sel=Select;
	    sel->ignore_index= *$2;
	    sel->ignore_index_ptr= &sel->ignore_index;
	  }
unknown's avatar
unknown committed
1947 1948

key_usage_list:
1949 1950
	key_or_index { Select->interval_list.empty() } '(' key_usage_list2 ')'
        { $$= &Select->interval_list; }
unknown's avatar
unknown committed
1951 1952 1953

key_usage_list2:
	key_usage_list2 ',' ident
1954
        { Select->interval_list.push_back(new String((const char*) $3.str,$3.length)); }
unknown's avatar
unknown committed
1955
	| ident
1956
        { Select->interval_list.push_back(new String((const char*) $1.str,$1.length)); }
unknown's avatar
unknown committed
1957
	| PRIMARY_SYM
1958
        { Select->interval_list.push_back(new String("PRIMARY",7)); }
unknown's avatar
unknown committed
1959 1960 1961

using_list:
	ident
unknown's avatar
unknown committed
1962 1963 1964
	  {
	    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
1965 1966 1967 1968
	      YYABORT;
	  }
	| using_list ',' ident
	  {
unknown's avatar
unknown committed
1969 1970
	    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
1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
	      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:
2001 2002
	/* empty */  { Select->where= 0; }
	| WHERE expr { Select->where= $2; }
unknown's avatar
unknown committed
2003 2004 2005

having_clause:
	/* empty */
2006
	| HAVING { Select->create_refs=1; } expr
unknown's avatar
unknown committed
2007 2008 2009 2010
	{
	  SELECT_LEX *sel=Select;
	  sel->having= $3; sel->create_refs=0;
	}
unknown's avatar
unknown committed
2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026

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
2027 2028 2029
	  { 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
2030 2031 2032 2033 2034

/*
** Order by statement in select
*/

2035
opt_order_clause:
unknown's avatar
unknown committed
2036
	/* empty */
2037 2038 2039
	| order_clause

order_clause:
2040
	ORDER_SYM BY { Select->sort_default=1; } order_list
unknown's avatar
unknown committed
2041 2042 2043 2044 2045 2046 2047 2048 2049

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; }
2050 2051
	| ASC  { $$ = Select->sort_default=1; }
	| DESC { $$ = Select->sort_default=0; }
unknown's avatar
unknown committed
2052 2053 2054 2055 2056


limit_clause:
	/* empty */
	{
unknown's avatar
unknown committed
2057 2058
	  SELECT_LEX *sel=Select;
	  sel->select_limit= (Lex->sql_command == SQLCOM_HA_READ) ?
unknown's avatar
unknown committed
2059
             1 : current_thd->default_select_limit;
unknown's avatar
unknown committed
2060
	  sel->offset_limit= 0L;
unknown's avatar
unknown committed
2061 2062
	}
	| LIMIT ULONG_NUM
unknown's avatar
unknown committed
2063 2064 2065 2066
	  {
	    SELECT_LEX *sel=Select;
	    sel->select_limit= $2; sel->offset_limit=0L;
	  }
unknown's avatar
unknown committed
2067
	| LIMIT ULONG_NUM ',' ULONG_NUM
unknown's avatar
unknown committed
2068 2069 2070 2071
	  {
	    SELECT_LEX *sel=Select;
	    sel->select_limit= $4; sel->offset_limit=$2;
	  }
unknown's avatar
unknown committed
2072 2073 2074 2075

delete_limit_clause:
	/* empty */
	{
2076
	  Select->select_limit= HA_POS_ERROR;
unknown's avatar
unknown committed
2077
	}
unknown's avatar
unknown committed
2078
	| LIMIT ulonglong_num
2079
	{ Select->select_limit= (ha_rows) $2; }
unknown's avatar
unknown committed
2080 2081

ULONG_NUM:
unknown's avatar
unknown committed
2082
	NUM	    { $$= strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2083
	| ULONGLONG_NUM { $$= (ulong) strtoull($1.str,NULL,10); }
unknown's avatar
unknown committed
2084
	| REAL_NUM  { $$= strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2085 2086
	| FLOAT_NUM { $$= strtoul($1.str,NULL,10); }

unknown's avatar
unknown committed
2087
ulonglong_num:
unknown's avatar
unknown committed
2088
	NUM	    { $$= (ulonglong) strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2089 2090
	| ULONGLONG_NUM { $$= strtoull($1.str,NULL,10); }
	| LONG_NUM  { $$= (ulonglong) strtoul($1.str,NULL,10); }
unknown's avatar
unknown committed
2091
	| REAL_NUM  { $$= strtoull($1.str,NULL,10); }
unknown's avatar
unknown committed
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 2137 2138 2139 2140 2141 2142 2143
	| 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:
2144
	DROP TABLE_SYM if_exists table_list opt_restrict
unknown's avatar
unknown committed
2145
	{
unknown's avatar
unknown committed
2146 2147 2148
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_DROP_TABLE;
	  lex->drop_if_exists = $3;
unknown's avatar
unknown committed
2149 2150 2151
	}
	| DROP INDEX ident ON table_ident {}
	  {
unknown's avatar
unknown committed
2152 2153 2154 2155
	     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
2156
						     $3.str));
2157
	     if (!add_table_to_list($5,NULL, 1))
unknown's avatar
unknown committed
2158 2159 2160 2161
	      YYABORT;
	  }
	| DROP DATABASE if_exists ident
	  {
unknown's avatar
unknown committed
2162 2163 2164 2165
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_DROP_DB;
	    lex->drop_if_exists=$3;
	    lex->name=$4.str;
unknown's avatar
unknown committed
2166 2167 2168
	 }
	| DROP UDF_SYM ident
	  {
unknown's avatar
unknown committed
2169 2170 2171
	    LEX *lex=Lex;
	    lex->sql_command = SQLCOM_DROP_FUNCTION;
	    lex->udf.name=$3.str;
unknown's avatar
unknown committed
2172 2173 2174 2175
	  }


table_list:
2176 2177
	table_name
	| table_list ',' table_name
unknown's avatar
unknown committed
2178

2179
table_name:
unknown's avatar
unknown committed
2180
	table_ident
2181
	{ if (!add_table_to_list($1,NULL,1)) YYABORT; }
unknown's avatar
unknown committed
2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194

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:
2195 2196 2197 2198 2199 2200 2201
	REPLACE
	{
	  LEX *lex=Lex;	
	  lex->sql_command = SQLCOM_REPLACE;
	  lex->duplicates= DUP_REPLACE;
	}
	replace_lock_option insert2 insert_field_spec
unknown's avatar
unknown committed
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217

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:
2218
	table_name
unknown's avatar
unknown committed
2219
	{
unknown's avatar
unknown committed
2220 2221 2222 2223
	  LEX *lex=Lex;
	  lex->field_list.empty();
	  lex->many_values.empty();
	  lex->insert_list=0;
unknown's avatar
unknown committed
2224 2225 2226 2227 2228 2229
	}

insert_field_spec:
	opt_field_spec insert_values {}
	| SET
	  {
unknown's avatar
unknown committed
2230 2231 2232
	    LEX *lex=Lex;
	    if (!(lex->insert_list = new List_item) ||
		lex->many_values.push_back(lex->insert_list))
unknown's avatar
unknown committed
2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252
	      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
2253
	    lex->lock_option= (using_update_log) ? TL_READ_NO_INSERT : TL_READ;
2254
	    mysql_init_select(lex);
unknown's avatar
unknown committed
2255
	  }
2256
	  select_options select_item_list select_from select_lock_type union {}
unknown's avatar
unknown committed
2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269

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
2270 2271 2272
	  LEX *lex=Lex;
	  if (lex->field_list.push_back($1) ||
	      lex->insert_list->push_back($3))
unknown's avatar
unknown committed
2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286
	    YYABORT;
	 }

equal:	EQ		{}
	| SET_VAR	{}

no_braces:
	 '('
	 {
	    if (!(Lex->insert_list = new List_item))
	      YYABORT;
	 }
	 opt_values ')'
	 {
unknown's avatar
unknown committed
2287 2288
	  LEX *lex=Lex;
	  if (lex->many_values.push_back(lex->insert_list))
unknown's avatar
unknown committed
2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310
	    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
2311
	UPDATE_SYM opt_low_priority opt_ignore table_name
2312
	{ 
unknown's avatar
unknown committed
2313 2314 2315 2316 2317
	  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;
2318
        }
unknown's avatar
unknown committed
2319 2320 2321 2322
        SET update_list 
        where_clause 
        opt_order_clause
        delete_limit_clause
unknown's avatar
unknown committed
2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342

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:
2343
	DELETE_SYM
2344
	{ 
unknown's avatar
unknown committed
2345 2346 2347 2348 2349 2350 2351 2352
	  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	{}
2353 2354

single_multi:
unknown's avatar
unknown committed
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 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394
 	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
2395 2396


2397
opt_delete_options:
unknown's avatar
unknown committed
2398
	/* empty */	{}
2399 2400 2401
	| opt_delete_option opt_delete_options {}

opt_delete_option:
2402
	QUICK		{ Select->options|= OPTION_QUICK; }
2403 2404
	| LOW_PRIORITY	{ Lex->lock_option= TL_WRITE_LOW_PRIORITY; }

2405
truncate:
unknown's avatar
unknown committed
2406
	TRUNCATE_SYM opt_table_sym table_name
2407 2408 2409
	{
	  LEX* lex = Lex;
	  lex->sql_command= SQLCOM_TRUNCATE;
unknown's avatar
unknown committed
2410 2411 2412 2413
	  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;
2414
	  lex->lock_option= current_thd->update_lock_default; }
2415

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

opt_db:
	/* empty */  { $$= 0; }
unknown's avatar
unknown committed
2518
	| from_or_in ident { $$= $2.str; }
unknown's avatar
unknown committed
2519 2520 2521 2522 2523

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

unknown's avatar
unknown committed
2524 2525 2526 2527
opt_full:
	/* empty */ { Lex->verbose=0; }
	| FULL	    { Lex->verbose=1; }

unknown's avatar
unknown committed
2528 2529 2530 2531
from_or_in:
	FROM
	| IN_SYM

unknown's avatar
unknown committed
2532 2533 2534 2535 2536 2537
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
2538
        | FROM ulonglong_num { Lex->mi.pos = $2; }
unknown's avatar
unknown committed
2539 2540


unknown's avatar
unknown committed
2541 2542 2543 2544
/* A Oracle compatible synonym for show */
describe:
	describe_command table_ident
	{
unknown's avatar
unknown committed
2545 2546 2547 2548
	  LEX *lex=Lex;
	  lex->wild=0;
	  lex->verbose=0;
	  lex->sql_command=SQLCOM_SHOW_FIELDS;
2549
	  if (!add_table_to_list($2, NULL,0))
unknown's avatar
unknown committed
2550 2551 2552
	    YYABORT;
	}
	opt_describe_column
2553
	| describe_command select { Lex->select_lex.options|= SELECT_DESCRIBE };
unknown's avatar
unknown committed
2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568


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
2569 2570 2571 2572 2573 2574
	FLUSH_SYM
	{
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_FLUSH; lex->type=0;
	}
	flush_options
unknown's avatar
unknown committed
2575 2576 2577 2578 2579 2580

flush_options:
	flush_options ',' flush_option
	| flush_option

flush_option:
2581
	table_or_tables	{ Lex->type|= REFRESH_TABLES; } opt_table_list
unknown's avatar
unknown committed
2582 2583 2584 2585 2586
	| 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
2587 2588
        | SLAVE         { Lex->type|= REFRESH_SLAVE; }
        | MASTER_SYM    { Lex->type|= REFRESH_MASTER; }
unknown's avatar
unknown committed
2589

unknown's avatar
unknown committed
2590 2591 2592
opt_table_list:
	/* empty */  {}
	| table_list {}
unknown's avatar
unknown committed
2593

unknown's avatar
unknown committed
2594
reset:
unknown's avatar
unknown committed
2595 2596 2597 2598 2599
	RESET_SYM
	{
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_RESET; lex->type=0;
	} reset_options
unknown's avatar
unknown committed
2600 2601 2602 2603 2604 2605 2606 2607
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
2608
purge:
unknown's avatar
unknown committed
2609 2610 2611 2612 2613 2614
	PURGE
	{
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_PURGE;
	  lex->type=0;
	}
unknown's avatar
unknown committed
2615 2616 2617 2618 2619
        MASTER_SYM LOGS_SYM TO_SYM TEXT_STRING
         {
	   Lex->to_log = $6.str;
         } 

unknown's avatar
unknown committed
2620 2621 2622
/* kill threads */

kill:
2623
	KILL_SYM expr
unknown's avatar
unknown committed
2624
	{
unknown's avatar
unknown committed
2625 2626 2627 2628 2629 2630 2631 2632
	  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
2633 2634 2635 2636 2637
	}

/* change database */

use:	USE_SYM ident
unknown's avatar
unknown committed
2638 2639 2640 2641
	{
	  LEX *lex=Lex;
	  lex->sql_command=SQLCOM_CHANGE_DB; lex->select->db= $2.str;
	}
unknown's avatar
unknown committed
2642 2643 2644

/* import, export of files */

2645
load:	LOAD DATA_SYM load_data_lock opt_local INFILE TEXT_STRING
unknown's avatar
unknown committed
2646
	{
unknown's avatar
unknown committed
2647 2648 2649 2650
	  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
2651
	    YYABORT;
unknown's avatar
unknown committed
2652
	  lex->field_list.empty();
unknown's avatar
unknown committed
2653 2654 2655 2656
	}
	opt_duplicate INTO TABLE_SYM table_ident opt_field_term opt_line_term
	opt_ignore_lines opt_field_spec
	{
2657
	  if (!add_table_to_list($11,NULL,1))
unknown's avatar
unknown committed
2658 2659 2660
	    YYABORT;
	}
        |
unknown's avatar
unknown committed
2661
	LOAD TABLE_SYM table_ident FROM MASTER_SYM
unknown's avatar
unknown committed
2662 2663
        {
	  Lex->sql_command = SQLCOM_LOAD_MASTER_TABLE;
2664
	  if (!add_table_to_list($3,NULL,1))
unknown's avatar
unknown committed
2665
	    YYABORT;
unknown's avatar
unknown committed
2666 2667

        }
2668 2669 2670 2671 2672
        |
	LOAD DATA_SYM FROM MASTER_SYM
        {
	  Lex->sql_command = SQLCOM_LOAD_MASTER_DATA;
        }
unknown's avatar
unknown committed
2673 2674 2675 2676 2677

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

unknown's avatar
unknown committed
2678 2679 2680 2681 2682 2683
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
2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699
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
2700 2701 2702 2703 2704
	  {
	    LEX *lex=Lex;
	    lex->exchange->enclosed= $4;
	    lex->exchange->opt_enclosed=1;
	  }
unknown's avatar
unknown committed
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 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743
	| 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
2744
	| ULONGLONG_NUM	{ $$ =	new Item_uint($1.str, $1.length); }
unknown's avatar
unknown committed
2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767
	| 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
2768
	order_ident order_dir
unknown's avatar
unknown committed
2769 2770 2771 2772 2773 2774

order_ident:
	expr { $$=$1; }

simple_ident:
	ident
unknown's avatar
unknown committed
2775 2776 2777 2778
	{
	  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
2779
	| ident '.' ident
unknown's avatar
unknown committed
2780 2781 2782 2783
	{
	  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
2784
	| '.' ident '.' ident
unknown's avatar
unknown committed
2785 2786 2787 2788
	{
	  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
2789
	| ident '.' ident '.' ident
unknown's avatar
unknown committed
2790 2791 2792 2793
	{
	  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
2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809


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
2810
	  LEX *lex;
unknown's avatar
unknown committed
2811 2812
	  $$.str=sql_strmake($1.str,$1.length);
	  $$.length=$1.length;
unknown's avatar
unknown committed
2813 2814
	  if ((lex=Lex)->next_state != STATE_END)
	    lex->next_state=STATE_OPERATOR_OR_IDENT;
unknown's avatar
unknown committed
2815 2816 2817 2818
	}

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

/* Option functions */

set:
	SET opt_option
	{
unknown's avatar
unknown committed
2976 2977 2978 2979 2980
	  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
2981 2982
	  lex->option_type=0;
	  lex->option_list.empty()
unknown's avatar
unknown committed
2983 2984 2985 2986 2987 2988 2989 2990 2991
	}
	option_value_list

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

option_value_list:
	option_value
unknown's avatar
unknown committed
2992 2993
	| GLOBAL_SYM { Lex->option_type=1; } option_value
	| LOCAL_SYM  { Lex->option_type=0; } option_value
unknown's avatar
unknown committed
2994 2995 2996 2997 2998
	| option_value_list ',' option_value

option_value:
	set_option equal NUM
	{
unknown's avatar
unknown committed
2999
	  SELECT_LEX *sel=Select;
unknown's avatar
unknown committed
3000
	  if (atoi($3.str) == 0)
unknown's avatar
unknown committed
3001
	    sel->options&= ~$1;
unknown's avatar
unknown committed
3002
	  else
unknown's avatar
unknown committed
3003
	    sel->options|= $1;
unknown's avatar
unknown committed
3004
	}
unknown's avatar
unknown committed
3005
	| set_isolation
3006 3007
	| AUTOCOMMIT equal NUM
	{
unknown's avatar
unknown committed
3008
	  SELECT_LEX *sel=Select;
3009
	  if (atoi($3.str) != 0)	/* Test NOT AUTOCOMMIT */
unknown's avatar
unknown committed
3010
	    sel->options&= ~(OPTION_NOT_AUTO_COMMIT);
3011
	  else
unknown's avatar
unknown committed
3012
	    sel->options|= OPTION_NOT_AUTO_COMMIT;
3013
	}
unknown's avatar
unknown committed
3014 3015
	| SQL_SELECT_LIMIT equal ULONG_NUM
	{
3016
	  Select->select_limit= $3;
unknown's avatar
unknown committed
3017 3018 3019
	}
	| SQL_SELECT_LIMIT equal DEFAULT
	{
3020
	  Select->select_limit= HA_POS_ERROR;
unknown's avatar
unknown committed
3021 3022 3023
	}
	| SQL_MAX_JOIN_SIZE equal ULONG_NUM
	{
unknown's avatar
unknown committed
3024 3025 3026
	  LEX *lex=Lex;
	  lex->thd->max_join_size= $3;
	  lex->select->options&= ~OPTION_BIG_SELECTS;
unknown's avatar
unknown committed
3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039
	}
	| 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
3040
	| LAST_INSERT_ID equal ulonglong_num
unknown's avatar
unknown committed
3041 3042 3043
	{
	  current_thd->insert_id($3);
	}
unknown's avatar
unknown committed
3044
	| INSERT_ID equal ulonglong_num
unknown's avatar
unknown committed
3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078
	{
	  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())
3079
	     { 
unknown's avatar
unknown committed
3080
		send_error(&current_thd->net, ER_SET_CONSTANTS_ONLY);
3081 3082 3083
	        YYABORT;
	     }
	   }
3084 3085 3086
         | SQL_SLAVE_SKIP_COUNTER equal ULONG_NUM
          {
	    pthread_mutex_lock(&LOCK_slave);
3087
	    if (slave_running)
3088 3089 3090 3091 3092
	      send_error(&current_thd->net, ER_SLAVE_MUST_STOP);
	    else
	      slave_skip_counter = $3;
	    pthread_mutex_unlock(&LOCK_slave);
          }
unknown's avatar
unknown committed
3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114
	| 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
3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130

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
3131
	SQL_BIG_TABLES	        { $$= OPTION_BIG_TABLES; }
unknown's avatar
unknown committed
3132 3133 3134 3135
	| SQL_BIG_SELECTS	{ $$= OPTION_BIG_SELECTS; }
	| SQL_LOG_OFF		{ $$= OPTION_LOG_OFF; }
	| SQL_LOG_UPDATE
           {
unknown's avatar
unknown committed
3136 3137 3138
	     $$= (opt_sql_bin_update)? 
                        OPTION_UPDATE_LOG|OPTION_BIN_LOG: 
                        OPTION_UPDATE_LOG ;
unknown's avatar
unknown committed
3139 3140 3141
	   }
	| SQL_LOG_BIN
           {
unknown's avatar
unknown committed
3142 3143 3144
	     $$= (opt_sql_bin_update)? 
                        OPTION_UPDATE_LOG|OPTION_BIN_LOG: 
                        OPTION_BIN_LOG ;
unknown's avatar
unknown committed
3145 3146 3147 3148 3149 3150
	   }
	| 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; }
3151
	| SQL_QUOTE_SHOW_CREATE { $$= OPTION_QUOTE_SHOW_CREATE; }
unknown's avatar
unknown committed
3152

unknown's avatar
unknown committed
3153 3154 3155 3156 3157 3158 3159

set_isolation:
	GLOBAL_SYM tx_isolation
	{
	  if (check_process_priv())
	    YYABORT;
	  default_tx_isolation= $2;
3160
	  default_tx_isolation_name=tx_isolation_typelib.type_names[default_tx_isolation];
unknown's avatar
unknown committed
3161 3162
        }
	| SESSION_SYM tx_isolation
unknown's avatar
unknown committed
3163
	{
unknown's avatar
unknown committed
3164 3165
	  LEX *lex=Lex;
	  lex->thd->session_tx_isolation= lex->tx_isolation= $2;
unknown's avatar
unknown committed
3166
	}
unknown's avatar
unknown committed
3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178
	| 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
3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197
/* 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
3198
	{ if (!add_table_to_list($1,$2,0,(thr_lock_type) $3)) YYABORT; }
unknown's avatar
unknown committed
3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209

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


3210
/*
unknown's avatar
unknown committed
3211
** Handler: direct access to ISAM functions
3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226
*/

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
3227
	| HANDLER_SYM table_ident READ_SYM
3228
	{
unknown's avatar
unknown committed
3229 3230 3231
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_HA_READ;
	  lex->ha_rkey_mode= HA_READ_KEY_EXACT;	/* Avoid purify warnings */
3232 3233
	  if (!add_table_to_list($2,0,0))
	    YYABORT;
unknown's avatar
unknown committed
3234
        }
unknown's avatar
unknown committed
3235
        handler_read_or_scan where_clause limit_clause { }
3236

unknown's avatar
unknown committed
3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249
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;  }
3250 3251
	| handler_rkey_mode
	{
unknown's avatar
unknown committed
3252 3253
	  LEX *lex=Lex;
	  lex->ha_read_mode = RKEY;
unknown's avatar
unknown committed
3254
	  lex->ha_rkey_mode=$1;
unknown's avatar
unknown committed
3255
	  if (!(lex->insert_list = new List_item))
3256
	    YYABORT;
unknown's avatar
unknown committed
3257
	} '(' values ')' { }
3258 3259

handler_rkey_mode:
unknown's avatar
unknown committed
3260 3261 3262 3263 3264
	  EQ     { $$=HA_READ_KEY_EXACT;   }
	| GE     { $$=HA_READ_KEY_OR_NEXT; }
	| LE     { $$=HA_READ_KEY_OR_PREV; }
	| GT_SYM { $$=HA_READ_AFTER_KEY;   }
	| LT     { $$=HA_READ_BEFORE_KEY;  }
3265

unknown's avatar
unknown committed
3266 3267 3268 3269 3270
/* GRANT / REVOKE */

revoke:
	REVOKE
	{
unknown's avatar
unknown committed
3271 3272 3273 3274 3275 3276
	  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
3277 3278 3279 3280 3281 3282
	}
	grant_privileges ON opt_table FROM user_list

grant:
	GRANT
	{
unknown's avatar
unknown committed
3283 3284 3285 3286 3287 3288
	  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;
3289 3290
	  lex->ssl_type=SSL_TYPE_NONE;
	  lex->ssl_cipher=lex->x509_subject=lex->x509_issuer=0;
unknown's avatar
unknown committed
3291 3292
	}
	grant_privileges ON opt_table TO_SYM user_list
3293
	require_clause grant_option 
unknown's avatar
unknown committed
3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326

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
3327 3328 3329 3330 3331
require_list: require_list_element AND require_list
| require_list_element 

require_list_element: SUBJECT_SYM TEXT_STRING
 {
unknown's avatar
unknown committed
3332 3333 3334 3335
   LEX *lex=Lex;
   if (lex->x509_subject)
   {
     net_printf(&lex->thd->net,ER_DUP_ARGUMENT, "SUBJECT");
3336
     YYABORT;
unknown's avatar
unknown committed
3337 3338
   }
   lex->x509_subject=$2.str;
unknown's avatar
unknown committed
3339 3340 3341
 }
 | ISSUER_SYM TEXT_STRING
 {
unknown's avatar
unknown committed
3342 3343 3344 3345
   LEX *lex=Lex;
   if (lex->x509_issuer)
   {
     net_printf(&lex->thd->net,ER_DUP_ARGUMENT, "ISSUER");
3346
     YYABORT;
unknown's avatar
unknown committed
3347 3348
   }
   lex->x509_issuer=$2.str;
unknown's avatar
unknown committed
3349
 }
unknown's avatar
unknown committed
3350
 | CIPHER_SYM TEXT_STRING
unknown's avatar
unknown committed
3351
 {
3352
   LEX *lex=Lex;
unknown's avatar
unknown committed
3353 3354 3355
   if (lex->ssl_cipher)
   {
     net_printf(&lex->thd->net,ER_DUP_ARGUMENT, "CHIPER");
3356
     YYABORT;
unknown's avatar
unknown committed
3357 3358
   }
   lex->ssl_cipher=$2.str;
unknown's avatar
unknown committed
3359 3360
 }
 
unknown's avatar
unknown committed
3361 3362 3363
opt_table:
	'*'
	  {
unknown's avatar
unknown committed
3364 3365 3366 3367 3368
	    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
3369
	    {
unknown's avatar
unknown committed
3370
	       send_error(&lex->thd->net,ER_ILLEGAL_GRANT_FOR_TABLE);
unknown's avatar
unknown committed
3371
	       YYABORT;
unknown's avatar
unknown committed
3372
	    }
unknown's avatar
unknown committed
3373 3374 3375
	  }
	| ident '.' '*'
	  {
unknown's avatar
unknown committed
3376 3377 3378 3379 3380
	    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
3381
	    {
unknown's avatar
unknown committed
3382
	      send_error(&lex->thd->net,ER_ILLEGAL_GRANT_FOR_TABLE);
unknown's avatar
unknown committed
3383 3384 3385 3386 3387
	      YYABORT;
	    }
	  }
	| '*' '.' '*'
	  {
unknown's avatar
unknown committed
3388 3389 3390 3391 3392
	    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
3393
	    {
unknown's avatar
unknown committed
3394
	      send_error(&lex->thd->net,ER_ILLEGAL_GRANT_FOR_TABLE);
unknown's avatar
unknown committed
3395 3396 3397 3398 3399
	      YYABORT;
	    }
	  }
	| table_ident
	  {
unknown's avatar
unknown committed
3400
	    LEX *lex=Lex;
3401
	    if (!add_table_to_list($1,NULL,0))
unknown's avatar
unknown committed
3402
	      YYABORT;
unknown's avatar
unknown committed
3403 3404
	    if (lex->grant == UINT_MAX)
	      lex->grant =  TABLE_ACLS & ~GRANT_ACL;
unknown's avatar
unknown committed
3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434
	  }


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
3435 3436 3437 3438 3439
	/* empty */
	{
	  LEX *lex=Lex;
	  lex->grant |= lex->which_columns;
	}
unknown's avatar
unknown committed
3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451
	| '(' 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
3452
	  LEX *lex=Lex;
unknown's avatar
unknown committed
3453 3454 3455 3456 3457
	  while ((point=iter++))
	  {
	    if (!my_strcasecmp(point->column.ptr(),new_str->ptr()))
		break;
	  }
unknown's avatar
unknown committed
3458
	  lex->grant_tot_col|= lex->which_columns;
unknown's avatar
unknown committed
3459
	  if (point)
unknown's avatar
unknown committed
3460
	    point->rights |= lex->which_columns;
unknown's avatar
unknown committed
3461
	  else
unknown's avatar
unknown committed
3462
	    lex->columns.push_back(new LEX_COLUMN (*new_str,lex->which_columns));
unknown's avatar
unknown committed
3463 3464
	}

unknown's avatar
unknown committed
3465 3466

require_clause: /* empty */
3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478
        | 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
3479

unknown's avatar
unknown committed
3480 3481 3482 3483 3484
grant_option:
	/* empty */ {}
	| WITH GRANT OPTION { Lex->grant |= GRANT_ACL;}

begin:
3485
	BEGIN_SYM   { Lex->sql_command = SQLCOM_BEGIN;} opt_work
unknown's avatar
unknown committed
3486 3487 3488 3489 3490 3491 3492 3493 3494 3495

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

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

rollback:
	ROLLBACK_SYM { Lex->sql_command = SQLCOM_ROLLBACK;}
3496 3497 3498 3499 3500 3501 3502 3503


/*
** UNIONS : glue selects together
*/


union:	
3504
  /* empty */ {}
3505 3506 3507
  | union_list

union_list:
unknown's avatar
unknown committed
3508
  UNION_SYM    union_option
3509 3510
  {
    LEX *lex=Lex;
unknown's avatar
unknown committed
3511 3512 3513
    if (lex->exchange)
    {
       /* Only the last SELECT can have  INTO...... */
unknown's avatar
unknown committed
3514
       net_printf(&lex->thd->net, ER_WRONG_USAGE,"UNION","INTO");
unknown's avatar
unknown committed
3515 3516
       YYABORT;
    } 
3517 3518
    if (lex->select->linkage==NOT_A_SELECT)
      YYABORT;
unknown's avatar
unknown committed
3519 3520
    mysql_new_select(lex);
    lex->select->linkage=UNION_TYPE;
3521
  } 
3522 3523 3524 3525 3526
  select

union_opt:
  union {}
  |  optional_order_or_limit {}
3527 3528 3529 3530 3531

optional_order_or_limit:
  /* emty */ {}
  |
  {
3532 3533 3534 3535 3536 3537
    LEX *lex=Lex;
    if (!lex->select->braces)
      YYABORT;
    mysql_new_select(lex);
    mysql_init_select(lex);
    lex->select->linkage=NOT_A_SELECT;
3538
  }
3539
  opt_order_clause limit_clause
unknown's avatar
unknown committed
3540 3541 3542 3543

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