sql_yacc.yy 203 KB
Newer Older
1
/* Copyright (C) 2000-2003 MySQL 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
/* thd is passed as an arg to yyparse(), and subsequently to yylex().
** The type will be void*, so it must be  cast to (THD*) when used.
** Use the YYTHD macro for this.
23 24
*/
#define YYPARSE_PARAM yythd
25
#define YYLEX_PARAM yythd
26 27
#define YYTHD ((THD *)yythd)

unknown's avatar
unknown committed
28 29 30
#define MYSQL_YACC
#define YYINITDEPTH 100
#define YYMAXDEPTH 3200				/* Because of 64K stack */
31
#define Lex (YYTHD->lex)
32
#define Select Lex->current_select
unknown's avatar
unknown committed
33
#include "mysql_priv.h"
unknown's avatar
unknown committed
34
#include "slave.h"
unknown's avatar
unknown committed
35
#include "lex_symbol.h"
36
#include "item_create.h"
37 38 39 40
#include "sp_head.h"
#include "sp_pcontext.h"
#include "sp_rcontext.h"
#include "sp.h"
unknown's avatar
unknown committed
41
#include <myisam.h>
42
#include <myisammrg.h>
43

44
int yylex(void *yylval, void *yythd);
unknown's avatar
unknown committed
45

46
#define yyoverflow(A,B,C,D,E,F) {ulong val= *(F); if(my_yyoverflow((B), (D), &val)) { yyerror((char*) (A)); return 2; } else { *(F)= (YYSIZE_T)val; }}
unknown's avatar
unknown committed
47

unknown's avatar
unknown committed
48 49 50 51 52
#define WARN_DEPRECATED(A,B) \
  push_warning_printf(((THD *)yythd), MYSQL_ERROR::WARN_LEVEL_WARN, \
		      ER_WARN_DEPRECATED_SYNTAX, \
		      ER(ER_WARN_DEPRECATED_SYNTAX), (A), (B)); 

53 54
/* Helper for parsing "IS [NOT] truth_value" */
inline Item *is_truth_value(Item *A, bool v1, bool v2)
unknown's avatar
unknown committed
55
{
56 57 58 59
  return new Item_func_if(create_func_ifnull(A,
	new Item_int((char *) (v2 ? "TRUE" : "FALSE"), v2, 1)),
  	new Item_int((char *) (v1 ? "TRUE" : "FALSE"), v1, 1),
	new Item_int((char *) (v1 ? "FALSE" : "TRUE"),!v1, 1));
unknown's avatar
unknown committed
60 61 62 63 64 65
}

%}
%union {
  int  num;
  ulong ulong_num;
unknown's avatar
unknown committed
66
  ulonglong ulonglong_number;
unknown's avatar
unknown committed
67 68 69 70 71 72
  LEX_STRING lex_str;
  LEX_STRING *lex_str_ptr;
  LEX_SYMBOL symbol;
  Table_ident *table;
  char *simple_string;
  Item *item;
73
  Item_num *item_num;
unknown's avatar
unknown committed
74 75
  List<Item> *item_list;
  List<String> *string_list;
unknown's avatar
unknown committed
76 77 78 79 80
  String *string;
  key_part_spec *key_part;
  TABLE_LIST *table_list;
  udf_func *udf;
  LEX_USER *lex_user;
unknown's avatar
unknown committed
81
  struct sys_var_with_base variable;
unknown's avatar
unknown committed
82
  Key::Keytype key_type;
unknown's avatar
unknown committed
83
  enum ha_key_alg key_alg;
unknown's avatar
unknown committed
84 85
  enum db_type db_type;
  enum row_type row_type;
unknown's avatar
unknown committed
86
  enum ha_rkey_function ha_rkey_mode;
unknown's avatar
unknown committed
87
  enum enum_tx_isolation tx_isolation;
88
  enum Cast_target cast_type;
unknown's avatar
unknown committed
89
  enum Item_udftype udf_type;
90
  CHARSET_INFO *charset;
unknown's avatar
unknown committed
91
  thr_lock_type lock_type;
92
  interval_type interval, interval_time_st;
93
  timestamp_type date_time_type;
unknown's avatar
unknown committed
94
  st_select_lex *select_lex;
unknown's avatar
unknown committed
95
  chooser_compare_func_creator boolfunc2creator;
96 97 98 99
  struct sp_cond_type *spcondtype;
  struct { int vars, conds, hndlrs, curs; } spblock;
  sp_name *spname;
  struct st_lex *lex;
unknown's avatar
unknown committed
100 101 102
}

%{
103
bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize);
unknown's avatar
unknown committed
104 105 106 107 108 109
%}

%pure_parser					/* We have threads */

%token	END_OF_INPUT

110 111 112 113 114 115
%token CLOSE_SYM
%token HANDLER_SYM
%token LAST_SYM
%token NEXT_SYM
%token PREV_SYM

116
%token	DIV_SYM
unknown's avatar
unknown committed
117 118
%token	EQ
%token	EQUAL_SYM
unknown's avatar
unknown committed
119
%token	SOUNDS_SYM
unknown's avatar
unknown committed
120 121 122 123 124 125
%token	GE
%token	GT_SYM
%token	LE
%token	LT
%token	NE
%token	IS
126
%token	MOD_SYM
unknown's avatar
unknown committed
127 128 129 130
%token	SHIFT_LEFT
%token	SHIFT_RIGHT
%token  SET_VAR

unknown's avatar
unknown committed
131
%token	ABORT_SYM
unknown's avatar
unknown committed
132 133
%token	ADD
%token	AFTER_SYM
unknown's avatar
unknown committed
134 135
%token	ALTER
%token	ANALYZE_SYM
unknown's avatar
unknown committed
136
%token	ANY_SYM
unknown's avatar
unknown committed
137 138 139
%token	AVG_SYM
%token	BEGIN_SYM
%token	BINLOG_SYM
140
%token  CALL_SYM
unknown's avatar
unknown committed
141
%token	CHANGE
unknown's avatar
unknown committed
142 143 144
%token	CLIENT_SYM
%token	COMMENT_SYM
%token	COMMIT_SYM
145
%token  CONSISTENT_SYM
unknown's avatar
unknown committed
146
%token	COUNT_SYM
unknown's avatar
unknown committed
147 148
%token	CREATE
%token	CROSS
149
%token  CUBE_SYM
150
%token  DEFINER_SYM
unknown's avatar
unknown committed
151
%token	DELETE_SYM
152
%token  DETERMINISTIC_SYM
153
%token	DUAL_SYM
unknown's avatar
unknown committed
154
%token	DO_SYM
unknown's avatar
unknown committed
155
%token	DROP
unknown's avatar
unknown committed
156 157
%token	EVENTS_SYM
%token	EXECUTE_SYM
158
%token	EXPANSION_SYM
unknown's avatar
unknown committed
159
%token	FLUSH_SYM
160
%token  HELP_SYM
unknown's avatar
unknown committed
161
%token	INSERT
unknown's avatar
unknown committed
162
%token	RELAY_THREAD
unknown's avatar
unknown committed
163 164
%token	KILL_SYM
%token	LOAD
unknown's avatar
unknown committed
165
%token	LOCKS_SYM
unknown's avatar
unknown committed
166 167 168 169
%token	LOCK_SYM
%token	MASTER_SYM
%token	MAX_SYM
%token	MIN_SYM
170
%token	NONE_SYM
unknown's avatar
unknown committed
171 172 173 174 175 176
%token	OPTIMIZE
%token	PURGE
%token	REPAIR
%token	REPLICATION
%token	RESET_SYM
%token	ROLLBACK_SYM
177
%token  ROLLUP_SYM
178
%token	SAVEPOINT_SYM
unknown's avatar
unknown committed
179 180 181
%token	SELECT_SYM
%token	SHOW
%token	SLAVE
182
%token  SNAPSHOT_SYM
183
%token  SQL_SYM
unknown's avatar
unknown committed
184 185 186
%token	SQL_THREAD
%token	START_SYM
%token	STD_SYM
unknown's avatar
unknown committed
187
%token  VARIANCE_SYM
unknown's avatar
unknown committed
188 189
%token	STOP_SYM
%token	SUM_SYM
unknown's avatar
unknown committed
190
%token	ADDDATE_SYM
unknown's avatar
unknown committed
191 192
%token	SUPER_SYM
%token	TRUNCATE_SYM
unknown's avatar
unknown committed
193
%token	UNLOCK_SYM
194
%token	UNTIL_SYM
unknown's avatar
unknown committed
195
%token	UPDATE_SYM
unknown's avatar
unknown committed
196 197 198

%token	ACTION
%token	AGGREGATE_SYM
199
%token	ALGORITHM_SYM
unknown's avatar
unknown committed
200
%token	ALL
unknown's avatar
unknown committed
201
%token	AND_SYM
202
%token	AND_AND_SYM
unknown's avatar
unknown committed
203 204
%token	AS
%token	ASC
205
%token	AUTO_INC
unknown's avatar
unknown committed
206
%token	AVG_ROW_LENGTH
unknown's avatar
unknown committed
207
%token	BACKUP_SYM
unknown's avatar
unknown committed
208 209
%token	BERKELEY_DB_SYM
%token	BINARY
unknown's avatar
unknown committed
210
%token  BIN_NUM
unknown's avatar
unknown committed
211 212
%token	BIT_SYM
%token	BOOL_SYM
unknown's avatar
unknown committed
213
%token	BOOLEAN_SYM
unknown's avatar
unknown committed
214
%token	BOTH
unknown's avatar
unknown committed
215
%token	BTREE_SYM
unknown's avatar
unknown committed
216
%token	BY
217
%token	BYTE_SYM
unknown's avatar
unknown committed
218
%token	CACHE_SYM
unknown's avatar
unknown committed
219
%token	CASCADE
220
%token  CASCADED
unknown's avatar
unknown committed
221
%token	CAST_SYM
unknown's avatar
unknown committed
222
%token	CHAIN_SYM
223
%token	CHARSET
unknown's avatar
unknown committed
224 225
%token	CHECKSUM_SYM
%token	CHECK_SYM
unknown's avatar
unknown committed
226
%token	COMMITTED_SYM
unknown's avatar
unknown committed
227
%token	COLLATE_SYM
unknown's avatar
unknown committed
228
%token	COLLATION_SYM
unknown's avatar
unknown committed
229 230
%token	COLUMNS
%token	COLUMN_SYM
231
%token	COMPACT_SYM
unknown's avatar
unknown committed
232
%token	CONCURRENT
233 234
%token  CONDITION_SYM
%token	CONNECTION_SYM
unknown's avatar
unknown committed
235
%token	CONSTRAINT
236 237
%token  CONTAINS_SYM
%token  CONTINUE_SYM
unknown's avatar
unknown committed
238
%token	CONVERT_SYM
239
%token  CURRENT_USER
unknown's avatar
unknown committed
240 241
%token	DATABASES
%token	DATA_SYM
unknown's avatar
unknown committed
242
%token	DECIMAL_NUM
243
%token  DECLARE_SYM
unknown's avatar
unknown committed
244 245 246 247 248
%token	DEFAULT
%token	DELAYED_SYM
%token	DELAY_KEY_WRITE_SYM
%token	DESC
%token	DESCRIBE
unknown's avatar
unknown committed
249
%token	DES_KEY_FILE
250
%token	DISABLE_SYM
unknown's avatar
unknown committed
251
%token	DISCARD
unknown's avatar
unknown committed
252
%token	DISTINCT
unknown's avatar
unknown committed
253
%token  DUPLICATE_SYM
unknown's avatar
unknown committed
254
%token	DYNAMIC_SYM
255
%token  EACH_SYM
256
%token	ENABLE_SYM
unknown's avatar
unknown committed
257 258
%token	ENCLOSED
%token	ESCAPED
unknown's avatar
unknown committed
259
%token	DIRECTORY_SYM
unknown's avatar
unknown committed
260 261
%token	ESCAPE_SYM
%token	EXISTS
262
%token  EXIT_SYM
unknown's avatar
unknown committed
263
%token	EXTENDED_SYM
264
%token	FALSE_SYM
265
%token  FETCH_SYM
unknown's avatar
unknown committed
266 267 268 269
%token	FILE_SYM
%token	FIRST_SYM
%token	FIXED_SYM
%token	FLOAT_NUM
270
%token	FORCE_SYM
unknown's avatar
unknown committed
271
%token	FOREIGN
272
%token  FOUND_SYM
unknown's avatar
unknown committed
273 274
%token	FROM
%token	FULL
unknown's avatar
unknown committed
275 276
%token	FULLTEXT_SYM
%token	GLOBAL_SYM
unknown's avatar
unknown committed
277 278 279 280 281
%token	GRANT
%token	GRANTS
%token	GREATEST_SYM
%token	GROUP
%token	HAVING
unknown's avatar
unknown committed
282
%token	HASH_SYM
unknown's avatar
unknown committed
283 284 285 286
%token	HEX_NUM
%token	HIGH_PRIORITY
%token	HOSTS_SYM
%token	IDENT
287
%token	IDENT_QUOTED
unknown's avatar
unknown committed
288
%token	IGNORE_SYM
unknown's avatar
unknown committed
289
%token	IMPORT
unknown's avatar
unknown committed
290
%token	INDEX_SYM
unknown's avatar
unknown committed
291
%token	INDEXES
unknown's avatar
unknown committed
292 293
%token	INFILE
%token	INNER_SYM
unknown's avatar
unknown committed
294
%token	INNOBASE_SYM
295
%token  INOUT_SYM
unknown's avatar
unknown committed
296 297
%token	INTO
%token	IN_SYM
298
%token  INVOKER_SYM
unknown's avatar
unknown committed
299
%token	ISOLATION
unknown's avatar
unknown committed
300 301 302 303 304
%token	JOIN_SYM
%token	KEYS
%token	KEY_SYM
%token	LEADING
%token	LEAST_SYM
unknown's avatar
unknown committed
305
%token	LEAVES
unknown's avatar
unknown committed
306
%token	LEVEL_SYM
unknown's avatar
unknown committed
307
%token	LEX_HOSTNAME
308
%token  LANGUAGE_SYM
unknown's avatar
unknown committed
309 310 311
%token	LIKE
%token	LINES
%token	LOCAL_SYM
312
%token  LOCATOR_SYM
313
%token	LOG_SYM
unknown's avatar
unknown committed
314 315 316 317
%token	LOGS_SYM
%token	LONG_NUM
%token	LONG_SYM
%token	LOW_PRIORITY
318
%token	MERGE_SYM
unknown's avatar
unknown committed
319 320 321 322 323 324 325 326
%token	MASTER_HOST_SYM
%token	MASTER_USER_SYM
%token	MASTER_LOG_FILE_SYM
%token	MASTER_LOG_POS_SYM
%token	MASTER_PASSWORD_SYM
%token	MASTER_PORT_SYM
%token	MASTER_CONNECT_RETRY_SYM
%token	MASTER_SERVER_ID_SYM
unknown's avatar
unknown committed
327 328 329 330 331 332
%token	MASTER_SSL_SYM
%token	MASTER_SSL_CA_SYM
%token	MASTER_SSL_CAPATH_SYM
%token	MASTER_SSL_CERT_SYM
%token	MASTER_SSL_CIPHER_SYM
%token	MASTER_SSL_KEY_SYM
unknown's avatar
unknown committed
333 334
%token	RELAY_LOG_FILE_SYM
%token	RELAY_LOG_POS_SYM
unknown's avatar
unknown committed
335 336
%token	MATCH
%token	MAX_ROWS
unknown's avatar
unknown committed
337 338 339
%token	MAX_CONNECTIONS_PER_HOUR
%token	MAX_QUERIES_PER_HOUR
%token	MAX_UPDATES_PER_HOUR
340
%token	MAX_USER_CONNECTIONS_SYM
341
%token	MEDIUM_SYM
unknown's avatar
unknown committed
342
%token	MIN_ROWS
unknown's avatar
unknown committed
343
%token  MUTEX_SYM
unknown's avatar
unknown committed
344
%token	NAMES_SYM
345
%token	NAME_SYM
unknown's avatar
unknown committed
346 347
%token	NATIONAL_SYM
%token	NATURAL
unknown's avatar
unknown committed
348
%token  NDBCLUSTER_SYM
unknown's avatar
unknown committed
349
%token	NEW_SYM
unknown's avatar
unknown committed
350
%token	NCHAR_SYM
unknown's avatar
unknown committed
351
%token	NCHAR_STRING
unknown's avatar
unknown committed
352
%token  NVARCHAR_SYM
353 354
%token	NOT_SYM
%token	NOT2_SYM
unknown's avatar
unknown committed
355 356 357
%token	NO_SYM
%token	NULL_SYM
%token	NUM
unknown's avatar
unknown committed
358
%token	OFFSET_SYM
unknown's avatar
unknown committed
359
%token	ON
360
%token  ONE_SHOT_SYM
361
%token	OPEN_SYM
unknown's avatar
unknown committed
362 363
%token	OPTION
%token	OPTIONALLY
unknown's avatar
unknown committed
364
%token	OR_SYM
365 366
%token	OR2_SYM
%token	OR_OR_SYM
unknown's avatar
unknown committed
367
%token	ORDER_SYM
368
%token  OUT_SYM
unknown's avatar
unknown committed
369 370
%token	OUTER
%token	OUTFILE
unknown's avatar
unknown committed
371
%token	DUMPFILE
unknown's avatar
unknown committed
372 373 374 375 376 377
%token	PACK_KEYS_SYM
%token	PARTIAL
%token	PRIMARY_SYM
%token	PRIVILEGES
%token	PROCESS
%token	PROCESSLIST_SYM
unknown's avatar
unknown committed
378
%token	QUERY_SYM
unknown's avatar
unknown committed
379
%token	RAID_0_SYM
380 381
%token	RAID_STRIPED_SYM
%token	RAID_TYPE
unknown's avatar
unknown committed
382 383 384
%token	RAID_CHUNKS
%token	RAID_CHUNKSIZE
%token	READ_SYM
385
%token	READS_SYM
386
%token	REDUNDANT_SYM
unknown's avatar
unknown committed
387 388
%token	REFERENCES
%token	REGEXP
unknown's avatar
unknown committed
389
%token	RELEASE_SYM
unknown's avatar
unknown committed
390 391
%token	RELOAD
%token	RENAME
unknown's avatar
unknown committed
392
%token	REPEATABLE_SYM
unknown's avatar
unknown committed
393
%token	REQUIRE_SYM
unknown's avatar
unknown committed
394 395
%token	RESOURCES
%token	RESTORE_SYM
unknown's avatar
unknown committed
396 397
%token	RESTRICT
%token	REVOKE
398
%token	ROUTINE_SYM
unknown's avatar
unknown committed
399 400 401
%token	ROWS_SYM
%token	ROW_FORMAT_SYM
%token	ROW_SYM
unknown's avatar
unknown committed
402
%token	RTREE_SYM
403
%token  SECURITY_SYM
unknown's avatar
unknown committed
404
%token	SET
405
%token  SEPARATOR_SYM
406
%token	SERIAL_SYM
unknown's avatar
unknown committed
407 408
%token	SERIALIZABLE_SYM
%token	SESSION_SYM
409
%token	SIMPLE_SYM
unknown's avatar
unknown committed
410
%token	SHUTDOWN
unknown's avatar
unknown committed
411
%token	SPATIAL_SYM
412 413 414 415
%token  SPECIFIC_SYM
%token  SQLEXCEPTION_SYM
%token  SQLSTATE_SYM
%token  SQLWARNING_SYM
416
%token  SSL_SYM
unknown's avatar
unknown committed
417 418
%token	STARTING
%token	STATUS_SYM
unknown's avatar
unknown committed
419
%token	STORAGE_SYM
unknown's avatar
unknown committed
420
%token	STRAIGHT_JOIN
unknown's avatar
unknown committed
421
%token	SUBJECT_SYM
unknown's avatar
unknown committed
422 423
%token	TABLES
%token	TABLE_SYM
unknown's avatar
unknown committed
424
%token	TABLESPACE
unknown's avatar
unknown committed
425
%token	TEMPORARY
426
%token	TEMPTABLE_SYM
unknown's avatar
unknown committed
427 428
%token	TERMINATED
%token	TEXT_STRING
429 430 431
%token	TO_SYM
%token	TRAILING
%token	TRANSACTION_SYM
432
%token  TRIGGER_SYM
433
%token	TRUE_SYM
434
%token	TYPE_SYM
unknown's avatar
unknown committed
435
%token  TYPES_SYM
unknown's avatar
unknown committed
436 437 438 439
%token	FUNC_ARG0
%token	FUNC_ARG1
%token	FUNC_ARG2
%token	FUNC_ARG3
440 441
%token	RETURN_SYM
%token	RETURNS_SYM
442
%token	UDF_SONAME_SYM
443 444
%token	UDF_RETURNS_SYM
%token	FUNCTION_SYM
unknown's avatar
unknown committed
445
%token	UNCOMMITTED_SYM
446
%token	UNDEFINED_SYM
447
%token	UNDERSCORE_CHARSET
448
%token  UNDO_SYM
unknown's avatar
unknown committed
449
%token	UNICODE_SYM
450 451
%token	UNION_SYM
%token	UNIQUE_SYM
452
%token	UNKNOWN_SYM
453
%token	USAGE
unknown's avatar
unknown committed
454
%token	USE_FRM
455 456
%token	USE_SYM
%token	USING
457
%token	VALUE_SYM
458
%token	VALUES
unknown's avatar
unknown committed
459
%token	VARIABLES
460
%token	VIEW_SYM
unknown's avatar
unknown committed
461 462 463
%token	WHERE
%token	WITH
%token	WRITE_SYM
464
%token  NO_WRITE_TO_BINLOG
unknown's avatar
unknown committed
465
%token	X509_SYM
unknown's avatar
unknown committed
466
%token	XOR
unknown's avatar
unknown committed
467
%token	COMPRESSED_SYM
468
%token  ROW_COUNT_SYM
unknown's avatar
unknown committed
469

unknown's avatar
unknown committed
470 471 472
%token  ERRORS
%token  WARNINGS

unknown's avatar
unknown committed
473
%token	ASCII_SYM
unknown's avatar
unknown committed
474 475 476
%token	BIGINT
%token	BLOB_SYM
%token	CHAR_SYM
unknown's avatar
unknown committed
477
%token	CHANGED
unknown's avatar
unknown committed
478 479 480 481 482 483
%token	COALESCE
%token	DATETIME
%token	DATE_SYM
%token	DECIMAL_SYM
%token	DOUBLE_SYM
%token	ENUM
484
%token	FAST_SYM
unknown's avatar
unknown committed
485
%token	FLOAT_SYM
unknown's avatar
unknown committed
486
%token  GEOMETRY_SYM
unknown's avatar
unknown committed
487 488 489 490 491 492 493 494 495
%token	INT_SYM
%token	LIMIT
%token	LONGBLOB
%token	LONGTEXT
%token	MEDIUMBLOB
%token	MEDIUMINT
%token	MEDIUMTEXT
%token	NUMERIC_SYM
%token	PRECISION
unknown's avatar
unknown committed
496 497
%token  PREPARE_SYM
%token  DEALLOCATE_SYM
unknown's avatar
unknown committed
498
%token	QUICK
unknown's avatar
unknown committed
499
%token	REAL
unknown's avatar
unknown committed
500
%token	SIGNED_SYM
unknown's avatar
unknown committed
501 502 503 504
%token	SMALLINT
%token	STRING_SYM
%token	TEXT_SYM
%token	TIMESTAMP
505 506
%token	TIMESTAMP_ADD
%token	TIMESTAMP_DIFF
unknown's avatar
unknown committed
507 508 509 510
%token	TIME_SYM
%token	TINYBLOB
%token	TINYINT
%token	TINYTEXT
unknown's avatar
unknown committed
511
%token	ULONGLONG_NUM
unknown's avatar
unknown committed
512
%token	UNSIGNED
513 514 515
%token	VARBINARY
%token	VARCHAR
%token	VARYING
unknown's avatar
unknown committed
516 517
%token	ZEROFILL

unknown's avatar
unknown committed
518
%token	ADDDATE_SYM
unknown's avatar
unknown committed
519
%token	AGAINST
unknown's avatar
unknown committed
520 521 522 523
%token	ATAN
%token	BETWEEN_SYM
%token	BIT_AND
%token	BIT_OR
524
%token  BIT_XOR
unknown's avatar
unknown committed
525 526
%token	CASE_SYM
%token	CONCAT
unknown's avatar
unknown committed
527
%token	CONCAT_WS
528
%token  CONVERT_TZ_SYM
unknown's avatar
unknown committed
529 530 531 532 533 534
%token	CURDATE
%token	CURTIME
%token	DATABASE
%token	DATE_ADD_INTERVAL
%token	DATE_SUB_INTERVAL
%token	DAY_HOUR_SYM
unknown's avatar
unknown committed
535
%token	DAY_MICROSECOND_SYM
unknown's avatar
unknown committed
536 537 538 539
%token	DAY_MINUTE_SYM
%token	DAY_SECOND_SYM
%token	DAY_SYM
%token	DECODE_SYM
unknown's avatar
unknown committed
540 541
%token	DES_ENCRYPT_SYM
%token	DES_DECRYPT_SYM
unknown's avatar
unknown committed
542 543 544
%token	ELSE
%token	ELT_FUNC
%token	ENCODE_SYM
unknown's avatar
unknown committed
545
%token	ENGINE_SYM
unknown's avatar
unknown committed
546
%token	ENGINES_SYM
unknown's avatar
unknown committed
547 548 549 550 551 552
%token	ENCRYPT
%token	EXPORT_SET
%token	EXTRACT_SYM
%token	FIELD_FUNC
%token	FORMAT_SYM
%token	FOR_SYM
553
%token  FRAC_SECOND_SYM
unknown's avatar
unknown committed
554
%token	FROM_UNIXTIME
unknown's avatar
unknown committed
555 556
%token	GEOMCOLLFROMTEXT
%token	GEOMFROMTEXT
unknown's avatar
unknown committed
557
%token	GEOMFROMWKB
unknown's avatar
unknown committed
558
%token  GEOMETRYCOLLECTION
559
%token  GROUP_CONCAT_SYM
unknown's avatar
unknown committed
560
%token	GROUP_UNIQUE_USERS
561
%token  GET_FORMAT
unknown's avatar
unknown committed
562
%token	HOUR_MICROSECOND_SYM
unknown's avatar
unknown committed
563 564 565 566 567
%token	HOUR_MINUTE_SYM
%token	HOUR_SECOND_SYM
%token	HOUR_SYM
%token	IDENTIFIED_SYM
%token	IF
568
%token	INSERT_METHOD
unknown's avatar
unknown committed
569 570 571
%token	INTERVAL_SYM
%token	LAST_INSERT_ID
%token	LEFT
unknown's avatar
unknown committed
572
%token	LINEFROMTEXT
unknown's avatar
unknown committed
573
%token  LINESTRING
unknown's avatar
unknown committed
574 575
%token	LOCATE
%token	MAKE_SET_SYM
576
%token	MASTER_POS_WAIT
unknown's avatar
unknown committed
577 578
%token  MICROSECOND_SYM
%token	MINUTE_MICROSECOND_SYM
unknown's avatar
unknown committed
579 580
%token	MINUTE_SECOND_SYM
%token	MINUTE_SYM
unknown's avatar
unknown committed
581
%token	MODE_SYM
582
%token	MODIFIES_SYM
unknown's avatar
unknown committed
583 584
%token	MODIFY_SYM
%token	MONTH_SYM
unknown's avatar
unknown committed
585 586 587
%token	MLINEFROMTEXT
%token	MPOINTFROMTEXT
%token	MPOLYFROMTEXT
unknown's avatar
unknown committed
588 589 590
%token  MULTILINESTRING
%token  MULTIPOINT
%token  MULTIPOLYGON
unknown's avatar
unknown committed
591
%token	NOW_SYM
unknown's avatar
unknown committed
592
%token	OLD_PASSWORD
unknown's avatar
unknown committed
593
%token	PASSWORD
unknown's avatar
unknown committed
594
%token	POINTFROMTEXT
595
%token	POINT_SYM
unknown's avatar
unknown committed
596
%token	POLYFROMTEXT
unknown's avatar
unknown committed
597
%token  POLYGON
unknown's avatar
unknown committed
598 599
%token	POSITION_SYM
%token	PROCEDURE
600
%token	QUARTER_SYM
unknown's avatar
unknown committed
601 602 603 604 605
%token	RAND
%token	REPLACE
%token	RIGHT
%token	ROUND
%token	SECOND_SYM
unknown's avatar
unknown committed
606
%token	SECOND_MICROSECOND_SYM
unknown's avatar
unknown committed
607
%token	SHARE_SYM
unknown's avatar
unknown committed
608
%token	SUBDATE_SYM
unknown's avatar
unknown committed
609 610 611 612 613 614
%token	SUBSTRING
%token	SUBSTRING_INDEX
%token	TRIM
%token	UNIQUE_USERS
%token	UNIX_TIMESTAMP
%token	USER
615 616 617
%token	UTC_DATE_SYM
%token	UTC_TIME_SYM
%token	UTC_TIMESTAMP_SYM
unknown's avatar
unknown committed
618 619
%token	WEEK_SYM
%token	WHEN_SYM
unknown's avatar
unknown committed
620
%token	WORK_SYM
unknown's avatar
unknown committed
621 622 623
%token	YEAR_MONTH_SYM
%token	YEAR_SYM
%token	YEARWEEK
unknown's avatar
unknown committed
624 625 626
%token	BENCHMARK_SYM
%token	END
%token	THEN_SYM
unknown's avatar
unknown committed
627

unknown's avatar
unknown committed
628 629 630 631
%token	SQL_BIG_RESULT
%token	SQL_CACHE_SYM
%token	SQL_CALC_FOUND_ROWS
%token	SQL_NO_CACHE_SYM
unknown's avatar
unknown committed
632
%token	SQL_SMALL_RESULT
unknown's avatar
unknown committed
633
%token  SQL_BUFFER_RESULT
unknown's avatar
unknown committed
634

635 636 637 638 639 640 641 642 643 644 645 646 647 648
%token  CURSOR_SYM
%token  ELSEIF_SYM
%token  ITERATE_SYM
%token  GOTO_SYM
%token  LABEL_SYM
%token  LEAVE_SYM
%token  LOOP_SYM
%token  REPEAT_SYM
%token  UNTIL_SYM
%token  WHILE_SYM
%token  ASENSITIVE_SYM
%token  INSENSITIVE_SYM
%token  SENSITIVE_SYM

unknown's avatar
unknown committed
649 650
%token  ISSUER_SYM
%token  SUBJECT_SYM
651
%token  CIPHER_SYM
unknown's avatar
unknown committed
652

653
%token  BEFORE_SYM
unknown's avatar
unknown committed
654
%left   SET_VAR
655 656
%left	OR_OR_SYM OR_SYM OR2_SYM XOR
%left	AND_SYM AND_AND_SYM
unknown's avatar
unknown committed
657 658 659 660 661 662
%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	'-' '+'
663
%left	'*' '/' '%' DIV_SYM MOD_SYM
unknown's avatar
unknown committed
664
%left   '^'
unknown's avatar
unknown committed
665
%left	NEG '~'
666
%right	NOT_SYM NOT2_SYM
unknown's avatar
unknown committed
667
%right	BINARY COLLATE_SYM
668

unknown's avatar
unknown committed
669
%type <lex_str>
unknown's avatar
unknown committed
670
        IDENT IDENT_QUOTED TEXT_STRING DECIMAL_NUM FLOAT_NUM NUM LONG_NUM HEX_NUM
671
	LEX_HOSTNAME ULONGLONG_NUM field_ident select_alias ident ident_or_text
672
        UNDERSCORE_CHARSET IDENT_sys TEXT_STRING_sys TEXT_STRING_literal
673
	NCHAR_STRING opt_component key_cache_name
unknown's avatar
unknown committed
674
        sp_opt_label BIN_NUM
unknown's avatar
unknown committed
675 676 677 678 679

%type <lex_str_ptr>
	opt_table_alias

%type <table>
680
	table_ident table_ident_nodb references
unknown's avatar
unknown committed
681 682

%type <simple_string>
683
	remember_name remember_end opt_ident opt_db text_or_password
684
	opt_constraint constraint ident_or_empty
unknown's avatar
unknown committed
685 686

%type <string>
687
	text_string opt_gconcat_separator
unknown's avatar
unknown committed
688 689

%type <num>
unknown's avatar
unknown committed
690
	type int_type real_type order_dir opt_field_spec lock_option
unknown's avatar
unknown committed
691
	udf_type if_exists opt_local opt_table_options table_options
692 693
        table_option opt_if_not_exists opt_no_write_to_binlog opt_var_type
        opt_var_ident_type delete_option opt_temporary all_or_any opt_distinct
694
        opt_ignore_leaves fulltext_options spatial_type union_option
unknown's avatar
unknown committed
695
        start_transaction_opts opt_chain opt_work_and_chain opt_release
unknown's avatar
unknown committed
696 697

%type <ulong_num>
698
	ULONG_NUM raid_types merge_insert_types
unknown's avatar
unknown committed
699

unknown's avatar
unknown committed
700 701
%type <ulonglong_number>
	ulonglong_num
unknown's avatar
unknown committed
702

unknown's avatar
unknown committed
703 704 705
%type <lock_type>
	replace_lock_option opt_low_priority insert_lock_option load_data_lock

unknown's avatar
unknown committed
706
%type <item>
unknown's avatar
unknown committed
707
	literal text_literal insert_ident order_ident
unknown's avatar
unknown committed
708
	simple_ident select_item2 expr opt_expr opt_else sum_expr in_sum_expr
709 710 711
	bool_term bool_factor bool_test bool_pri 
	predicate bit_expr bit_term bit_factor value_expr term factor
	table_wild simple_expr udf_expr
712
	using_list expr_or_default set_expr_or_default interval_expr
unknown's avatar
unknown committed
713
	param_marker singlerow_subselect singlerow_subselect_init
unknown's avatar
unknown committed
714
	exists_subselect exists_subselect_init geometry_function
715
	signed_literal now_or_signed_literal opt_escape
716 717
	sp_opt_default
	simple_ident_nospvar simple_ident_q
718 719 720

%type <item_num>
	NUM_literal
unknown's avatar
unknown committed
721 722

%type <item_list>
723 724
	expr_list udf_expr_list udf_expr_list2 when_list
	ident_list ident_list_arg
unknown's avatar
unknown committed
725 726

%type <key_type>
727
	key_type opt_unique_or_fulltext constraint_key_type
unknown's avatar
unknown committed
728

unknown's avatar
unknown committed
729 730 731
%type <key_alg>
	key_alg opt_btree_or_rtree

unknown's avatar
unknown committed
732 733 734 735 736 737 738
%type <string_list>
	key_usage_list

%type <key_part>
	key_part

%type <table_list>
739
	join_table_list  join_table
740
        table_factor table_ref
unknown's avatar
unknown committed
741

742
%type <date_time_type> date_time_type;
unknown's avatar
unknown committed
743 744
%type <interval> interval

745 746
%type <interval_time_st> interval_time_st

unknown's avatar
unknown committed
747
%type <db_type> storage_engines
unknown's avatar
unknown committed
748 749 750

%type <row_type> row_types

unknown's avatar
unknown committed
751
%type <tx_isolation> isolation_types
unknown's avatar
unknown committed
752

unknown's avatar
unknown committed
753 754
%type <ha_rkey_mode> handler_rkey_mode

755
%type <cast_type> cast_type
unknown's avatar
unknown committed
756

unknown's avatar
unknown committed
757 758 759 760 761 762
%type <udf_type> udf_func_type

%type <symbol> FUNC_ARG0 FUNC_ARG1 FUNC_ARG2 FUNC_ARG3 keyword

%type <lex_user> user grant_user

763
%type <charset>
764
	opt_collate
765 766
	charset_name
	charset_name_or_default
unknown's avatar
unknown committed
767 768
	old_or_new_charset_name
	old_or_new_charset_name_or_default
769 770
	collation_name
	collation_name_or_default
771

unknown's avatar
unknown committed
772 773
%type <variable> internal_variable_name

unknown's avatar
unknown committed
774 775
%type <select_lex> in_subselect in_subselect_init

unknown's avatar
unknown committed
776 777
%type <boolfunc2creator> comp_op

unknown's avatar
unknown committed
778
%type <NONE>
unknown's avatar
unknown committed
779
	query verb_clause create change select do drop insert replace insert2
780
	insert_values update delete truncate rename
unknown's avatar
unknown committed
781
	show describe load alter optimize keycache preload flush
unknown's avatar
unknown committed
782
	reset purge begin commit rollback savepoint release
783
	slave master_def master_defs master_file_def slave_until_opts
784
	repair restore backup analyze check start checksum
785
	field_list field_list_item field_spec kill column_def key_def
unknown's avatar
unknown committed
786
	keycache_list assign_to_keycache preload_list preload_keys
unknown's avatar
unknown committed
787
	select_item_list select_item values_list no_braces
788
	opt_limit_clause delete_limit_clause fields opt_values values
unknown's avatar
unknown committed
789
	procedure_list procedure_list2 procedure_item
790
	when_list2 expr_list2 udf_expr_list3 handler
unknown's avatar
unknown committed
791 792
	opt_precision opt_ignore opt_column opt_restrict
	grant revoke set lock unlock string_list field_options field_option
unknown's avatar
unknown committed
793
	field_opt_list opt_binary table_lock_list table_lock
794
	ref_list opt_on_delete opt_on_delete_list opt_on_delete_item use
unknown's avatar
unknown committed
795
	opt_delete_options opt_delete_option varchar nchar nvarchar
unknown's avatar
unknown committed
796
	opt_outer table_list table_name opt_option opt_place
unknown's avatar
unknown committed
797
	opt_attribute opt_attribute_list attribute column_list column_list_id
798
	opt_column_list grant_privileges opt_table grant_list grant_option
799
	object_privilege object_privilege_list user_list rename_list
800
	clear_privileges flush_options flush_option
unknown's avatar
unknown committed
801 802
	equal optional_braces opt_key_definition key_usage_list2
	opt_mi_check_type opt_to mi_check_types normal_join
803
	table_to_table_list table_to_table opt_table_list opt_as
unknown's avatar
unknown committed
804
	handler_rkey_function handler_read_or_scan
unknown's avatar
unknown committed
805
	single_multi table_wild_list table_wild_one opt_wild
806
	union_clause union_list
807
	precision subselect_start opt_and charset
808
	subselect_end select_var_list select_var_list_init help opt_len
unknown's avatar
unknown committed
809
	opt_extended_describe
810
        prepare prepare_src execute deallocate 
811 812
	statement sp_suid opt_view_list view_list or_replace algorithm
	sp_c_chistics sp_a_chistics sp_chistic sp_c_chistic
813
END_OF_INPUT
unknown's avatar
unknown committed
814

815 816 817 818 819 820 821
%type <NONE> call sp_proc_stmts sp_proc_stmts1 sp_proc_stmt
%type <num>  sp_decl_idents sp_opt_inout sp_handler_type sp_hcond_list
%type <spcondtype> sp_cond sp_hcond
%type <spblock> sp_decls sp_decl
%type <lex> sp_cursor_stmt
%type <spname> sp_name

unknown's avatar
unknown committed
822 823
%type <NONE>
	'-' '+' '*' '/' '%' '(' ')'
824
	',' '!' '{' '}' '&' '|' AND_SYM OR_SYM OR_OR_SYM BETWEEN_SYM CASE_SYM
825
	THEN_SYM WHEN_SYM DIV_SYM MOD_SYM
unknown's avatar
unknown committed
826 827 828 829 830
%%


query:
	END_OF_INPUT
unknown's avatar
unknown committed
831
	{
832
	   THD *thd= YYTHD;
833
	   if (!thd->bootstrap &&
834
	      (!(thd->lex->select_lex.options & OPTION_FOUND_COMMENT)))
835
	   {
unknown's avatar
unknown committed
836
	     my_message(ER_EMPTY_QUERY, ER(ER_EMPTY_QUERY), MYF(0));
837
	     YYABORT;
838
	   }
839 840
	   else
	   {
841
	     thd->lex->sql_command= SQLCOM_EMPTY_QUERY;
842
	   }
unknown's avatar
unknown committed
843
	}
unknown's avatar
unknown committed
844
	| verb_clause END_OF_INPUT {};
unknown's avatar
unknown committed
845 846

verb_clause:
847 848 849 850 851 852
	  statement
	| begin
	;

/* Verb clauses, except begin */
statement:
unknown's avatar
unknown committed
853 854
	  alter
	| analyze
855
	| backup
856
	| call
unknown's avatar
unknown committed
857 858
	| change
	| check
859
	| checksum
unknown's avatar
unknown committed
860 861
	| commit
	| create
862
        | deallocate
unknown's avatar
unknown committed
863 864
	| delete
	| describe
unknown's avatar
unknown committed
865
	| do
unknown's avatar
unknown committed
866
	| drop
867
        | execute
unknown's avatar
unknown committed
868
	| flush
unknown's avatar
unknown committed
869
	| grant
unknown's avatar
unknown committed
870 871
	| handler
	| help
unknown's avatar
unknown committed
872
	| insert
unknown's avatar
unknown committed
873
	| kill
unknown's avatar
unknown committed
874 875 876
	| load
	| lock
	| optimize
unknown's avatar
unknown committed
877
        | keycache
unknown's avatar
unknown committed
878
	| preload
879
        | prepare
880
	| purge
unknown's avatar
unknown committed
881
	| release
882
	| rename
unknown's avatar
unknown committed
883
	| repair
unknown's avatar
unknown committed
884
	| replace
unknown's avatar
unknown committed
885
	| reset
886
	| restore
unknown's avatar
unknown committed
887 888
	| revoke
	| rollback
889
	| savepoint
unknown's avatar
unknown committed
890 891
	| select
	| set
unknown's avatar
unknown committed
892
	| show
unknown's avatar
unknown committed
893
	| slave
unknown's avatar
unknown committed
894
	| start
895
	| truncate
unknown's avatar
unknown committed
896 897
	| unlock
	| update
unknown's avatar
unknown committed
898
	| use
unknown's avatar
unknown committed
899
        ;
900

unknown's avatar
unknown committed
901
deallocate:
902
        deallocate_or_drop PREPARE_SYM ident
unknown's avatar
unknown committed
903 904
        {
          THD *thd=YYTHD;
905
          LEX *lex= thd->lex;
unknown's avatar
unknown committed
906 907 908 909 910
          if (thd->command == COM_PREPARE)
          {
            yyerror(ER(ER_SYNTAX_ERROR));
            YYABORT;
          }
911
          lex->sql_command= SQLCOM_DEALLOCATE_PREPARE;
unknown's avatar
unknown committed
912 913 914
          lex->prepared_stmt_name= $3;
        };

915 916 917 918 919 920
deallocate_or_drop:
	DEALLOCATE_SYM |
	DROP
	;


unknown's avatar
unknown committed
921
prepare:
922
        PREPARE_SYM ident FROM prepare_src
unknown's avatar
unknown committed
923 924
        {
          THD *thd=YYTHD;
925
          LEX *lex= thd->lex;
unknown's avatar
unknown committed
926 927 928 929 930
          if (thd->command == COM_PREPARE)
          {
            yyerror(ER(ER_SYNTAX_ERROR));
            YYABORT;
          }
931
          lex->sql_command= SQLCOM_PREPARE;
unknown's avatar
unknown committed
932 933 934
          lex->prepared_stmt_name= $2;
        };

935 936 937 938 939 940
prepare_src:
        TEXT_STRING_sys
        {
          THD *thd=YYTHD;
          LEX *lex= thd->lex;
          lex->prepared_stmt_code= $1;
unknown's avatar
unknown committed
941
          lex->prepared_stmt_code_is_varref= FALSE;
942 943 944 945 946 947
        }
        | '@' ident_or_text
        {
          THD *thd=YYTHD;
          LEX *lex= thd->lex;
          lex->prepared_stmt_code= $2;
unknown's avatar
unknown committed
948
          lex->prepared_stmt_code_is_varref= TRUE;
949
        };
950

unknown's avatar
unknown committed
951 952 953 954
execute:
        EXECUTE_SYM ident
        {
          THD *thd=YYTHD;
955
          LEX *lex= thd->lex;
unknown's avatar
unknown committed
956 957 958 959 960
          if (thd->command == COM_PREPARE)
          {
            yyerror(ER(ER_SYNTAX_ERROR));
            YYABORT;
          }
961
          lex->sql_command= SQLCOM_EXECUTE;
unknown's avatar
unknown committed
962 963 964 965 966 967 968 969 970 971 972 973
          lex->prepared_stmt_name= $2;
        }
        execute_using
        {}
        ;

execute_using:
        /* nothing */
        | USING execute_var_list
        ;

execute_var_list:
974 975
        execute_var_list ',' execute_var_ident
        | execute_var_ident
unknown's avatar
unknown committed
976 977 978 979 980 981 982 983
        ;

execute_var_ident: '@' ident_or_text
        {
          LEX *lex=Lex;
          LEX_STRING *lexstr= (LEX_STRING*)sql_memdup(&$2, sizeof(LEX_STRING));
          if (!lexstr || lex->prepared_stmt_params.push_back(lexstr))
              YYABORT;
984
        }
unknown's avatar
unknown committed
985 986
        ;

unknown's avatar
unknown committed
987 988
/* help */

989
help:
990
       HELP_SYM ident_or_text
unknown's avatar
unknown committed
991
       {
992 993 994
	  LEX *lex= Lex;
	  lex->sql_command= SQLCOM_HELP;
	  lex->help_arg= $2.str;
995
       };
unknown's avatar
unknown committed
996 997 998 999

/* change master */

change:
unknown's avatar
unknown committed
1000
       CHANGE MASTER_SYM TO_SYM
unknown's avatar
unknown committed
1001 1002 1003
        {
	  LEX *lex = Lex;
	  lex->sql_command = SQLCOM_CHANGE_MASTER;
unknown's avatar
unknown committed
1004
	  bzero((char*) &lex->mi, sizeof(lex->mi));
1005 1006 1007 1008
        }
       master_defs
	{}
       ;
unknown's avatar
unknown committed
1009 1010 1011

master_defs:
       master_def
unknown's avatar
unknown committed
1012
       | master_defs ',' master_def;
unknown's avatar
unknown committed
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 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
master_def:
       MASTER_HOST_SYM EQ TEXT_STRING_sys
       {
	 Lex->mi.host = $3.str;
       }
       |
       MASTER_USER_SYM EQ TEXT_STRING_sys
       {
	 Lex->mi.user = $3.str;
       }
       |
       MASTER_PASSWORD_SYM EQ TEXT_STRING_sys
       {
	 Lex->mi.password = $3.str;
       }
       |
       MASTER_PORT_SYM EQ ULONG_NUM
       {
	 Lex->mi.port = $3;
       }
       |
       MASTER_CONNECT_RETRY_SYM EQ ULONG_NUM
       {
	 Lex->mi.connect_retry = $3;
       }
       | MASTER_SSL_SYM EQ ULONG_NUM
         {
           Lex->mi.ssl= $3 ? 
               LEX_MASTER_INFO::SSL_ENABLE : LEX_MASTER_INFO::SSL_DISABLE;
         }
       | MASTER_SSL_CA_SYM EQ TEXT_STRING_sys
         {
           Lex->mi.ssl_ca= $3.str;
         }
       | MASTER_SSL_CAPATH_SYM EQ TEXT_STRING_sys
         {
           Lex->mi.ssl_capath= $3.str;
         }
       | MASTER_SSL_CERT_SYM EQ TEXT_STRING_sys
         {
           Lex->mi.ssl_cert= $3.str;
         }
       | MASTER_SSL_CIPHER_SYM EQ TEXT_STRING_sys
         {
           Lex->mi.ssl_cipher= $3.str;
         }
       | MASTER_SSL_KEY_SYM EQ TEXT_STRING_sys
         {
           Lex->mi.ssl_key= $3.str;
	 }
       |
         master_file_def
       ;

master_file_def:
       MASTER_LOG_FILE_SYM EQ TEXT_STRING_sys
       {
	 Lex->mi.log_file_name = $3.str;
       }
       | MASTER_LOG_POS_SYM EQ ulonglong_num
         {
           Lex->mi.pos = $3;
           /* 
              If the user specified a value < BIN_LOG_HEADER_SIZE, adjust it
              instead of causing subsequent errors. 
              We need to do it in this file, because only there we know that 
              MASTER_LOG_POS has been explicitely specified. On the contrary
              in change_master() (sql_repl.cc) we cannot distinguish between 0
              (MASTER_LOG_POS explicitely specified as 0) and 0 (unspecified),
              whereas we want to distinguish (specified 0 means "read the binlog
              from 0" (4 in fact), unspecified means "don't change the position
              (keep the preceding value)").
           */
           Lex->mi.pos = max(BIN_LOG_HEADER_SIZE, Lex->mi.pos);
         }
       | RELAY_LOG_FILE_SYM EQ TEXT_STRING_sys
         {
           Lex->mi.relay_log_name = $3.str;
         }
       | RELAY_LOG_POS_SYM EQ ULONG_NUM
         {
           Lex->mi.relay_log_pos = $3;
           /* Adjust if < BIN_LOG_HEADER_SIZE (same comment as Lex->mi.pos) */
           Lex->mi.relay_log_pos = max(BIN_LOG_HEADER_SIZE, Lex->mi.relay_log_pos);
         }
       ;

/* create a table */

create:
	CREATE opt_table_options TABLE_SYM opt_if_not_exists table_ident
	{
	  THD *thd= YYTHD;
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_CREATE_TABLE;
	  if (!lex->select_lex.add_table_to_list(thd, $5, NULL,
						 TL_OPTION_UPDATING,
						 (using_update_log ?
						  TL_READ_NO_INSERT:
						  TL_READ)))
	    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= (enum db_type) lex->thd->variables.table_type;
	  lex->create_info.default_table_charset= NULL;
	  lex->name=0;
	}
	create2
	  { Lex->current_select= &Lex->select_lex; }
	| CREATE opt_unique_or_fulltext INDEX_SYM ident key_alg ON table_ident
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_CREATE_INDEX;
	    if (!lex->current_select->add_table_to_list(lex->thd, $7, NULL,
							TL_OPTION_UPDATING))
	      YYABORT;
	    lex->create_list.empty();
	    lex->key_list.empty();
	    lex->col_list.empty();
	    lex->change=NullS;
	  }
	   '(' key_list ')'
	  {
	    LEX *lex=Lex;

	    lex->key_list.push_back(new Key($2,$4.str, $5, 0, lex->col_list));
	    lex->col_list.empty();
	  }
	| CREATE DATABASE opt_if_not_exists ident
	  {
             Lex->create_info.default_table_charset= NULL;
             Lex->create_info.used_fields= 0;
          }
	  opt_create_database_options
	  {
	    LEX *lex=Lex;
	    lex->sql_command=SQLCOM_CREATE_DB;
	    lex->name=$4.str;
            lex->create_info.options=$3;
	  }
	| CREATE udf_func_type FUNCTION_SYM sp_name
	  {
	    LEX *lex=Lex;
	    lex->spname= $4;
	    lex->udf.type= $2;
	  }
	  create_function_tail
	  {}
	| CREATE PROCEDURE sp_name
	  {
	    LEX *lex= Lex;
	    sp_head *sp;

	    if (lex->sphead)
	    {
unknown's avatar
unknown committed
1173
	      my_error(ER_SP_NO_RECURSIVE_CREATE, MYF(0), "PROCEDURE");
1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
	      YYABORT;
	    }
	    /* Order is important here: new - reset - init */
	    sp= new sp_head();
	    sp->reset_thd_mem_root(YYTHD);
	    sp->init(lex);

	    sp->m_type= TYPE_ENUM_PROCEDURE;
	    lex->sphead= sp;
	    /*
	     * We have to turn of CLIENT_MULTI_QUERIES while parsing a
	     * stored procedure, otherwise yylex will chop it into pieces
	     * at each ';'.
	     */
	    sp->m_old_cmq= YYTHD->client_capabilities & CLIENT_MULTI_QUERIES;
	    YYTHD->client_capabilities &= (~CLIENT_MULTI_QUERIES);
	  }
          '('
	  {
	    LEX *lex= Lex;

	    lex->sphead->m_param_begin= lex->tok_start+1;
	  }
	  sp_pdparam_list
	  ')'
	  {
	    LEX *lex= Lex;

	    lex->sphead->m_param_end= lex->tok_start;
	    bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
	  }
	  sp_c_chistics
	  {
	    LEX *lex= Lex;

	    lex->sphead->m_chistics= &lex->sp_chistics;
	    lex->sphead->m_body_begin= lex->tok_start;
	  }
	  sp_proc_stmt
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;

	    if (sp->check_backpatch(YYTHD))
	      YYABORT;
	    sp->init_strings(YYTHD, lex, $3);
	    lex->sql_command= SQLCOM_CREATE_PROCEDURE;
	    /* Restore flag if it was cleared above */
	    if (sp->m_old_cmq)
	      YYTHD->client_capabilities |= CLIENT_MULTI_QUERIES;
	    sp->restore_thd_mem_root(YYTHD);
	  }
	| CREATE or_replace algorithm VIEW_SYM table_ident
	  {
	    THD *thd= YYTHD;
	    LEX *lex= thd->lex;
	    lex->sql_command= SQLCOM_CREATE_VIEW;
	    lex->select_lex.resolve_mode= SELECT_LEX::SELECT_MODE;
	    /* first table in list is target VIEW name */
	    if (!lex->select_lex.add_table_to_list(thd, $5, NULL, 0))
              YYABORT;
	  }
	  opt_view_list AS select_init check_option
	  {}
        | CREATE TRIGGER_SYM ident trg_action_time trg_event 
          ON table_ident FOR_SYM EACH_SYM ROW_SYM
          {
            LEX *lex= Lex;
            sp_head *sp;
           
            if (lex->sphead)
            {
unknown's avatar
unknown committed
1246
              my_error(ER_SP_NO_RECURSIVE_CREATE, MYF(0), "TRIGGER");
1247 1248
              YYABORT;
            }
1249 1250 1251

            if (!(sp= new sp_head()))
              YYABORT;
1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
            sp->reset_thd_mem_root(YYTHD);
            sp->init(lex);
            
            sp->m_type= TYPE_ENUM_TRIGGER;
            lex->sphead= sp;
            /*
              We have to turn of CLIENT_MULTI_QUERIES while parsing a
              stored procedure, otherwise yylex will chop it into pieces
              at each ';'.
            */
            sp->m_old_cmq= YYTHD->client_capabilities & CLIENT_MULTI_QUERIES;
            YYTHD->client_capabilities &= ~CLIENT_MULTI_QUERIES;
            
            bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
            lex->sphead->m_chistics= &lex->sp_chistics;
            lex->sphead->m_body_begin= lex->tok_start;
          }
          sp_proc_stmt
          {
            LEX *lex= Lex;
            sp_head *sp= lex->sphead;
            
            lex->sql_command= SQLCOM_CREATE_TRIGGER;
            sp->init_strings(YYTHD, lex, NULL);
            /* Restore flag if it was cleared above */
            if (sp->m_old_cmq)
              YYTHD->client_capabilities |= CLIENT_MULTI_QUERIES;
            sp->restore_thd_mem_root(YYTHD);

            lex->name_and_length= $3;

            /*
              We have to do it after parsing trigger body, because some of
              sp_proc_stmt alternatives are not saving/restoring LEX, so
              lex->query_tables can be wiped out.
              
              QQ: What are other consequences of this?
              
              QQ: Could we loosen lock type in certain cases ?
            */
            if (!lex->select_lex.add_table_to_list(YYTHD, $7, 
                                                   (LEX_STRING*) 0,
                                                   TL_OPTION_UPDATING,
                                                   TL_WRITE))
              YYABORT;
          }
1298 1299 1300 1301
	| CREATE USER clear_privileges grant_list
	  {
	    Lex->sql_command = SQLCOM_CREATE_USER;
          }
1302 1303
	;

1304 1305 1306 1307 1308 1309 1310
clear_privileges:
        /* Nothing */
        {
          LEX *lex=Lex;
          lex->users_list.empty();
          lex->columns.empty();
          lex->grant= lex->grant_tot_col= 0;
1311
	  lex->all_privileges= 0;
1312 1313 1314 1315 1316 1317 1318
          lex->select_lex.db= 0;
          lex->ssl_type= SSL_TYPE_NOT_SPECIFIED;
          lex->ssl_cipher= lex->x509_subject= lex->x509_issuer= 0;
          bzero((char *)&(lex->mqh),sizeof(lex->mqh));
        }
        ;

1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
sp_name:
	  IDENT_sys '.' IDENT_sys
	  {
	    $$= new sp_name($1, $3);
	    $$->init_qname(YYTHD);
	  }
	| IDENT_sys
	  {
	    $$= sp_name_current_db_new(YYTHD, $1);
	  }
	;

create_function_tail:
	  RETURNS_SYM udf_type UDF_SONAME_SYM TEXT_STRING_sys
	  {
	    LEX *lex=Lex;
	    lex->sql_command = SQLCOM_CREATE_FUNCTION;
	    lex->udf.name = lex->spname->m_name;
	    lex->udf.returns=(Item_result) $2;
	    lex->udf.dl=$4.str;
	  }
	| '('
	  {
	    LEX *lex= Lex;
	    sp_head *sp;

	    if (lex->sphead)
	    {
unknown's avatar
unknown committed
1347
	      my_error(ER_SP_NO_RECURSIVE_CREATE, MYF(0), "FUNCTION");
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 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 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
	      YYABORT;
	    }
	    /* Order is important here: new - reset - init */
	    sp= new sp_head();
	    sp->reset_thd_mem_root(YYTHD);
	    sp->init(lex);

	    sp->m_type= TYPE_ENUM_FUNCTION;
	    lex->sphead= sp;
	    /*
	     * We have to turn of CLIENT_MULTI_QUERIES while parsing a
	     * stored procedure, otherwise yylex will chop it into pieces
	     * at each ';'.
	     */
	    sp->m_old_cmq= YYTHD->client_capabilities & CLIENT_MULTI_QUERIES;
	    YYTHD->client_capabilities &= ~CLIENT_MULTI_QUERIES;
	    lex->sphead->m_param_begin= lex->tok_start+1;
	  }
          sp_fdparam_list ')'
	  {
	    LEX *lex= Lex;

	    lex->sphead->m_param_end= lex->tok_start;
	  }
	  RETURNS_SYM
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;

	    sp->m_returns_begin= lex->tok_start;
	    sp->m_returns_cs= lex->charset= NULL;
	  }
	  type
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;

	    sp->m_returns_end= lex->tok_start;
	    sp->m_returns= (enum enum_field_types)$8;
	    sp->m_returns_cs= lex->charset;
	    bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
	  }
	  sp_c_chistics
	  {
	    LEX *lex= Lex;

	    lex->sphead->m_chistics= &lex->sp_chistics;
	    lex->sphead->m_body_begin= lex->tok_start;
	  }
	  sp_proc_stmt
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;

	    if (sp->check_backpatch(YYTHD))
	      YYABORT;
	    lex->sql_command= SQLCOM_CREATE_SPFUNCTION;
	    sp->init_strings(YYTHD, lex, lex->spname);
	    /* Restore flag if it was cleared above */
	    if (sp->m_old_cmq)
	      YYTHD->client_capabilities |= CLIENT_MULTI_QUERIES;
	    sp->restore_thd_mem_root(YYTHD);
	  }
	;

sp_a_chistics:
	  /* Empty */ {}
	| sp_a_chistics sp_chistic {}
	;

sp_c_chistics:
	  /* Empty */ {}
	| sp_c_chistics sp_c_chistic {}
	;

/* Characteristics for both create and alter */
sp_chistic:
	  COMMENT_SYM TEXT_STRING_sys
	  { Lex->sp_chistics.comment= $2; }
	| LANGUAGE_SYM SQL_SYM
	  { /* Just parse it, we only have one language for now. */ }
	| NO_SYM SQL_SYM
	  { Lex->sp_chistics.daccess= SP_NO_SQL; }
	| CONTAINS_SYM SQL_SYM
	  { Lex->sp_chistics.daccess= SP_CONTAINS_SQL; }
	| READS_SYM SQL_SYM DATA_SYM
	  { Lex->sp_chistics.daccess= SP_READS_SQL_DATA; }
	| MODIFIES_SYM SQL_SYM DATA_SYM
	  { Lex->sp_chistics.daccess= SP_MODIFIES_SQL_DATA; }
	| sp_suid
	  { }
	;

/* Create characteristics */
sp_c_chistic:
	  sp_chistic            { }
	| DETERMINISTIC_SYM     { Lex->sp_chistics.detistic= TRUE; }
1445
	| not DETERMINISTIC_SYM { Lex->sp_chistics.detistic= FALSE; }
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466
	;

sp_suid:
	  SQL_SYM SECURITY_SYM DEFINER_SYM
	  {
	    Lex->sp_chistics.suid= SP_IS_SUID;
	  }
	| SQL_SYM SECURITY_SYM INVOKER_SYM
	  {
	    Lex->sp_chistics.suid= SP_IS_NOT_SUID;
	  }
	;

call:
	  CALL_SYM sp_name
	  {
	    LEX *lex = Lex;

	    lex->sql_command= SQLCOM_CALL;
	    lex->spname= $2;
	    lex->value_list.empty();
1467
	    sp_add_to_hash(&lex->spprocs, $2);
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
	  }
          '(' sp_cparam_list ')' {}
	;

/* CALL parameters */
sp_cparam_list:
	  /* Empty */
	| sp_cparams
	;

sp_cparams:
	  sp_cparams ',' expr
	  {
	    Lex->value_list.push_back($3);
	  }
	| expr
	  {
	    Lex->value_list.push_back($1);
	  }
	;

/* Stored FUNCTION parameter declaration list */
sp_fdparam_list:
	  /* Empty */
	| sp_fdparams
	;

sp_fdparams:
	  sp_fdparams ',' sp_fdparam
	| sp_fdparam
	;

sp_fdparam:
	  ident type
	  {
	    LEX *lex= Lex;
	    sp_pcontext *spc= lex->spcont;

	    if (spc->find_pvar(&$1, TRUE))
	    {
1508
	      my_error(ER_SP_DUP_PARAM, MYF(0), $1.str);
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
	      YYABORT;
	    }
	    spc->push_pvar(&$1, (enum enum_field_types)$2, sp_param_in);
	  }
	;

/* Stored PROCEDURE parameter declaration list */
sp_pdparam_list:
	  /* Empty */
	| sp_pdparams
	;

sp_pdparams:
	  sp_pdparams ',' sp_pdparam
	| sp_pdparam
	;

sp_pdparam:
	  sp_opt_inout ident type
	  {
	    LEX *lex= Lex;
	    sp_pcontext *spc= lex->spcont;

	    if (spc->find_pvar(&$2, TRUE))
	    {
1534
	      my_error(ER_SP_DUP_PARAM, MYF(0), $2.str);
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
	      YYABORT;
	    }
	    spc->push_pvar(&$2, (enum enum_field_types)$3,
			   (sp_param_mode_t)$1);
	  }
	;

sp_opt_inout:
	  /* Empty */ { $$= sp_param_in; }
	| IN_SYM      { $$= sp_param_in; }
	| OUT_SYM     { $$= sp_param_out; }
	| INOUT_SYM   { $$= sp_param_inout; }
	;

sp_proc_stmts:
	  /* Empty */ {}
	| sp_proc_stmts  { Lex->query_tables= 0; } sp_proc_stmt ';'
	;

sp_proc_stmts1:
	  sp_proc_stmt ';' {}
	| sp_proc_stmts1  { Lex->query_tables= 0; } sp_proc_stmt ';'
	;

sp_decls:
	  /* Empty */
	  {
	    $$.vars= $$.conds= $$.hndlrs= $$.curs= 0;
	  }
	| sp_decls sp_decl ';'
	  {
	    /* We check for declarations out of (standard) order this way
	       because letting the grammar rules reflect it caused tricky
	       shift/reduce conflicts with the wrong result. (And we get
	       better error handling this way.) */
	    if (($2.vars || $2.conds) && ($1.curs || $1.hndlrs))
	    { /* Variable or condition following cursor or handler */
unknown's avatar
unknown committed
1572 1573
	      my_message(ER_SP_VARCOND_AFTER_CURSHNDLR,
                         ER(ER_SP_VARCOND_AFTER_CURSHNDLR), MYF(0));
1574 1575 1576 1577
	      YYABORT;
	    }
	    if ($2.curs && $1.hndlrs)
	    { /* Cursor following handler */
unknown's avatar
unknown committed
1578 1579
	      my_message(ER_SP_CURSOR_AFTER_HANDLER,
                         ER(ER_SP_CURSOR_AFTER_HANDLER), MYF(0));
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 1618 1619 1620 1621 1622 1623 1624 1625 1626
	      YYABORT;
	    }
	    $$.vars= $1.vars + $2.vars;
	    $$.conds= $1.conds + $2.conds;
	    $$.hndlrs= $1.hndlrs + $2.hndlrs;
	    $$.curs= $1.curs + $2.curs;
	  }
	;

sp_decl:
	  DECLARE_SYM sp_decl_idents type sp_opt_default
	  {
	    LEX *lex= Lex;
	    sp_pcontext *ctx= lex->spcont;
	    uint max= ctx->context_pvars();
	    enum enum_field_types type= (enum enum_field_types)$3;
	    Item *it= $4;

	    for (uint i = max-$2 ; i < max ; i++)
	    {
	      ctx->set_type(i, type);
	      if (! it)
	        ctx->set_isset(i, FALSE);
	      else
	      {
	        sp_instr_set *in= new sp_instr_set(lex->sphead->instructions(),
	                                           ctx,
						   ctx->pvar_context2index(i),
						   it, type);

		in->tables= lex->query_tables;
		lex->query_tables= 0;
	        lex->sphead->add_instr(in);
	        ctx->set_isset(i, TRUE);
		ctx->set_default(i, it);
	      }
	    }
	    $$.vars= $2;
	    $$.conds= $$.hndlrs= $$.curs= 0;
	  }
	| DECLARE_SYM ident CONDITION_SYM FOR_SYM sp_cond
	  {
	    LEX *lex= Lex;
	    sp_pcontext *spc= lex->spcont;

	    if (spc->find_cond(&$2, TRUE))
	    {
1627
	      my_error(ER_SP_DUP_COND, MYF(0), $2.str);
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
	      YYABORT;
	    }
	    YYTHD->lex->spcont->push_cond(&$2, $5);
	    $$.vars= $$.hndlrs= $$.curs= 0;
	    $$.conds= 1;
	  }
	| DECLARE_SYM sp_handler_type HANDLER_SYM FOR_SYM
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    sp_instr_hpush_jump *i=
              new sp_instr_hpush_jump(sp->instructions(), ctx, $2,
	                              ctx->current_pvars());

	    sp->add_instr(i);
	    sp->push_backpatch(i, ctx->push_label((char *)"", 0));
	    ctx->add_handler();
	    sp->m_in_handler= TRUE;
	  }
	  sp_hcond_list sp_proc_stmt
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    sp_label_t *hlab= lex->spcont->pop_label(); /* After this hdlr */
	    sp_instr_hreturn *i;

	    if ($2 == SP_HANDLER_CONTINUE)
	    {
	      i= new sp_instr_hreturn(sp->instructions(), ctx,
	                              ctx->current_pvars());
	      sp->add_instr(i);
	    }
	    else
	    {  /* EXIT or UNDO handler, just jump to the end of the block */
	      i= new sp_instr_hreturn(sp->instructions(), ctx, 0);

	      sp->add_instr(i);
	      sp->push_backpatch(i, lex->spcont->last_label()); /* Block end */
	    }
	    lex->sphead->backpatch(hlab);
	    sp->m_in_handler= FALSE;
	    $$.vars= $$.conds= $$.curs= 0;
	    $$.hndlrs= $6;
	  }
	| DECLARE_SYM ident CURSOR_SYM FOR_SYM sp_cursor_stmt
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    uint offp;
	    sp_instr_cpush *i;

	    if (ctx->find_cursor(&$2, &offp, TRUE))
	    {
1684
	      my_error(ER_SP_DUP_CURS, MYF(0), $2.str);
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
	      delete $5;
	      YYABORT;
	    }
            i= new sp_instr_cpush(sp->instructions(), ctx, $5);
	    sp->add_instr(i);
	    ctx->push_cursor(&$2);
	    $$.vars= $$.conds= $$.hndlrs= 0;
	    $$.curs= 1;
	  }
	;

sp_cursor_stmt:
	  {
	    Lex->sphead->reset_lex(YYTHD);

	    /* We use statement here just be able to get a better
	       error message. Using 'select' works too, but will then
	       result in a generic "syntax error" if a non-select
	       statement is given. */
	  }
	  statement
	  {
	    LEX *lex= Lex;

	    if (lex->sql_command != SQLCOM_SELECT)
	    {
unknown's avatar
unknown committed
1711 1712
	      my_message(ER_SP_BAD_CURSOR_QUERY, ER(ER_SP_BAD_CURSOR_QUERY),
                         MYF(0));
1713 1714 1715 1716
	      YYABORT;
	    }
	    if (lex->result)
	    {
unknown's avatar
unknown committed
1717 1718
	      my_message(ER_SP_BAD_CURSOR_SELECT, ER(ER_SP_BAD_CURSOR_SELECT),
                         MYF(0));
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 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
	      YYABORT;
	    }
	    lex->sp_lex_in_use= TRUE;
	    $$= lex;
	    lex->sphead->restore_lex(YYTHD);
	  }
	;

sp_handler_type:
	  EXIT_SYM      { $$= SP_HANDLER_EXIT; }
	| CONTINUE_SYM  { $$= SP_HANDLER_CONTINUE; }
/*	| UNDO_SYM      { QQ No yet } */
	;

sp_hcond_list:
	  sp_hcond
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_instr_hpush_jump *i= (sp_instr_hpush_jump *)sp->last_instruction();

	    i->add_condition($1);
	    $$= 1;
	  }
	| sp_hcond_list ',' sp_hcond
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_instr_hpush_jump *i= (sp_instr_hpush_jump *)sp->last_instruction();

	    i->add_condition($3);
	    $$= $1 + 1;
	  }
	;

sp_cond:
	  ULONG_NUM
	  {			/* mysql errno */
	    $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t));
	    $$->type= sp_cond_type_t::number;
	    $$->mysqlerr= $1;
	  }
	| SQLSTATE_SYM opt_value TEXT_STRING_literal
	  {		/* SQLSTATE */
	    uint len= ($3.length < sizeof($$->sqlstate)-1 ?
                       $3.length : sizeof($$->sqlstate)-1);

	    $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t));
	    $$->type= sp_cond_type_t::state;
	    memcpy($$->sqlstate, $3.str, len);
	    $$->sqlstate[len]= '\0';
	  }
	;

opt_value:
	  /* Empty */  {}
	| VALUE_SYM    {}
	;

sp_hcond:
	  sp_cond
	  {
	    $$= $1;
	  }
	| ident			/* CONDITION name */
	  {
	    $$= Lex->spcont->find_cond(&$1);
	    if ($$ == NULL)
	    {
1788
	      my_error(ER_SP_COND_MISMATCH, MYF(0), $1.str);
1789 1790 1791 1792 1793 1794 1795 1796
	      YYABORT;
	    }
	  }
	| SQLWARNING_SYM	/* SQLSTATEs 01??? */
	  {
	    $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t));
	    $$->type= sp_cond_type_t::warning;
	  }
1797
	| not FOUND_SYM		/* SQLSTATEs 02??? */
1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
	  {
	    $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t));
	    $$->type= sp_cond_type_t::notfound;
	  }
	| SQLEXCEPTION_SYM	/* All other SQLSTATEs */
	  {
	    $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t));
	    $$->type= sp_cond_type_t::exception;
	  }
	;

sp_decl_idents:
	  ident
	  {
	    LEX *lex= Lex;
	    sp_pcontext *spc= lex->spcont;

	    if (spc->find_pvar(&$1, TRUE))
	    {
1817
	      my_error(ER_SP_DUP_VAR, MYF(0), $1.str);
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829
	      YYABORT;
	    }
	    spc->push_pvar(&$1, (enum_field_types)0, sp_param_in);
	    $$= 1;
	  }
	| sp_decl_idents ',' ident
	  {
	    LEX *lex= Lex;
	    sp_pcontext *spc= lex->spcont;

	    if (spc->find_pvar(&$3, TRUE))
	    {
1830
	      my_error(ER_SP_DUP_VAR, MYF(0), $3.str);
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
	      YYABORT;
	    }
	    spc->push_pvar(&$3, (enum_field_types)0, sp_param_in);
	    $$= $1 + 1;
	  }
	;

sp_opt_default:
	  /* Empty */ { $$ = NULL; }
        | DEFAULT expr { $$ = $2; }
	;

sp_proc_stmt:
	  {
	    LEX *lex= Lex;

	    lex->sphead->reset_lex(YYTHD);
	    lex->sphead->m_tmp_query= lex->tok_start;
	  }
	  statement
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;

	    if ((lex->sql_command == SQLCOM_SELECT && !lex->result) ||
	        sp_multi_results_command(lex->sql_command))
	    {
	      /* We maybe have one or more SELECT without INTO */
	      sp->m_multi_results= TRUE;
	    }
	    if (lex->sql_command == SQLCOM_CHANGE_DB)
	    { /* "USE db" doesn't work in a procedure */
unknown's avatar
unknown committed
1863
	      my_message(ER_SP_NO_USE, ER(ER_SP_NO_USE), MYF(0));
1864 1865 1866 1867 1868 1869 1870 1871 1872
	      YYABORT;
	    }
	    /* Don't add an instruction for empty SET statements.
	    ** (This happens if the SET only contained local variables,
	    **  which get their set instructions generated separately.)
	    */
	    if (lex->sql_command != SQLCOM_SET_OPTION ||
		! lex->var_list.is_empty())
	    {
1873 1874 1875 1876 1877 1878 1879
	      sp_instr_stmt *i=new sp_instr_stmt(sp->instructions(),
						 lex->spcont);

	      /* Extract the query statement from the tokenizer:
                 The end is either lex->tok_end or tok->ptr. */
	      if (lex->ptr - lex->tok_end > 1)
		i->m_query.length= lex->ptr - sp->m_tmp_query;
1880
	      else
1881 1882 1883 1884 1885 1886 1887
		i->m_query.length= lex->tok_end - sp->m_tmp_query;
	      i->m_query.str= strmake_root(YYTHD->mem_root,
					   (char *)sp->m_tmp_query,
					   i->m_query.length);
	      i->set_lex(lex);
	      sp->add_instr(i);
	      lex->sp_lex_in_use= TRUE;
1888 1889 1890 1891 1892 1893 1894 1895 1896
            }
	    sp->restore_lex(YYTHD);
          }
	| RETURN_SYM expr
	  {
	    LEX *lex= Lex;

	    if (lex->sphead->m_type == TYPE_ENUM_PROCEDURE)
	    {
unknown's avatar
unknown committed
1897
	      my_message(ER_SP_BADRETURN, ER(ER_SP_BADRETURN), MYF(0));
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963
	      YYABORT;
	    }
	    else
	    {
	      sp_instr_freturn *i;

	      i= new sp_instr_freturn(lex->sphead->instructions(),
				      lex->spcont,
		                      $2, lex->sphead->m_returns);
	      lex->sphead->add_instr(i);
	      lex->sphead->m_has_return= TRUE;
	    }
	  }
	| IF sp_if END IF {}
	| CASE_SYM WHEN_SYM
	  {
	    Lex->sphead->m_simple_case= FALSE;
	  }
	  sp_case END CASE_SYM {}
	| CASE_SYM expr WHEN_SYM
	  {
	    /* We "fake" this by using an anonymous variable which we
	       set to the expression. Note that all WHENs are evaluate
	       at the same frame level, so we then know that it's the
	       top-most variable in the frame. */
	    LEX *lex= Lex;
	    uint offset= lex->spcont->current_pvars();
	    sp_instr_set *i = new sp_instr_set(lex->sphead->instructions(),
					       lex->spcont,
	                                       offset, $2, MYSQL_TYPE_STRING);
	    LEX_STRING dummy;

	    dummy.str= (char *)"";
	    dummy.length= 0;
	    lex->spcont->push_pvar(&dummy, MYSQL_TYPE_STRING, sp_param_in);
	    i->tables= lex->query_tables;
	    lex->query_tables= 0;
	    lex->sphead->add_instr(i);
	    lex->sphead->m_simple_case= TRUE;
	  }
	  sp_case END CASE_SYM
	  {
	    Lex->spcont->pop_pvar();
	  }
	| sp_labeled_control
	  {}
	| { /* Unlabeled controls get a secret label. */
	    LEX *lex= Lex;

	    lex->spcont->push_label((char *)"", lex->sphead->instructions());
	  }
	  sp_unlabeled_control
	  {
	    LEX *lex= Lex;

	    lex->sphead->backpatch(lex->spcont->pop_label());
	  }
	| LEAVE_SYM IDENT
	  {
	    LEX *lex= Lex;
	    sp_head *sp = lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    sp_label_t *lab= ctx->find_label($2.str);

	    if (! lab)
	    {
1964
	      my_error(ER_SP_LILABEL_MISMATCH, MYF(0), "LEAVE", $2.str);
1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993
	      YYABORT;
	    }
	    else
	    {
	      uint ip= sp->instructions();
	      sp_instr_jump *i;
	      sp_instr_hpop *ih;
	      sp_instr_cpop *ic;

	      ih= new sp_instr_hpop(ip++, ctx, 0);
	      sp->push_backpatch(ih, lab);
	      sp->add_instr(ih);
	      ic= new sp_instr_cpop(ip++, ctx, 0);
	      sp->push_backpatch(ic, lab);
	      sp->add_instr(ic);
	      i= new sp_instr_jump(ip, ctx);
	      sp->push_backpatch(i, lab);  /* Jumping forward */
              sp->add_instr(i);
	    }
	  }
	| ITERATE_SYM IDENT
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    sp_label_t *lab= ctx->find_label($2.str);

	    if (! lab || lab->type != SP_LAB_ITER)
	    {
1994
	      my_error(ER_SP_LILABEL_MISMATCH, MYF(0), "ITERATE", $2.str);
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
	      YYABORT;
	    }
	    else
	    {
	      sp_instr_jump *i;
	      uint ip= sp->instructions();
	      uint n;

	      n= ctx->diff_handlers(lab->ctx);
	      if (n)
	        sp->add_instr(new sp_instr_hpop(ip++, ctx, n));
	      n= ctx->diff_cursors(lab->ctx);
	      if (n)
	        sp->add_instr(new sp_instr_cpop(ip++, ctx, n));
	      i= new sp_instr_jump(ip, ctx, lab->ip); /* Jump back */
              sp->add_instr(i);
	    }
	  }
	| LABEL_SYM IDENT
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    sp_label_t *lab= ctx->find_label($2.str);

	    if (lab)
	    {
2022
	      my_error(ER_SP_LABEL_REDEFINE, MYF(0), $2.str);
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
	      YYABORT;
	    }
	    else
	    {
	      lab= ctx->push_label($2.str, sp->instructions());
	      lab->type= SP_LAB_GOTO;
	      lab->ctx= ctx;
              sp->backpatch(lab);
	    }
	  }
	| GOTO_SYM IDENT
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    uint ip= lex->sphead->instructions();
	    sp_label_t *lab;
	    sp_instr_jump *i;
	    sp_instr_hpop *ih;
	    sp_instr_cpop *ic;

	    if (sp->m_in_handler)
	    {
unknown's avatar
unknown committed
2046
	      my_message(ER_SP_GOTO_IN_HNDLR, ER(ER_SP_GOTO_IN_HNDLR), MYF(0));
2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
	      YYABORT;
	    }
	    lab= ctx->find_label($2.str);
	    if (! lab)
	    {
	      lab= (sp_label_t *)YYTHD->alloc(sizeof(sp_label_t));
	      lab->name= $2.str;
	      lab->ip= 0;
	      lab->type= SP_LAB_REF;
	      lab->ctx= ctx;

	      ih= new sp_instr_hpop(ip++, ctx, 0);
	      sp->push_backpatch(ih, lab);
	      sp->add_instr(ih);
	      ic= new sp_instr_cpop(ip++, ctx, 0);
	      sp->add_instr(ic);
	      sp->push_backpatch(ic, lab);
	      i= new sp_instr_jump(ip, ctx);
	      sp->push_backpatch(i, lab);  /* Jumping forward */
	      sp->add_instr(i);
	    }
	    else
	    {
	      uint n;

	      n= ctx->diff_handlers(lab->ctx);
	      if (n)
	      {
	        ih= new sp_instr_hpop(ip++, ctx, n);
	        sp->add_instr(ih);
	      }
	      n= ctx->diff_cursors(lab->ctx);
	      if (n)
	      {
	        ic= new sp_instr_cpop(ip++, ctx, n);
	        sp->add_instr(ic);
	      }
	      i= new sp_instr_jump(ip, ctx, lab->ip); /* Jump back */
	      sp->add_instr(i);
	    }
	  }
	| OPEN_SYM ident
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    uint offset;
	    sp_instr_copen *i;

	    if (! lex->spcont->find_cursor(&$2, &offset))
	    {
2097
	      my_error(ER_SP_CURSOR_MISMATCH, MYF(0), $2.str);
2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
	      YYABORT;
	    }
	    i= new sp_instr_copen(sp->instructions(), lex->spcont, offset);
	    sp->add_instr(i);
	  }
	| FETCH_SYM sp_opt_fetch_noise ident INTO
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    uint offset;
	    sp_instr_cfetch *i;

	    if (! lex->spcont->find_cursor(&$3, &offset))
	    {
2112
	      my_error(ER_SP_CURSOR_MISMATCH, MYF(0), $3.str);
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
	      YYABORT;
	    }
	    i= new sp_instr_cfetch(sp->instructions(), lex->spcont, offset);
	    sp->add_instr(i);
	  }
	  sp_fetch_list
	  { }
	| CLOSE_SYM ident
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    uint offset;
	    sp_instr_cclose *i;

	    if (! lex->spcont->find_cursor(&$2, &offset))
	    {
2129
	      my_error(ER_SP_CURSOR_MISMATCH, MYF(0), $2.str);
2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152
	      YYABORT;
	    }
	    i= new sp_instr_cclose(sp->instructions(), lex->spcont,  offset);
	    sp->add_instr(i);
	  }
	;

sp_opt_fetch_noise:
	  /* Empty */
	| NEXT_SYM FROM
	| FROM
	;

sp_fetch_list:
	  ident
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *spc= lex->spcont;
	    sp_pvar_t *spv;

	    if (!spc || !(spv = spc->find_pvar(&$1)))
	    {
2153
	      my_error(ER_SP_UNDECLARED_VAR, MYF(0), $1.str);
2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174
	      YYABORT;
	    }
	    else
	    {
	      /* An SP local variable */
	      sp_instr_cfetch *i= (sp_instr_cfetch *)sp->last_instruction();

	      i->add_to_varlist(spv);
	      spv->isset= TRUE;
	    }
	  }
	|
	  sp_fetch_list ',' ident
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *spc= lex->spcont;
	    sp_pvar_t *spv;

	    if (!spc || !(spv = spc->find_pvar(&$3)))
	    {
2175
	      my_error(ER_SP_UNDECLARED_VAR, MYF(0), $3.str);
2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274
	      YYABORT;
	    }
	    else
	    {
	      /* An SP local variable */
	      sp_instr_cfetch *i= (sp_instr_cfetch *)sp->last_instruction();

	      i->add_to_varlist(spv);
	      spv->isset= TRUE;
	    }
	  }
	;

sp_if:
	  expr THEN_SYM
	  {
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;
	    uint ip= sp->instructions();
	    sp_instr_jump_if_not *i = new sp_instr_jump_if_not(ip, ctx, $1);

	    i->tables= lex->query_tables;
	    lex->query_tables= 0;
	    sp->push_backpatch(i, ctx->push_label((char *)"", 0));
            sp->add_instr(i);
	  }
	  sp_proc_stmts1
	  {
	    sp_head *sp= Lex->sphead;
	    sp_pcontext *ctx= Lex->spcont;
	    uint ip= sp->instructions();
	    sp_instr_jump *i = new sp_instr_jump(ip, ctx);

	    sp->add_instr(i);
	    sp->backpatch(ctx->pop_label());
	    sp->push_backpatch(i, ctx->push_label((char *)"", 0));
	  }
	  sp_elseifs
	  {
	    LEX *lex= Lex;

	    lex->sphead->backpatch(lex->spcont->pop_label());
	  }
	;

sp_elseifs:
	  /* Empty */
	| ELSEIF_SYM sp_if
	| ELSE sp_proc_stmts1
	;

sp_case:
	  expr THEN_SYM
	  {
            LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= Lex->spcont;
	    uint ip= sp->instructions();
	    sp_instr_jump_if_not *i;

	    if (! sp->m_simple_case)
	      i= new sp_instr_jump_if_not(ip, ctx, $1);
	    else
	    { /* Simple case: <caseval> = <whenval> */
	      LEX_STRING ivar;

	      ivar.str= (char *)"_tmp_";
	      ivar.length= 5;
	      Item *var= (Item*) new Item_splocal(ivar, 
						  ctx->current_pvars()-1);
	      Item *expr= new Item_func_eq(var, $1);

	      i= new sp_instr_jump_if_not(ip, ctx, expr);
              lex->variables_used= 1;
	    }
	    sp->push_backpatch(i, ctx->push_label((char *)"", 0));
	    i->tables= lex->query_tables;
	    lex->query_tables= 0;
            sp->add_instr(i);
	  }
	  sp_proc_stmts1
	  {
	    sp_head *sp= Lex->sphead;
	    sp_pcontext *ctx= Lex->spcont;
	    uint ip= sp->instructions();
	    sp_instr_jump *i = new sp_instr_jump(ip, ctx);

	    sp->add_instr(i);
	    sp->backpatch(ctx->pop_label());
	    sp->push_backpatch(i, ctx->push_label((char *)"", 0));
	  }
	  sp_whens
	  {
	    LEX *lex= Lex;

	    lex->sphead->backpatch(lex->spcont->pop_label());
	  }
	;
unknown's avatar
unknown committed
2275

2276 2277 2278 2279 2280 2281 2282
sp_whens:
	  /* Empty */
	  {
	    sp_head *sp= Lex->sphead;
	    uint ip= sp->instructions();
	    sp_instr_error *i= new sp_instr_error(ip, Lex->spcont,
						  ER_SP_CASE_NOT_FOUND);
unknown's avatar
unknown committed
2283

2284 2285 2286 2287 2288
	    sp->add_instr(i);
	  }
	| ELSE sp_proc_stmts1 {}
	| WHEN_SYM sp_case {}
	;
unknown's avatar
unknown committed
2289

2290 2291
sp_labeled_control:
	  IDENT ':'
unknown's avatar
unknown committed
2292
	  {
2293 2294 2295 2296 2297 2298
	    LEX *lex= Lex;
	    sp_pcontext *ctx= lex->spcont;
	    sp_label_t *lab= ctx->find_label($1.str);

	    if (lab)
	    {
2299
	      my_error(ER_SP_LABEL_REDEFINE, MYF(0), $1.str);
unknown's avatar
unknown committed
2300
	      YYABORT;
2301 2302 2303 2304 2305 2306 2307
	    }
	    else
	    {
	      lab= lex->spcont->push_label($1.str,
	                                   lex->sphead->instructions());
	      lab->type= SP_LAB_ITER;
	    }
unknown's avatar
unknown committed
2308
	  }
2309
	  sp_unlabeled_control sp_opt_label
unknown's avatar
unknown committed
2310
	  {
2311
	    LEX *lex= Lex;
unknown's avatar
unknown committed
2312

2313 2314 2315 2316 2317 2318 2319
	    if ($5.str)
	    {
	      sp_label_t *lab= lex->spcont->find_label($5.str);

	      if (!lab ||
	          my_strcasecmp(system_charset_info, $5.str, lab->name) != 0)
	      {
2320
	        my_error(ER_SP_LABEL_MISMATCH, MYF(0), $5.str);
2321 2322 2323 2324
	        YYABORT;
	      }
	    }
	    lex->sphead->backpatch(lex->spcont->pop_label());
unknown's avatar
unknown committed
2325
	  }
2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348
	;

sp_opt_label:
	  /* Empty  */
	  { $$.str= NULL; $$.length= 0; }
	| IDENT
	  { $$= $1; }
	;

sp_unlabeled_control:
	  BEGIN_SYM
	  { /* QQ This is just a dummy for grouping declarations and statements
	       together. No [[NOT] ATOMIC] yet, and we need to figure out how
	       make it coexist with the existing BEGIN COMMIT/ROLLBACK. */
	    LEX *lex= Lex;
	    sp_label_t *lab= lex->spcont->last_label();

	    lab->type= SP_LAB_BEGIN;
	    lex->spcont= lex->spcont->push_context();
	  }
	  sp_decls
	  sp_proc_stmts
	  END
2349
	  {
2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    sp_pcontext *ctx= lex->spcont;

  	    sp->backpatch(ctx->last_label());	/* We always have a label */
	    if ($3.hndlrs)
	      sp->add_instr(new sp_instr_hpop(sp->instructions(), ctx,
					      $3.hndlrs));
	    if ($3.curs)
	      sp->add_instr(new sp_instr_cpop(sp->instructions(), ctx,
					      $3.curs));
	    lex->spcont= ctx->pop_context();
	  }
	| LOOP_SYM
	  sp_proc_stmts1 END LOOP_SYM
unknown's avatar
unknown committed
2365
	  {
2366 2367 2368 2369 2370 2371
	    LEX *lex= Lex;
	    uint ip= lex->sphead->instructions();
	    sp_label_t *lab= lex->spcont->last_label();  /* Jumping back */
	    sp_instr_jump *i = new sp_instr_jump(ip, lex->spcont, lab->ip);

	    lex->sphead->add_instr(i);
unknown's avatar
unknown committed
2372
	  }
2373
	| WHILE_SYM expr DO_SYM
unknown's avatar
unknown committed
2374
	  {
2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385
	    LEX *lex= Lex;
	    sp_head *sp= lex->sphead;
	    uint ip= sp->instructions();
	    sp_instr_jump_if_not *i = new sp_instr_jump_if_not(ip, lex->spcont,
							       $2);

	    /* Jumping forward */
	    sp->push_backpatch(i, lex->spcont->last_label());
	    i->tables= lex->query_tables;
	    lex->query_tables= 0;
            sp->add_instr(i);
unknown's avatar
unknown committed
2386
	  }
2387
	  sp_proc_stmts1 END WHILE_SYM
unknown's avatar
unknown committed
2388
	  {
2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
	    LEX *lex= Lex;
	    uint ip= lex->sphead->instructions();
	    sp_label_t *lab= lex->spcont->last_label();  /* Jumping back */
	    sp_instr_jump *i = new sp_instr_jump(ip, lex->spcont, lab->ip);

	    lex->sphead->add_instr(i);
	  }
	| REPEAT_SYM sp_proc_stmts1 UNTIL_SYM expr END REPEAT_SYM
	  {
	    LEX *lex= Lex;
	    uint ip= lex->sphead->instructions();
	    sp_label_t *lab= lex->spcont->last_label();  /* Jumping back */
	    sp_instr_jump_if_not *i = new sp_instr_jump_if_not(ip, lex->spcont,
							       $4, lab->ip);

	    i->tables= lex->query_tables;
	    lex->query_tables= 0;
            lex->sphead->add_instr(i);
2407
	  }
2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423
	;

trg_action_time:
            BEFORE_SYM 
            { Lex->trg_chistics.action_time= TRG_ACTION_BEFORE; }
          | AFTER_SYM 
            { Lex->trg_chistics.action_time= TRG_ACTION_AFTER; }
          ;

trg_event:
            INSERT 
            { Lex->trg_chistics.event= TRG_EVENT_INSERT; }
          | UPDATE_SYM
            { Lex->trg_chistics.event= TRG_EVENT_UPDATE; }
          | DELETE_SYM
            { Lex->trg_chistics.event= TRG_EVENT_DELETE; }
2424
          ;
unknown's avatar
unknown committed
2425 2426

create2:
unknown's avatar
unknown committed
2427 2428 2429 2430 2431 2432
        '(' create2a {}
        | opt_create_table_options create3 {}
        | LIKE table_ident
          {
            LEX *lex=Lex;
            if (!(lex->name= (char *)$2))
unknown's avatar
unknown committed
2433
              YYABORT;
unknown's avatar
unknown committed
2434 2435 2436 2437 2438
          }
        | '(' LIKE table_ident ')'
          {
            LEX *lex=Lex;
            if (!(lex->name= (char *)$3))
2439
              YYABORT;
unknown's avatar
unknown committed
2440
          }
unknown's avatar
unknown committed
2441
        ;
unknown's avatar
unknown committed
2442

unknown's avatar
unknown committed
2443 2444
create2a:
        field_list ')' opt_create_table_options create3 {}
unknown's avatar
unknown committed
2445
	|  create_select ')' { Select->set_braces(1);} union_opt {}
2446
        ;
unknown's avatar
unknown committed
2447 2448

create3:
2449
	/* empty */ {}
unknown's avatar
unknown committed
2450
	| opt_duplicate opt_as     create_select
unknown's avatar
unknown committed
2451
          { Select->set_braces(0);} union_clause {}
unknown's avatar
unknown committed
2452
	| opt_duplicate opt_as '(' create_select ')'
unknown's avatar
unknown committed
2453
          { Select->set_braces(1);} union_opt {}
2454 2455
        ;

unknown's avatar
unknown committed
2456
create_select:
2457
          SELECT_SYM
unknown's avatar
unknown committed
2458
          {
unknown's avatar
unknown committed
2459 2460
	    LEX *lex=Lex;
	    lex->lock_option= (using_update_log) ? TL_READ_NO_INSERT : TL_READ;
2461 2462 2463 2464
	    if (lex->sql_command == SQLCOM_INSERT)
	      lex->sql_command= SQLCOM_INSERT_SELECT;
	    else if (lex->sql_command == SQLCOM_REPLACE)
	      lex->sql_command= SQLCOM_REPLACE_SELECT;
2465 2466 2467 2468
	    /*
              The following work only with the local list, the global list
              is created correctly in this case
	    */
unknown's avatar
unknown committed
2469
	    lex->current_select->table_list.save_and_clear(&lex->save_list);
unknown's avatar
unknown committed
2470
	    mysql_init_select(lex);
2471
	    lex->current_select->parsing_place= SELECT_LIST;
unknown's avatar
unknown committed
2472
          }
unknown's avatar
unknown committed
2473 2474
          select_options select_item_list
	  {
2475
	    Select->parsing_place= NO_MATTER;
unknown's avatar
unknown committed
2476
	  }
unknown's avatar
unknown committed
2477
	  opt_select_from
2478 2479 2480 2481 2482 2483 2484
	  {
	    /*
              The following work only with the local list, the global list
              is created correctly in this case
	    */
	    Lex->current_select->table_list.push_front(&Lex->save_list);
	  }
unknown's avatar
unknown committed
2485
        ;
unknown's avatar
unknown committed
2486

2487 2488
opt_as:
	/* empty */ {}
unknown's avatar
unknown committed
2489
	| AS	    {};
2490

2491 2492 2493 2494 2495 2496 2497 2498 2499
opt_create_database_options:
	/* empty */			{}
	| create_database_options	{};

create_database_options:
	create_database_option					{}
	| create_database_options create_database_option	{};

create_database_option:
2500 2501
	default_collation   {}
	| default_charset   {};
2502

unknown's avatar
unknown committed
2503
opt_table_options:
unknown's avatar
unknown committed
2504
	/* empty */	 { $$= 0; }
unknown's avatar
unknown committed
2505
	| table_options  { $$= $1;};
unknown's avatar
unknown committed
2506 2507 2508

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

unknown's avatar
unknown committed
2511
table_option:
unknown's avatar
unknown committed
2512
	TEMPORARY	{ $$=HA_LEX_CREATE_TMP_TABLE; };
unknown's avatar
unknown committed
2513 2514

opt_if_not_exists:
unknown's avatar
unknown committed
2515
	/* empty */	 { $$= 0; }
2516
	| IF not EXISTS	 { $$=HA_LEX_CREATE_IF_NOT_EXISTS; };
unknown's avatar
unknown committed
2517 2518 2519

opt_create_table_options:
	/* empty */
unknown's avatar
unknown committed
2520
	| create_table_options;
unknown's avatar
unknown committed
2521

unknown's avatar
unknown committed
2522 2523 2524 2525
create_table_options_space_separated:
	create_table_option
	| create_table_option create_table_options_space_separated;

unknown's avatar
unknown committed
2526 2527
create_table_options:
	create_table_option
2528
	| create_table_option     create_table_options
unknown's avatar
unknown committed
2529
	| create_table_option ',' create_table_options;
unknown's avatar
unknown committed
2530 2531

create_table_option:
2532 2533
	ENGINE_SYM opt_equal storage_engines    { Lex->create_info.db_type= $3; Lex->create_info.used_fields|= HA_CREATE_USED_ENGINE; }
	| TYPE_SYM opt_equal storage_engines    { Lex->create_info.db_type= $3; WARN_DEPRECATED("TYPE=storage_engine","ENGINE=storage_engine");   Lex->create_info.used_fields|= HA_CREATE_USED_ENGINE; }
2534 2535 2536
	| MAX_ROWS opt_equal ulonglong_num	{ Lex->create_info.max_rows= $3; Lex->create_info.used_fields|= HA_CREATE_USED_MAX_ROWS;}
	| MIN_ROWS opt_equal ulonglong_num	{ Lex->create_info.min_rows= $3; Lex->create_info.used_fields|= HA_CREATE_USED_MIN_ROWS;}
	| AVG_ROW_LENGTH opt_equal ULONG_NUM	{ Lex->create_info.avg_row_length=$3; Lex->create_info.used_fields|= HA_CREATE_USED_AVG_ROW_LENGTH;}
2537 2538
	| PASSWORD opt_equal TEXT_STRING_sys	{ Lex->create_info.password=$3.str; Lex->create_info.used_fields|= HA_CREATE_USED_PASSWORD; }
	| COMMENT_SYM opt_equal TEXT_STRING_sys	{ Lex->create_info.comment=$3.str; Lex->create_info.used_fields|= HA_CREATE_USED_COMMENT; }
2539 2540 2541
	| AUTO_INC opt_equal ulonglong_num	{ Lex->create_info.auto_increment_value=$3; Lex->create_info.used_fields|= HA_CREATE_USED_AUTO;}
	| PACK_KEYS_SYM opt_equal 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 opt_equal 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;}
2542 2543 2544
	| CHECKSUM_SYM opt_equal ULONG_NUM	{ Lex->create_info.table_options|= $3 ? HA_OPTION_CHECKSUM : HA_OPTION_NO_CHECKSUM; Lex->create_info.used_fields|= HA_CREATE_USED_CHECKSUM; }
	| DELAY_KEY_WRITE_SYM opt_equal ULONG_NUM { Lex->create_info.table_options|= $3 ? HA_OPTION_DELAY_KEY_WRITE : HA_OPTION_NO_DELAY_KEY_WRITE;  Lex->create_info.used_fields|= HA_CREATE_USED_DELAY_KEY_WRITE; }
	| ROW_FORMAT_SYM opt_equal row_types	{ Lex->create_info.row_type= $3;  Lex->create_info.used_fields|= HA_CREATE_USED_ROW_FORMAT; }
2545 2546 2547 2548
	| RAID_TYPE opt_equal raid_types	{ Lex->create_info.raid_type= $3; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
	| RAID_CHUNKS opt_equal ULONG_NUM	{ Lex->create_info.raid_chunks= $3; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
	| RAID_CHUNKSIZE opt_equal ULONG_NUM	{ Lex->create_info.raid_chunksize= $3*RAID_BLOCK_SIZE; Lex->create_info.used_fields|= HA_CREATE_USED_RAID;}
	| UNION_SYM opt_equal '(' table_list ')'
2549 2550 2551
	  {
	    /* Move the union list to the merge_list */
	    LEX *lex=Lex;
2552 2553
	    TABLE_LIST *table_list= lex->select_lex.get_table_list();
	    lex->create_info.merge_list= lex->select_lex.table_list;
2554
	    lex->create_info.merge_list.elements--;
2555 2556
	    lex->create_info.merge_list.first=
	      (byte*) (table_list->next_local);
2557
	    lex->select_lex.table_list.elements=1;
2558 2559 2560
	    lex->select_lex.table_list.next=
	      (byte**) &(table_list->next_local);
	    table_list->next_local= 0;
2561
	    lex->create_info.used_fields|= HA_CREATE_USED_UNION;
2562
	  }
2563 2564
	| default_charset
	| default_collation
2565
	| INSERT_METHOD opt_equal merge_insert_types   { Lex->create_info.merge_insert_method= $3; Lex->create_info.used_fields|= HA_CREATE_USED_INSERT_METHOD;}
2566 2567 2568
	| DATA_SYM DIRECTORY_SYM opt_equal TEXT_STRING_sys { Lex->create_info.data_file_name= $4.str; Lex->create_info.used_fields|= HA_CREATE_USED_DATADIR; }
	| INDEX_SYM DIRECTORY_SYM opt_equal TEXT_STRING_sys { Lex->create_info.index_file_name= $4.str;  Lex->create_info.used_fields|= HA_CREATE_USED_INDEXDIR; }
        ;
unknown's avatar
unknown committed
2569

2570 2571 2572 2573 2574 2575 2576 2577
default_charset:
        opt_default charset opt_equal charset_name_or_default
        {
          HA_CREATE_INFO *cinfo= &Lex->create_info;
          if ((cinfo->used_fields & HA_CREATE_USED_DEFAULT_CHARSET) &&
               cinfo->default_table_charset && $4 &&
               !my_charset_same(cinfo->default_table_charset,$4))
          {
2578 2579 2580
            my_error(ER_CONFLICTING_DECLARATIONS, MYF(0),
                     "CHARACTER SET ", cinfo->default_table_charset->csname,
                     "CHARACTER SET ", $4->csname);
2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
            YYABORT;
          }
	  Lex->create_info.default_table_charset= $4;
          Lex->create_info.used_fields|= HA_CREATE_USED_DEFAULT_CHARSET;
        };

default_collation:
        opt_default COLLATE_SYM opt_equal collation_name_or_default
        {
          HA_CREATE_INFO *cinfo= &Lex->create_info;
          if ((cinfo->used_fields & HA_CREATE_USED_DEFAULT_CHARSET) &&
               cinfo->default_table_charset && $4 &&
               !my_charset_same(cinfo->default_table_charset,$4))
            {
2595 2596
              my_error(ER_COLLATION_CHARSET_MISMATCH, MYF(0),
                       $4->name, cinfo->default_table_charset->csname);
2597 2598 2599 2600 2601 2602
              YYABORT;
            }
            Lex->create_info.default_table_charset= $4;
            Lex->create_info.used_fields|= HA_CREATE_USED_DEFAULT_CHARSET;
        };

unknown's avatar
unknown committed
2603
storage_engines:
2604 2605 2606 2607
	ident_or_text
	{
	  $$ = ha_resolve_by_name($1.str,$1.length);
	  if ($$ == DB_TYPE_UNKNOWN) {
2608
	    my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), $1.str);
2609 2610 2611
	    YYABORT;
	  }
	};
unknown's avatar
unknown committed
2612 2613 2614 2615 2616

row_types:
	DEFAULT		{ $$= ROW_TYPE_DEFAULT; }
	| FIXED_SYM	{ $$= ROW_TYPE_FIXED; }
	| DYNAMIC_SYM	{ $$= ROW_TYPE_DYNAMIC; }
2617 2618 2619
	| COMPRESSED_SYM { $$= ROW_TYPE_COMPRESSED; }
	| REDUNDANT_SYM	{ $$= ROW_TYPE_REDUNDANT; }
	| COMPACT_SYM	{ $$= ROW_TYPE_COMPACT; };
unknown's avatar
unknown committed
2620 2621 2622 2623

raid_types:
	RAID_STRIPED_SYM { $$= RAID_TYPE_0; }
	| RAID_0_SYM	 { $$= RAID_TYPE_0; }
unknown's avatar
unknown committed
2624
	| ULONG_NUM	 { $$=$1;};
unknown's avatar
unknown committed
2625

2626 2627 2628
merge_insert_types:
       NO_SYM            { $$= MERGE_INSERT_DISABLED; }
       | FIRST_SYM       { $$= MERGE_INSERT_TO_FIRST; }
unknown's avatar
unknown committed
2629
       | LAST_SYM        { $$= MERGE_INSERT_TO_LAST; };
2630

unknown's avatar
unknown committed
2631
opt_select_from:
2632
	opt_limit_clause {}
unknown's avatar
unknown committed
2633
	| select_from select_lock_type;
unknown's avatar
unknown committed
2634 2635

udf_func_type:
2636
	/* empty */	{ $$ = UDFTYPE_FUNCTION; }
unknown's avatar
unknown committed
2637
	| AGGREGATE_SYM { $$ = UDFTYPE_AGGREGATE; };
unknown's avatar
unknown committed
2638 2639 2640 2641

udf_type:
	STRING_SYM {$$ = (int) STRING_RESULT; }
	| REAL {$$ = (int) REAL_RESULT; }
unknown's avatar
unknown committed
2642
        | DECIMAL_SYM {$$ = (int) DECIMAL_RESULT; }
unknown's avatar
unknown committed
2643
	| INT_SYM {$$ = (int) INT_RESULT; };
unknown's avatar
unknown committed
2644 2645 2646

field_list:
	  field_list_item
unknown's avatar
unknown committed
2647
	| field_list ',' field_list_item;
unknown's avatar
unknown committed
2648 2649 2650


field_list_item:
unknown's avatar
unknown committed
2651
	   column_def
2652 2653 2654 2655
         | key_def
         ;

column_def:
unknown's avatar
unknown committed
2656
	  field_spec opt_check_constraint
unknown's avatar
unknown committed
2657 2658 2659 2660
	| field_spec references
	  {
	    Lex->col_list.empty();		/* Alloced by sql_alloc */
	  }
unknown's avatar
unknown committed
2661
	;
2662 2663

key_def:
unknown's avatar
unknown committed
2664
	key_type opt_ident key_alg '(' key_list ')'
unknown's avatar
unknown committed
2665
	  {
unknown's avatar
unknown committed
2666
	    LEX *lex=Lex;
2667
	    lex->key_list.push_back(new Key($1,$2, $3, 0, lex->col_list));
unknown's avatar
unknown committed
2668
	    lex->col_list.empty();		/* Alloced by sql_alloc */
unknown's avatar
unknown committed
2669
	  }
2670 2671 2672 2673
	| opt_constraint constraint_key_type opt_ident key_alg '(' key_list ')'
	  {
	    LEX *lex=Lex;
	    const char *key_name= $3 ? $3:$1;
2674 2675
	    lex->key_list.push_back(new Key($2, key_name, $4, 0,
				    lex->col_list));
2676 2677
	    lex->col_list.empty();		/* Alloced by sql_alloc */
	  }
2678
	| opt_constraint FOREIGN KEY_SYM opt_ident '(' key_list ')' references
unknown's avatar
unknown committed
2679
	  {
2680
	    LEX *lex=Lex;
2681
	    lex->key_list.push_back(new foreign_key($4 ? $4:$1, lex->col_list,
2682 2683 2684 2685 2686
				    $8,
				    lex->ref_list,
				    lex->fk_delete_opt,
				    lex->fk_update_opt,
				    lex->fk_match_option));
2687 2688 2689
	    lex->key_list.push_back(new Key(Key::MULTIPLE, $4 ? $4 : $1,
					    HA_KEY_ALG_UNDEF, 1,
					    lex->col_list));
2690
	    lex->col_list.empty();		/* Alloced by sql_alloc */
unknown's avatar
unknown committed
2691
	  }
unknown's avatar
unknown committed
2692 2693 2694 2695
	| constraint opt_check_constraint
	  {
	    Lex->col_list.empty();		/* Alloced by sql_alloc */
	  }
2696
	| opt_constraint check_constraint
unknown's avatar
unknown committed
2697 2698
	  {
	    Lex->col_list.empty();		/* Alloced by sql_alloc */
2699 2700 2701
	  }
	;

unknown's avatar
unknown committed
2702
opt_check_constraint:
2703
	/* empty */
unknown's avatar
unknown committed
2704 2705 2706 2707 2708
	| check_constraint
	;

check_constraint:
	CHECK_SYM expr
2709
	;
unknown's avatar
unknown committed
2710 2711

opt_constraint:
2712
	/* empty */		{ $$=(char*) 0; }
unknown's avatar
unknown committed
2713 2714 2715 2716 2717 2718
	| constraint		{ $$= $1; }
	;

constraint:
	CONSTRAINT opt_ident	{ $$=$2; }
	;
unknown's avatar
unknown committed
2719 2720 2721 2722

field_spec:
	field_ident
	 {
unknown's avatar
unknown committed
2723
	   LEX *lex=Lex;
2724
	   lex->length=lex->dec=0; lex->type=0;
2725
	   lex->default_value= lex->on_update_value= 0;
unknown's avatar
unknown committed
2726
	   lex->comment=0;
2727
	   lex->charset=NULL;
unknown's avatar
unknown committed
2728 2729 2730
	 }
	type opt_attribute
	{
unknown's avatar
unknown committed
2731
	  LEX *lex=Lex;
unknown's avatar
unknown committed
2732
	  if (add_field_to_list(lex->thd, $1.str,
unknown's avatar
unknown committed
2733
				(enum enum_field_types) $3,
unknown's avatar
unknown committed
2734
				lex->length,lex->dec,lex->type,
2735 2736
				lex->default_value, lex->on_update_value, 
                                lex->comment,
2737
				lex->change,&lex->interval_list,lex->charset,
unknown's avatar
unknown committed
2738
				lex->uint_geom_type))
unknown's avatar
unknown committed
2739
	    YYABORT;
unknown's avatar
unknown committed
2740
	};
unknown's avatar
unknown committed
2741 2742

type:
2743
	int_type opt_len field_options	{ $$=$1; }
unknown's avatar
unknown committed
2744 2745
	| real_type opt_precision field_options { $$=$1; }
	| FLOAT_SYM float_options field_options { $$=FIELD_TYPE_FLOAT; }
unknown's avatar
unknown committed
2746 2747 2748 2749
	| BIT_SYM			{ Lex->length= (char*) "1";
					  $$=FIELD_TYPE_BIT; }
	| BIT_SYM '(' NUM ')'		{ Lex->length= $3.str;
					  $$=FIELD_TYPE_BIT; }
unknown's avatar
unknown committed
2750 2751
	| BOOL_SYM			{ Lex->length=(char*) "1";
					  $$=FIELD_TYPE_TINY; }
2752 2753
	| BOOLEAN_SYM			{ Lex->length=(char*) "1";
					  $$=FIELD_TYPE_TINY; }
2754
	| char '(' NUM ')' opt_binary	{ Lex->length=$3.str;
unknown's avatar
unknown committed
2755 2756 2757
					  $$=FIELD_TYPE_STRING; }
	| char opt_binary		{ Lex->length=(char*) "1";
					  $$=FIELD_TYPE_STRING; }
unknown's avatar
unknown committed
2758
	| nchar '(' NUM ')'		{ Lex->length=$3.str;
unknown's avatar
unknown committed
2759
					  $$=FIELD_TYPE_STRING;
2760
					  Lex->charset=national_charset_info; }
unknown's avatar
unknown committed
2761
	| nchar				{ Lex->length=(char*) "1";
unknown's avatar
unknown committed
2762
					  $$=FIELD_TYPE_STRING;
2763
					  Lex->charset=national_charset_info; }
2764
	| BINARY '(' NUM ')'		{ Lex->length=$3.str;
unknown's avatar
unknown committed
2765
					  Lex->charset=&my_charset_bin;
unknown's avatar
unknown committed
2766
					  $$=FIELD_TYPE_STRING; }
2767 2768 2769
	| BINARY			{ Lex->length= (char*) "1";
					  Lex->charset=&my_charset_bin;
					  $$=FIELD_TYPE_STRING; }
unknown's avatar
unknown committed
2770
	| varchar '(' NUM ')' opt_binary { Lex->length=$3.str;
2771
					  $$= MYSQL_TYPE_VARCHAR; }
unknown's avatar
unknown committed
2772
	| nvarchar '(' NUM ')'		{ Lex->length=$3.str;
2773
					  $$= MYSQL_TYPE_VARCHAR;
2774
					  Lex->charset=national_charset_info; }
unknown's avatar
unknown committed
2775
	| VARBINARY '(' NUM ')' 	{ Lex->length=$3.str;
unknown's avatar
unknown committed
2776
					  Lex->charset=&my_charset_bin;
2777
					  $$= MYSQL_TYPE_VARCHAR; }
2778
	| YEAR_SYM opt_len field_options { $$=FIELD_TYPE_YEAR; }
unknown's avatar
unknown committed
2779 2780
	| DATE_SYM			{ $$=FIELD_TYPE_DATE; }
	| TIME_SYM			{ $$=FIELD_TYPE_TIME; }
2781
	| TIMESTAMP opt_len
2782
	  {
2783
	    if (YYTHD->variables.sql_mode & MODE_MAXDB)
2784 2785
	      $$=FIELD_TYPE_DATETIME;
	    else
2786 2787 2788 2789 2790
            {
              /* 
                Unlike other types TIMESTAMP fields are NOT NULL by default.
              */
              Lex->type|= NOT_NULL_FLAG;
2791
	      $$=FIELD_TYPE_TIMESTAMP;
2792
            }
2793
	   }
unknown's avatar
unknown committed
2794
	| DATETIME			{ $$=FIELD_TYPE_DATETIME; }
unknown's avatar
unknown committed
2795
	| TINYBLOB			{ Lex->charset=&my_charset_bin;
unknown's avatar
unknown committed
2796
					  $$=FIELD_TYPE_TINY_BLOB; }
unknown's avatar
unknown committed
2797
	| BLOB_SYM opt_len		{ Lex->charset=&my_charset_bin;
unknown's avatar
unknown committed
2798
					  $$=FIELD_TYPE_BLOB; }
unknown's avatar
unknown committed
2799 2800
	| spatial_type
          {
unknown's avatar
unknown committed
2801
#ifdef HAVE_SPATIAL
unknown's avatar
unknown committed
2802 2803 2804
            Lex->charset=&my_charset_bin;
            Lex->uint_geom_type= (uint)$1;
            $$=FIELD_TYPE_GEOMETRY;
unknown's avatar
unknown committed
2805
#else
2806 2807
            my_error(ER_FEATURE_DISABLED, MYF(0)
                     sym_group_geom.name, sym_group_geom.needed_define);
unknown's avatar
unknown committed
2808
            YYABORT;
unknown's avatar
unknown committed
2809
#endif
unknown's avatar
unknown committed
2810
          }
unknown's avatar
unknown committed
2811
	| MEDIUMBLOB			{ Lex->charset=&my_charset_bin;
unknown's avatar
unknown committed
2812
					  $$=FIELD_TYPE_MEDIUM_BLOB; }
unknown's avatar
unknown committed
2813
	| LONGBLOB			{ Lex->charset=&my_charset_bin;
unknown's avatar
unknown committed
2814
					  $$=FIELD_TYPE_LONG_BLOB; }
unknown's avatar
unknown committed
2815
	| LONG_SYM VARBINARY		{ Lex->charset=&my_charset_bin;
unknown's avatar
unknown committed
2816
					  $$=FIELD_TYPE_MEDIUM_BLOB; }
2817 2818
	| LONG_SYM varchar opt_binary	{ $$=FIELD_TYPE_MEDIUM_BLOB; }
	| TINYTEXT opt_binary		{ $$=FIELD_TYPE_TINY_BLOB; }
2819
	| TEXT_SYM opt_len opt_binary	{ $$=FIELD_TYPE_BLOB; }
2820 2821
	| MEDIUMTEXT opt_binary		{ $$=FIELD_TYPE_MEDIUM_BLOB; }
	| LONGTEXT opt_binary		{ $$=FIELD_TYPE_LONG_BLOB; }
unknown's avatar
unknown committed
2822
	| DECIMAL_SYM float_options field_options
unknown's avatar
unknown committed
2823
                                        { $$=FIELD_TYPE_NEWDECIMAL;}
unknown's avatar
unknown committed
2824
	| NUMERIC_SYM float_options field_options
unknown's avatar
unknown committed
2825
                                        { $$=FIELD_TYPE_NEWDECIMAL;}
2826
	| FIXED_SYM float_options field_options
unknown's avatar
unknown committed
2827
                                        { $$=FIELD_TYPE_NEWDECIMAL;}
2828
	| ENUM {Lex->interval_list.empty();} '(' string_list ')' opt_binary
2829
	  { $$=FIELD_TYPE_ENUM; }
2830
	| SET { Lex->interval_list.empty();} '(' string_list ')' opt_binary
2831
	  { $$=FIELD_TYPE_SET; }
2832
	| LONG_SYM opt_binary		{ $$=FIELD_TYPE_MEDIUM_BLOB; }
unknown's avatar
unknown committed
2833 2834 2835 2836 2837 2838
	| SERIAL_SYM
	  {
	    $$=FIELD_TYPE_LONGLONG;
	    Lex->type|= (AUTO_INCREMENT_FLAG | NOT_NULL_FLAG | UNSIGNED_FLAG |
		         UNIQUE_FLAG);
	  }
2839
	;
unknown's avatar
unknown committed
2840

unknown's avatar
unknown committed
2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851
spatial_type:
	GEOMETRY_SYM	      { $$= Field::GEOM_GEOMETRY; }
	| GEOMETRYCOLLECTION  { $$= Field::GEOM_GEOMETRYCOLLECTION; }
	| POINT_SYM           { $$= Field::GEOM_POINT; }
	| MULTIPOINT          { $$= Field::GEOM_MULTIPOINT; }
	| LINESTRING          { $$= Field::GEOM_LINESTRING; }
	| MULTILINESTRING     { $$= Field::GEOM_MULTILINESTRING; }
	| POLYGON             { $$= Field::GEOM_POLYGON; }
	| MULTIPOLYGON        { $$= Field::GEOM_MULTIPOLYGON; }
	;

unknown's avatar
unknown committed
2852 2853
char:
	CHAR_SYM {}
unknown's avatar
unknown committed
2854 2855 2856 2857 2858 2859
	;

nchar:
	NCHAR_SYM {}
	| NATIONAL_SYM CHAR_SYM {}
	;
unknown's avatar
unknown committed
2860

unknown's avatar
unknown committed
2861 2862 2863
varchar:
	char VARYING {}
	| VARCHAR {}
unknown's avatar
unknown committed
2864 2865 2866 2867
	;

nvarchar:
	NATIONAL_SYM VARCHAR {}
unknown's avatar
unknown committed
2868
	| NVARCHAR_SYM {}
unknown's avatar
unknown committed
2869 2870 2871 2872
	| NCHAR_SYM VARCHAR {}
	| NATIONAL_SYM CHAR_SYM VARYING {}
	| NCHAR_SYM VARYING {}
	;
unknown's avatar
unknown committed
2873 2874 2875 2876 2877 2878

int_type:
	INT_SYM		{ $$=FIELD_TYPE_LONG; }
	| TINYINT	{ $$=FIELD_TYPE_TINY; }
	| SMALLINT	{ $$=FIELD_TYPE_SHORT; }
	| MEDIUMINT	{ $$=FIELD_TYPE_INT24; }
unknown's avatar
unknown committed
2879
	| BIGINT	{ $$=FIELD_TYPE_LONGLONG; };
unknown's avatar
unknown committed
2880 2881

real_type:
2882
	REAL		{ $$= YYTHD->variables.sql_mode & MODE_REAL_AS_FLOAT ?
unknown's avatar
unknown committed
2883 2884
			      FIELD_TYPE_FLOAT : FIELD_TYPE_DOUBLE; }
	| DOUBLE_SYM	{ $$=FIELD_TYPE_DOUBLE; }
unknown's avatar
unknown committed
2885
	| DOUBLE_SYM PRECISION { $$=FIELD_TYPE_DOUBLE; };
unknown's avatar
unknown committed
2886 2887 2888


float_options:
unknown's avatar
unknown committed
2889 2890
        /* empty */		{ Lex->dec=Lex->length= (char*)0; }
        | '(' NUM ')'		{ Lex->length=$2.str; Lex->dec= (char*)0; }
unknown's avatar
unknown committed
2891
	| precision		{};
unknown's avatar
unknown committed
2892 2893 2894 2895 2896 2897

precision:
	'(' NUM ',' NUM ')'
	{
	  LEX *lex=Lex;
	  lex->length=$2.str; lex->dec=$4.str;
unknown's avatar
unknown committed
2898
	};
unknown's avatar
unknown committed
2899 2900 2901

field_options:
	/* empty */		{}
unknown's avatar
unknown committed
2902
	| field_opt_list	{};
unknown's avatar
unknown committed
2903 2904 2905

field_opt_list:
	field_opt_list field_option {}
unknown's avatar
unknown committed
2906
	| field_option {};
unknown's avatar
unknown committed
2907 2908

field_option:
unknown's avatar
unknown committed
2909
	SIGNED_SYM	{}
2910
	| UNSIGNED	{ Lex->type|= UNSIGNED_FLAG;}
unknown's avatar
unknown committed
2911
	| ZEROFILL	{ Lex->type|= UNSIGNED_FLAG | ZEROFILL_FLAG; };
unknown's avatar
unknown committed
2912 2913

opt_len:
2914 2915
	/* empty */	{ Lex->length=(char*) 0; } /* use default length */
	| '(' NUM ')'	{ Lex->length= $2.str; };
unknown's avatar
unknown committed
2916 2917 2918

opt_precision:
	/* empty */	{}
unknown's avatar
unknown committed
2919
	| precision	{};
unknown's avatar
unknown committed
2920 2921 2922

opt_attribute:
	/* empty */ {}
unknown's avatar
unknown committed
2923
	| opt_attribute_list {};
unknown's avatar
unknown committed
2924 2925 2926

opt_attribute_list:
	opt_attribute_list attribute {}
unknown's avatar
unknown committed
2927
	| attribute;
unknown's avatar
unknown committed
2928 2929 2930

attribute:
	NULL_SYM	  { Lex->type&= ~ NOT_NULL_FLAG; }
2931
	| not NULL_SYM	  { Lex->type|= NOT_NULL_FLAG; }
2932 2933 2934
	| DEFAULT now_or_signed_literal { Lex->default_value=$2; }
	| ON UPDATE_SYM NOW_SYM optional_braces 
          { Lex->on_update_value= new Item_func_now_local(); }
unknown's avatar
unknown committed
2935
	| AUTO_INC	  { Lex->type|= AUTO_INCREMENT_FLAG | NOT_NULL_FLAG; }
2936
	| SERIAL_SYM DEFAULT VALUE_SYM
2937 2938 2939
	  { 
	    LEX *lex=Lex;
	    lex->type|= AUTO_INCREMENT_FLAG | NOT_NULL_FLAG | UNIQUE_FLAG; 
2940
	    lex->alter_info.flags|= ALTER_ADD_INDEX; 
2941 2942 2943 2944 2945
	  }
	| opt_primary KEY_SYM 
	  {
	    LEX *lex=Lex;
	    lex->type|= PRI_KEY_FLAG | NOT_NULL_FLAG; 
2946
	    lex->alter_info.flags|= ALTER_ADD_INDEX; 
2947 2948 2949 2950 2951
	  }
	| UNIQUE_SYM	  
	  {
	    LEX *lex=Lex;
	    lex->type|= UNIQUE_FLAG; 
2952
	    lex->alter_info.flags|= ALTER_ADD_INDEX; 
2953 2954 2955 2956 2957
	  }
	| UNIQUE_SYM KEY_SYM 
	  {
	    LEX *lex=Lex;
	    lex->type|= UNIQUE_KEY_FLAG; 
2958
	    lex->alter_info.flags|= ALTER_ADD_INDEX; 
2959
	  }
unknown's avatar
unknown committed
2960
	| COMMENT_SYM TEXT_STRING_sys { Lex->comment= &$2; }
2961
	| BINARY { Lex->type|= BINCMP_FLAG; }
unknown's avatar
unknown committed
2962 2963
	| COLLATE_SYM collation_name
	  {
unknown's avatar
unknown committed
2964
	    if (Lex->charset && !my_charset_same(Lex->charset,$2))
unknown's avatar
unknown committed
2965
	    {
2966 2967
	      my_error(ER_COLLATION_CHARSET_MISMATCH, MYF(0),
                       $2->name,Lex->charset->csname);
unknown's avatar
unknown committed
2968 2969 2970 2971 2972 2973 2974 2975
	      YYABORT;
	    }
	    else
	    {
	      Lex->charset=$2;
	    }
	  }
	;
unknown's avatar
unknown committed
2976

2977 2978 2979 2980 2981
now_or_signed_literal:
        NOW_SYM optional_braces { $$= new Item_func_now_local(); }
        | signed_literal { $$=$1; }
        ;

2982 2983 2984 2985
charset:
	CHAR_SYM SET	{}
	| CHARSET	{}
	;
unknown's avatar
unknown committed
2986

2987
charset_name:
2988
	ident_or_text
2989
	{
unknown's avatar
unknown committed
2990
	  if (!($$=get_charset_by_csname($1.str,MY_CS_PRIMARY,MYF(0))))
2991
	  {
2992
	    my_error(ER_UNKNOWN_CHARACTER_SET, MYF(0), $1.str);
2993 2994
	    YYABORT;
	  }
unknown's avatar
unknown committed
2995 2996 2997
	}
	| BINARY { $$= &my_charset_bin; }
	;
2998

2999 3000 3001
charset_name_or_default:
	charset_name { $$=$1;   }
	| DEFAULT    { $$=NULL; } ;
unknown's avatar
unknown committed
3002

unknown's avatar
unknown committed
3003 3004 3005 3006 3007 3008 3009

old_or_new_charset_name:
	ident_or_text
	{
	  if (!($$=get_charset_by_csname($1.str,MY_CS_PRIMARY,MYF(0))) &&
	      !($$=get_old_charset_by_name($1.str)))
	  {
3010
	    my_error(ER_UNKNOWN_CHARACTER_SET, MYF(0), $1.str);
unknown's avatar
unknown committed
3011 3012 3013 3014 3015 3016 3017 3018 3019 3020
	    YYABORT;
	  }
	}
	| BINARY { $$= &my_charset_bin; }
	;

old_or_new_charset_name_or_default:
	old_or_new_charset_name { $$=$1;   }
	| DEFAULT    { $$=NULL; } ;

3021
collation_name:
3022
	ident_or_text
3023 3024 3025
	{
	  if (!($$=get_charset_by_name($1.str,MYF(0))))
	  {
3026
	    my_error(ER_UNKNOWN_COLLATION, MYF(0), $1.str);
3027 3028 3029 3030
	    YYABORT;
	  }
	};

3031 3032
opt_collate:
	/* empty */	{ $$=NULL; }
unknown's avatar
unknown committed
3033
	| COLLATE_SYM collation_name_or_default { $$=$2; }
3034 3035
	;

3036 3037 3038 3039
collation_name_or_default:
	collation_name { $$=$1;   }
	| DEFAULT    { $$=NULL; } ;

3040 3041 3042 3043
opt_default:
	/* empty */	{}
	| DEFAULT	{};

unknown's avatar
unknown committed
3044
opt_binary:
3045
	/* empty */			{ Lex->charset=NULL; }
unknown's avatar
unknown committed
3046 3047
	| ASCII_SYM			{ Lex->charset=&my_charset_latin1; }
	| BYTE_SYM			{ Lex->charset=&my_charset_bin; }
unknown's avatar
unknown committed
3048 3049
	| UNICODE_SYM
	{
unknown's avatar
unknown committed
3050 3051
	  if (!(Lex->charset=get_charset_by_csname("ucs2",
                                                   MY_CS_PRIMARY,MYF(0))))
unknown's avatar
unknown committed
3052
	  {
unknown's avatar
unknown committed
3053
	    my_error(ER_UNKNOWN_CHARACTER_SET, MYF(0), "ucs2");
unknown's avatar
unknown committed
3054 3055 3056
	    YYABORT;
	  }
	}
3057
	| charset charset_name	{ Lex->charset=$2; } ;
unknown's avatar
unknown committed
3058

unknown's avatar
unknown committed
3059 3060 3061
opt_primary:
	/* empty */
	| PRIMARY_SYM
3062
	;
unknown's avatar
unknown committed
3063

unknown's avatar
unknown committed
3064
references:
3065 3066
	REFERENCES table_ident
	{
3067
	  LEX *lex=Lex;
3068 3069 3070 3071 3072 3073
	  lex->fk_delete_opt= lex->fk_update_opt= lex->fk_match_option= 0;
	  lex->ref_list.empty();
	}
	opt_ref_list
	{
	  $$=$2;
unknown's avatar
unknown committed
3074
	};
3075

3076
opt_ref_list:
unknown's avatar
unknown committed
3077
	/* empty */ opt_on_delete {}
unknown's avatar
unknown committed
3078
	| '(' ref_list ')' opt_on_delete {};
3079 3080 3081

ref_list:
	ref_list ',' ident	{ Lex->ref_list.push_back(new key_part_spec($3.str)); }
unknown's avatar
unknown committed
3082
	| ident			{ Lex->ref_list.push_back(new key_part_spec($1.str)); };
3083

unknown's avatar
unknown committed
3084 3085 3086

opt_on_delete:
	/* empty */ {}
unknown's avatar
unknown committed
3087
	| opt_on_delete_list {};
unknown's avatar
unknown committed
3088 3089 3090

opt_on_delete_list:
	opt_on_delete_list opt_on_delete_item {}
unknown's avatar
unknown committed
3091
	| opt_on_delete_item {};
unknown's avatar
unknown committed
3092 3093

opt_on_delete_item:
3094 3095 3096 3097
	ON DELETE_SYM delete_option   { Lex->fk_delete_opt= $3; }
	| ON UPDATE_SYM delete_option { Lex->fk_update_opt= $3; }
	| MATCH FULL	{ Lex->fk_match_option= foreign_key::FK_MATCH_FULL; }
	| MATCH PARTIAL { Lex->fk_match_option= foreign_key::FK_MATCH_PARTIAL; }
unknown's avatar
unknown committed
3098
	| MATCH SIMPLE_SYM { Lex->fk_match_option= foreign_key::FK_MATCH_SIMPLE; };
unknown's avatar
unknown committed
3099 3100

delete_option:
3101 3102 3103 3104
	RESTRICT	 { $$= (int) foreign_key::FK_OPTION_RESTRICT; }
	| CASCADE	 { $$= (int) foreign_key::FK_OPTION_CASCADE; }
	| SET NULL_SYM   { $$= (int) foreign_key::FK_OPTION_SET_NULL; }
	| NO_SYM ACTION  { $$= (int) foreign_key::FK_OPTION_NO_ACTION; }
unknown's avatar
unknown committed
3105
	| SET DEFAULT    { $$= (int) foreign_key::FK_OPTION_DEFAULT;  };
unknown's avatar
unknown committed
3106 3107

key_type:
3108
	key_or_index			    { $$= Key::MULTIPLE; }
unknown's avatar
SCRUM  
unknown committed
3109 3110
	| FULLTEXT_SYM opt_key_or_index	    { $$= Key::FULLTEXT; }
	| SPATIAL_SYM opt_key_or_index
unknown's avatar
unknown committed
3111 3112 3113 3114
	  {
#ifdef HAVE_SPATIAL
	    $$= Key::SPATIAL;
#else
3115 3116
	    my_error(ER_FEATURE_DISABLED, MYF(0),
                     sym_group_geom.name, sym_group_geom.needed_define);
unknown's avatar
unknown committed
3117 3118 3119
	    YYABORT;
#endif
	  };
3120 3121 3122

constraint_key_type:
	PRIMARY_SYM KEY_SYM  { $$= Key::PRIMARY; }
unknown's avatar
SCRUM  
unknown committed
3123
	| UNIQUE_SYM opt_key_or_index { $$= Key::UNIQUE; };
unknown's avatar
unknown committed
3124 3125 3126

key_or_index:
	KEY_SYM {}
unknown's avatar
unknown committed
3127
	| INDEX_SYM {};
unknown's avatar
unknown committed
3128

unknown's avatar
SCRUM  
unknown committed
3129 3130 3131 3132 3133
opt_key_or_index:
	/* empty */ {}
	| key_or_index
	;

unknown's avatar
unknown committed
3134 3135
keys_or_index:
	KEYS {}
unknown's avatar
unknown committed
3136
	| INDEX_SYM {}
unknown's avatar
unknown committed
3137
	| INDEXES {};
unknown's avatar
unknown committed
3138

3139
opt_unique_or_fulltext:
unknown's avatar
unknown committed
3140 3141
	/* empty */	{ $$= Key::MULTIPLE; }
	| UNIQUE_SYM	{ $$= Key::UNIQUE; }
unknown's avatar
unknown committed
3142
	| FULLTEXT_SYM	{ $$= Key::FULLTEXT;}
unknown's avatar
unknown committed
3143 3144 3145 3146 3147
	| SPATIAL_SYM
	  {
#ifdef HAVE_SPATIAL
	    $$= Key::SPATIAL;
#else
unknown's avatar
unknown committed
3148
	    my_message(ER_FEATURE_DISABLED, ER(ER_FEATURE_DISABLED), MYF(0),
unknown's avatar
unknown committed
3149
                     sym_group_geom.name, sym_group_geom.needed_define);
unknown's avatar
unknown committed
3150 3151 3152
	    YYABORT;
#endif
	  }
unknown's avatar
unknown committed
3153
        ;
unknown's avatar
unknown committed
3154 3155

key_alg:
3156
	/* empty */		   { $$= HA_KEY_ALG_UNDEF; }
3157
	| USING opt_btree_or_rtree { $$= $2; }
unknown's avatar
unknown committed
3158
	| TYPE_SYM opt_btree_or_rtree  { $$= $2; };
unknown's avatar
unknown committed
3159 3160 3161

opt_btree_or_rtree:
	BTREE_SYM	{ $$= HA_KEY_ALG_BTREE; }
unknown's avatar
unknown committed
3162 3163 3164 3165
	| RTREE_SYM
	  {
	    $$= HA_KEY_ALG_RTREE;
	  }
unknown's avatar
unknown committed
3166
	| HASH_SYM	{ $$= HA_KEY_ALG_HASH; };
unknown's avatar
unknown committed
3167 3168 3169

key_list:
	key_list ',' key_part order_dir { Lex->col_list.push_back($3); }
unknown's avatar
unknown committed
3170
	| key_part order_dir		{ Lex->col_list.push_back($1); };
unknown's avatar
unknown committed
3171 3172 3173

key_part:
	ident			{ $$=new key_part_spec($1.str); }
3174 3175 3176 3177 3178
	| ident '(' NUM ')'	
        {
          int key_part_len= atoi($3.str);
          if (!key_part_len)
          {
3179
            my_error(ER_KEY_PART_0, MYF(0), $1.str);
3180 3181 3182
          }
          $$=new key_part_spec($1.str,(uint) key_part_len);
        };
unknown's avatar
unknown committed
3183 3184 3185

opt_ident:
	/* empty */	{ $$=(char*) 0; }	/* Defaultlength */
unknown's avatar
unknown committed
3186
	| field_ident	{ $$=$1.str; };
unknown's avatar
unknown committed
3187

3188 3189 3190
opt_component:
	/* empty */	 { $$.str= 0; $$.length= 0; }
	| '.' ident	 { $$=$2; };
3191

unknown's avatar
unknown committed
3192 3193
string_list:
	text_string			{ Lex->interval_list.push_back($1); }
unknown's avatar
unknown committed
3194
	| string_list ',' text_string	{ Lex->interval_list.push_back($3); };
unknown's avatar
unknown committed
3195 3196 3197 3198 3199 3200 3201 3202

/*
** Alter table
*/

alter:
	ALTER opt_ignore TABLE_SYM table_ident
	{
3203
	  THD *thd= YYTHD;
3204
	  LEX *lex= thd->lex;
3205 3206 3207
	  lex->sql_command= SQLCOM_ALTER_TABLE;
	  lex->name= 0;
	  lex->duplicates= DUP_ERROR; 
unknown's avatar
unknown committed
3208 3209
	  if (!lex->select_lex.add_table_to_list(thd, $4, NULL,
						 TL_OPTION_UPDATING))
unknown's avatar
unknown committed
3210 3211 3212 3213
	    YYABORT;
	  lex->create_list.empty();
	  lex->key_list.empty();
	  lex->col_list.empty();
3214
          lex->select_lex.init_order();
3215
	  lex->select_lex.db=lex->name=0;
3216
	  bzero((char*) &lex->create_info,sizeof(lex->create_info));
unknown's avatar
unknown committed
3217
	  lex->create_info.db_type= DB_TYPE_DEFAULT;
3218
	  lex->create_info.default_table_charset= NULL;
3219
	  lex->create_info.row_type= ROW_TYPE_NOT_USED;
3220
	  lex->alter_info.reset();
3221
	  lex->alter_info.flags= 0;
unknown's avatar
unknown committed
3222
	}
3223 3224
	alter_list
	{}
3225
	| ALTER DATABASE ident_or_empty
3226 3227 3228 3229 3230
          {
            Lex->create_info.default_table_charset= NULL;
            Lex->create_info.used_fields= 0;
          }
          opt_create_database_options
3231 3232 3233
	  {
	    LEX *lex=Lex;
	    lex->sql_command=SQLCOM_ALTER_DB;
3234
	    lex->name= $3;
3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252
	  }
	| ALTER PROCEDURE sp_name
	  {
	    LEX *lex= Lex;

	    bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
          }
	  sp_a_chistics
	  {
	    THD *thd= YYTHD;
	    LEX *lex=Lex;

	    lex->sql_command= SQLCOM_ALTER_PROCEDURE;
	    lex->spname= $3;
	  }
	| ALTER FUNCTION_SYM sp_name
	  {
	    LEX *lex= Lex;
3253

3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276
	    bzero((char *)&lex->sp_chistics, sizeof(st_sp_chistics));
          }
	  sp_a_chistics
	  {
	    THD *thd= YYTHD;
	    LEX *lex=Lex;

	    lex->sql_command= SQLCOM_ALTER_FUNCTION;
	    lex->spname= $3;
	  }
	| ALTER algorithm VIEW_SYM table_ident
	  {
	    THD *thd= YYTHD;
	    LEX *lex= thd->lex;
	    lex->sql_command= SQLCOM_CREATE_VIEW;
	    lex->create_view_mode= VIEW_ALTER;
	    lex->select_lex.resolve_mode= SELECT_LEX::SELECT_MODE;
	    /* first table in list is target VIEW name */
	    lex->select_lex.add_table_to_list(thd, $4, NULL, 0);
	  }
	  opt_view_list AS select_init check_option
	  {}
	;
3277

3278 3279 3280 3281
ident_or_empty:
	/* empty */  { $$= 0; }
	| ident      { $$= $1.str; };

unknown's avatar
unknown committed
3282
alter_list:
3283 3284
	| DISCARD TABLESPACE { Lex->alter_info.tablespace_op= DISCARD_TABLESPACE; }
	| IMPORT TABLESPACE { Lex->alter_info.tablespace_op= IMPORT_TABLESPACE; }
unknown's avatar
unknown committed
3285
        | alter_list_item
unknown's avatar
unknown committed
3286
	| alter_list ',' alter_list_item;
unknown's avatar
unknown committed
3287 3288

add_column:
3289
	ADD opt_column
3290 3291
	{
	  LEX *lex=Lex;
3292 3293
	  lex->change=0;
	  lex->alter_info.flags|= ALTER_ADD_COLUMN;
3294
	};
unknown's avatar
unknown committed
3295 3296

alter_list_item:
3297 3298 3299 3300
	add_column column_def opt_place { }
	| ADD key_def
	  {
	    Lex->alter_info.flags|= ALTER_ADD_INDEX;
3301
	  }
3302 3303 3304 3305
	| add_column '(' field_list ')'
          {
	    Lex->alter_info.flags|= ALTER_ADD_COLUMN | ALTER_ADD_INDEX;
          }
unknown's avatar
unknown committed
3306 3307 3308
	| CHANGE opt_column field_ident
	  {
	     LEX *lex=Lex;
3309
	     lex->change= $3.str;
3310
	     lex->alter_info.flags|= ALTER_CHANGE_COLUMN;
unknown's avatar
unknown committed
3311
	  }
3312
          field_spec opt_place
unknown's avatar
unknown committed
3313 3314 3315
        | MODIFY_SYM opt_column field_ident
          {
            LEX *lex=Lex;
3316
            lex->length=lex->dec=0; lex->type=0;
3317
            lex->default_value= lex->on_update_value= 0;
unknown's avatar
unknown committed
3318
	    lex->comment=0;
3319
	    lex->charset= NULL;
3320
	    lex->alter_info.flags|= ALTER_CHANGE_COLUMN;
unknown's avatar
unknown committed
3321 3322 3323 3324
          }
          type opt_attribute
          {
            LEX *lex=Lex;
unknown's avatar
unknown committed
3325
            if (add_field_to_list(lex->thd,$3.str,
unknown's avatar
unknown committed
3326 3327
                                  (enum enum_field_types) $5,
                                  lex->length,lex->dec,lex->type,
3328 3329
                                  lex->default_value, lex->on_update_value,
                                  lex->comment,
3330
				  $3.str, &lex->interval_list, lex->charset,
unknown's avatar
unknown committed
3331
				  lex->uint_geom_type))
unknown's avatar
unknown committed
3332 3333 3334
	       YYABORT;
          }
          opt_place
unknown's avatar
unknown committed
3335
	| DROP opt_column field_ident opt_restrict
unknown's avatar
unknown committed
3336 3337
	  {
	    LEX *lex=Lex;
3338
	    lex->alter_info.drop_list.push_back(new Alter_drop(Alter_drop::COLUMN,
3339
                                                               $3.str));
3340
	    lex->alter_info.flags|= ALTER_DROP_COLUMN;
unknown's avatar
unknown committed
3341
	  }
3342 3343 3344 3345
	| DROP FOREIGN KEY_SYM opt_ident
          {
	    Lex->alter_info.flags|= ALTER_DROP_INDEX;
          }
unknown's avatar
unknown committed
3346 3347 3348
	| DROP PRIMARY_SYM KEY_SYM
	  {
	    LEX *lex=Lex;
3349 3350 3351
	    lex->alter_info.drop_list.push_back(new Alter_drop(Alter_drop::KEY,
				               primary_key_name));
	    lex->alter_info.flags|= ALTER_DROP_INDEX;
unknown's avatar
unknown committed
3352
	  }
unknown's avatar
unknown committed
3353
	| DROP key_or_index field_ident
unknown's avatar
unknown committed
3354 3355
	  {
	    LEX *lex=Lex;
3356 3357 3358
	    lex->alter_info.drop_list.push_back(new Alter_drop(Alter_drop::KEY,
					                       $3.str));
	    lex->alter_info.flags|= ALTER_DROP_INDEX;
unknown's avatar
unknown committed
3359
	  }
3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371
	| DISABLE_SYM KEYS
          {
	    LEX *lex=Lex;
            lex->alter_info.keys_onoff= DISABLE;
	    lex->alter_info.flags|= ALTER_KEYS_ONOFF;
          }
	| ENABLE_SYM KEYS
          {
	    LEX *lex=Lex;
            lex->alter_info.keys_onoff= ENABLE;
	    lex->alter_info.flags|= ALTER_KEYS_ONOFF;
          }
unknown's avatar
unknown committed
3372
	| ALTER opt_column field_ident SET DEFAULT signed_literal
unknown's avatar
unknown committed
3373 3374
	  {
	    LEX *lex=Lex;
3375
	    lex->alter_info.alter_list.push_back(new Alter_column($3.str,$6));
3376
	    lex->alter_info.flags|= ALTER_CHANGE_COLUMN_DEFAULT;
unknown's avatar
unknown committed
3377
	  }
unknown's avatar
unknown committed
3378
	| ALTER opt_column field_ident DROP DEFAULT
unknown's avatar
unknown committed
3379 3380
	  {
	    LEX *lex=Lex;
3381 3382
	    lex->alter_info.alter_list.push_back(new Alter_column($3.str,
                                                                  (Item*) 0));
3383
	    lex->alter_info.flags|= ALTER_CHANGE_COLUMN_DEFAULT;
unknown's avatar
unknown committed
3384
	  }
3385
	| RENAME opt_to table_ident
3386
	  {
3387
	    LEX *lex=Lex;
3388
	    lex->select_lex.db=$3->db.str;
3389
	    lex->name= $3->table.str;
3390 3391 3392
            if (check_table_name($3->table.str,$3->table.length) ||
                $3->db.str && check_db_name($3->db.str))
            {
3393
              my_error(ER_WRONG_TABLE_NAME, MYF(0), $3->table.str);
3394 3395
              YYABORT;
            }
3396
	    lex->alter_info.flags|= ALTER_RENAME;
3397
	  }
3398 3399 3400 3401 3402 3403 3404 3405 3406 3407
	| CONVERT_SYM TO_SYM charset charset_name_or_default opt_collate
	  {
	    if (!$4)
	    {
	      THD *thd= YYTHD;
	      $4= thd->variables.collation_database;
	    }
	    $5= $5 ? $5 : $4;
	    if (!my_charset_same($4,$5))
	    {
3408 3409
	      my_error(ER_COLLATION_CHARSET_MISMATCH, MYF(0),
                       $5->name, $4->csname);
3410 3411
	      YYABORT;
	    }
3412
	    LEX *lex= Lex;
3413
	    lex->create_info.table_charset=
unknown's avatar
unknown committed
3414 3415 3416
	      lex->create_info.default_table_charset= $5;
	    lex->create_info.used_fields|= (HA_CREATE_USED_CHARSET |
					    HA_CREATE_USED_DEFAULT_CHARSET);
3417
	    lex->alter_info.flags|= ALTER_CONVERT;
3418
	  }
3419
        | create_table_options_space_separated
3420 3421
	  {
	    LEX *lex=Lex;
3422
	    lex->alter_info.flags|= ALTER_OPTIONS;
3423
	  }
3424
	| order_clause
3425 3426
	  {
	    LEX *lex=Lex;
3427
	    lex->alter_info.flags|= ALTER_ORDER;
3428
	  };
unknown's avatar
unknown committed
3429 3430 3431

opt_column:
	/* empty */	{}
unknown's avatar
unknown committed
3432
	| COLUMN_SYM	{};
unknown's avatar
unknown committed
3433 3434

opt_ignore:
3435 3436 3437
	/* empty */	{ Lex->ignore= 0;}
	| IGNORE_SYM	{ Lex->ignore= 1;}
	;
unknown's avatar
unknown committed
3438 3439

opt_restrict:
3440 3441 3442 3443
	/* empty */	{ Lex->drop_mode= DROP_DEFAULT; }
	| RESTRICT	{ Lex->drop_mode= DROP_RESTRICT; }
	| CASCADE	{ Lex->drop_mode= DROP_CASCADE; }
	;
unknown's avatar
unknown committed
3444 3445 3446 3447

opt_place:
	/* empty */	{}
	| AFTER_SYM ident { store_position_for_column($2.str); }
unknown's avatar
unknown committed
3448
	| FIRST_SYM	  { store_position_for_column(first_keyword); };
unknown's avatar
unknown committed
3449 3450 3451 3452

opt_to:
	/* empty */	{}
	| TO_SYM	{}
3453
	| EQ		{}
unknown's avatar
unknown committed
3454
	| AS		{};
unknown's avatar
unknown committed
3455

unknown's avatar
unknown committed
3456
/*
3457
  SLAVE START and SLAVE STOP are deprecated. We keep them for compatibility.
unknown's avatar
unknown committed
3458 3459
*/

unknown's avatar
unknown committed
3460
slave:
3461
	  START_SYM SLAVE slave_thread_opts
3462 3463 3464 3465 3466 3467
          {
	    LEX *lex=Lex;
            lex->sql_command = SQLCOM_SLAVE_START;
	    lex->type = 0;
	    /* We'll use mi structure for UNTIL options */
	    bzero((char*) &lex->mi, sizeof(lex->mi));
unknown's avatar
unknown committed
3468
            /* If you change this code don't forget to update SLAVE START too */
3469 3470 3471
          }
          slave_until
          {}
unknown's avatar
unknown committed
3472 3473 3474 3475 3476
        | STOP_SYM SLAVE slave_thread_opts
          {
	    LEX *lex=Lex;
            lex->sql_command = SQLCOM_SLAVE_STOP;
	    lex->type = 0;
unknown's avatar
unknown committed
3477
            /* If you change this code don't forget to update SLAVE STOP too */
unknown's avatar
unknown committed
3478
          }
3479 3480 3481 3482 3483
	| SLAVE START_SYM slave_thread_opts
         {
	   LEX *lex=Lex;
           lex->sql_command = SQLCOM_SLAVE_START;
	   lex->type = 0;
3484 3485 3486 3487 3488
	    /* We'll use mi structure for UNTIL options */
	    bzero((char*) &lex->mi, sizeof(lex->mi));
          }
          slave_until
          {}
3489 3490 3491 3492 3493 3494 3495 3496
	| SLAVE STOP_SYM slave_thread_opts
         {
	   LEX *lex=Lex;
           lex->sql_command = SQLCOM_SLAVE_STOP;
	   lex->type = 0;
         }
        ;

unknown's avatar
unknown committed
3497

unknown's avatar
unknown committed
3498
start:
3499 3500 3501 3502 3503
	START_SYM TRANSACTION_SYM start_transaction_opts
        {
           Lex->sql_command = SQLCOM_BEGIN;
           Lex->start_transaction_opt= $3;
        }
unknown's avatar
unknown committed
3504 3505
	;

3506 3507 3508 3509 3510 3511
start_transaction_opts:
        /*empty*/ { $$ = 0; }
        | WITH CONSISTENT_SYM SNAPSHOT_SYM
        {
           $$= MYSQL_START_TRANS_OPT_WITH_CONS_SNAPSHOT;
        }
3512
        ;
3513

unknown's avatar
unknown committed
3514
slave_thread_opts:
3515 3516
	{ Lex->slave_thd_opt= 0; }
	slave_thread_opt_list
3517
        {}
unknown's avatar
unknown committed
3518
	;
3519 3520

slave_thread_opt_list:
unknown's avatar
unknown committed
3521
	slave_thread_opt
3522 3523
	| slave_thread_opt_list ',' slave_thread_opt
	;
3524 3525

slave_thread_opt:
3526
	/*empty*/	{}
unknown's avatar
unknown committed
3527
	| SQL_THREAD	{ Lex->slave_thd_opt|=SLAVE_SQL; }
unknown's avatar
unknown committed
3528
	| RELAY_THREAD 	{ Lex->slave_thd_opt|=SLAVE_IO; }
unknown's avatar
unknown committed
3529
	;
3530

3531 3532 3533 3534 3535 3536 3537 3538 3539 3540
slave_until:
	/*empty*/	{}
	| UNTIL_SYM slave_until_opts
          {
            LEX *lex=Lex;
            if ((lex->mi.log_file_name || lex->mi.pos) &&
                (lex->mi.relay_log_name || lex->mi.relay_log_pos) ||
                !((lex->mi.log_file_name && lex->mi.pos) ||
                  (lex->mi.relay_log_name && lex->mi.relay_log_pos)))
            {
unknown's avatar
unknown committed
3541 3542
               my_message(ER_BAD_SLAVE_UNTIL_COND,
                          ER(ER_BAD_SLAVE_UNTIL_COND), MYF(0));
3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553
               YYABORT;
            }

          }
	;

slave_until_opts:
       master_file_def
       | slave_until_opts ',' master_file_def ;


unknown's avatar
unknown committed
3554 3555 3556 3557 3558
restore:
	RESTORE_SYM table_or_tables
	{
	   Lex->sql_command = SQLCOM_RESTORE_TABLE;
	}
unknown's avatar
unknown committed
3559
	table_list FROM TEXT_STRING_sys
unknown's avatar
unknown committed
3560 3561
        {
	  Lex->backup_dir = $6.str;
unknown's avatar
unknown committed
3562
        };
unknown's avatar
unknown committed
3563

unknown's avatar
unknown committed
3564 3565 3566 3567 3568
backup:
	BACKUP_SYM table_or_tables
	{
	   Lex->sql_command = SQLCOM_BACKUP_TABLE;
	}
unknown's avatar
unknown committed
3569
	table_list TO_SYM TEXT_STRING_sys
unknown's avatar
unknown committed
3570 3571
        {
	  Lex->backup_dir = $6.str;
unknown's avatar
unknown committed
3572
        };
unknown's avatar
unknown committed
3573

3574 3575 3576 3577 3578 3579
checksum:
        CHECKSUM_SYM table_or_tables
	{
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_CHECKSUM;
	}
3580 3581
	table_list opt_checksum_type
        {}
3582 3583
	;

3584 3585 3586 3587 3588 3589
opt_checksum_type:
        /* nothing */  { Lex->check_opt.flags= 0; }
	| QUICK        { Lex->check_opt.flags= T_QUICK; }
	| EXTENDED_SYM { Lex->check_opt.flags= T_EXTEND; }
        ;

unknown's avatar
unknown committed
3590
repair:
3591
	REPAIR opt_no_write_to_binlog table_or_tables
unknown's avatar
unknown committed
3592
	{
unknown's avatar
unknown committed
3593 3594
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_REPAIR;
3595
           lex->no_write_to_binlog= $2;
unknown's avatar
unknown committed
3596
	   lex->check_opt.init();
unknown's avatar
unknown committed
3597
	}
3598 3599 3600
	table_list opt_mi_repair_type
	{}
	;
unknown's avatar
unknown committed
3601

unknown's avatar
unknown committed
3602
opt_mi_repair_type:
unknown's avatar
unknown committed
3603
	/* empty */ { Lex->check_opt.flags = T_MEDIUM; }
unknown's avatar
unknown committed
3604
	| mi_repair_types {};
unknown's avatar
unknown committed
3605

unknown's avatar
unknown committed
3606 3607
mi_repair_types:
	mi_repair_type {}
unknown's avatar
unknown committed
3608
	| mi_repair_type mi_repair_types {};
3609

unknown's avatar
unknown committed
3610
mi_repair_type:
unknown's avatar
unknown committed
3611
	QUICK          { Lex->check_opt.flags|= T_QUICK; }
3612
	| EXTENDED_SYM { Lex->check_opt.flags|= T_EXTEND; }
unknown's avatar
unknown committed
3613
        | USE_FRM      { Lex->check_opt.sql_flags|= TT_USEFRM; };
unknown's avatar
unknown committed
3614 3615

analyze:
3616
	ANALYZE_SYM opt_no_write_to_binlog table_or_tables
unknown's avatar
unknown committed
3617
	{
unknown's avatar
unknown committed
3618 3619
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_ANALYZE;
3620
           lex->no_write_to_binlog= $2;
unknown's avatar
unknown committed
3621
	   lex->check_opt.init();
unknown's avatar
unknown committed
3622
	}
3623 3624 3625
	table_list opt_mi_check_type
	{}
	;
unknown's avatar
unknown committed
3626 3627

check:
unknown's avatar
unknown committed
3628
	CHECK_SYM table_or_tables
unknown's avatar
unknown committed
3629
	{
unknown's avatar
unknown committed
3630 3631 3632
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_CHECK;
	   lex->check_opt.init();
unknown's avatar
unknown committed
3633
	}
3634 3635 3636
	table_list opt_mi_check_type
	{}
	;
unknown's avatar
unknown committed
3637

unknown's avatar
unknown committed
3638 3639
opt_mi_check_type:
	/* empty */ { Lex->check_opt.flags = T_MEDIUM; }
unknown's avatar
unknown committed
3640
	| mi_check_types {};
unknown's avatar
unknown committed
3641 3642 3643

mi_check_types:
	mi_check_type {}
unknown's avatar
unknown committed
3644
	| mi_check_type mi_check_types {};
unknown's avatar
unknown committed
3645 3646 3647 3648 3649 3650

mi_check_type:
	QUICK      { Lex->check_opt.flags|= T_QUICK; }
	| FAST_SYM { Lex->check_opt.flags|= T_FAST; }
	| MEDIUM_SYM { Lex->check_opt.flags|= T_MEDIUM; }
	| EXTENDED_SYM { Lex->check_opt.flags|= T_EXTEND; }
unknown's avatar
unknown committed
3651
	| CHANGED  { Lex->check_opt.flags|= T_CHECK_ONLY_CHANGED; };
unknown's avatar
unknown committed
3652

unknown's avatar
unknown committed
3653
optimize:
3654
	OPTIMIZE opt_no_write_to_binlog table_or_tables
unknown's avatar
unknown committed
3655
	{
unknown's avatar
unknown committed
3656 3657
	   LEX *lex=Lex;
	   lex->sql_command = SQLCOM_OPTIMIZE;
unknown's avatar
unknown committed
3658
           lex->no_write_to_binlog= $2;
unknown's avatar
unknown committed
3659
	   lex->check_opt.init();
unknown's avatar
unknown committed
3660
	}
3661 3662 3663
	table_list opt_mi_check_type
	{}
	;
unknown's avatar
unknown committed
3664

3665 3666 3667
opt_no_write_to_binlog:
	/* empty */        { $$= 0; }
	| NO_WRITE_TO_BINLOG  { $$= 1; }
3668
	| LOCAL_SYM  { $$= 1; }
3669 3670
	;

3671 3672 3673 3674 3675
rename:
	RENAME table_or_tables
	{
	   Lex->sql_command=SQLCOM_RENAME_TABLE;
	}
3676 3677
	table_to_table_list
	{}
3678 3679 3680 3681
	| RENAME USER clear_privileges rename_list
          {
	    Lex->sql_command = SQLCOM_RENAME_USER;
          }
3682
	;
3683

3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696
rename_list:
        user TO_SYM user
        {
          if (Lex->users_list.push_back($1) || Lex->users_list.push_back($3))
            YYABORT;
        }
        | rename_list ',' user TO_SYM user
          {
            if (Lex->users_list.push_back($3) || Lex->users_list.push_back($5))
              YYABORT;
          }
        ;

3697 3698
table_to_table_list:
	table_to_table
unknown's avatar
unknown committed
3699
	| table_to_table_list ',' table_to_table;
3700 3701 3702

table_to_table:
	table_ident TO_SYM table_ident
3703
	{
unknown's avatar
unknown committed
3704
	  LEX *lex=Lex;
unknown's avatar
unknown committed
3705
	  SELECT_LEX *sl= lex->current_select;
unknown's avatar
unknown committed
3706 3707 3708 3709
	  if (!sl->add_table_to_list(lex->thd, $1,NULL,TL_OPTION_UPDATING,
				     TL_IGNORE) ||
	      !sl->add_table_to_list(lex->thd, $3,NULL,TL_OPTION_UPDATING,
				     TL_IGNORE))
3710
	    YYABORT;
3711
	};
3712

unknown's avatar
unknown committed
3713
keycache:
unknown's avatar
unknown committed
3714
        CACHE_SYM INDEX_SYM keycache_list IN_SYM key_cache_name
unknown's avatar
unknown committed
3715 3716
        {
          LEX *lex=Lex;
3717 3718
          lex->sql_command= SQLCOM_ASSIGN_TO_KEYCACHE;
	  lex->name_and_length= $5;
unknown's avatar
unknown committed
3719 3720 3721 3722 3723 3724 3725 3726
        }
        ;

keycache_list:
        assign_to_keycache
        | keycache_list ',' assign_to_keycache;

assign_to_keycache:
3727
        table_ident cache_keys_spec
unknown's avatar
unknown committed
3728 3729 3730 3731 3732 3733
        {
          LEX *lex=Lex;
          SELECT_LEX *sel= &lex->select_lex;
          if (!sel->add_table_to_list(lex->thd, $1, NULL, 0,
                                      TL_READ,
                                      sel->get_use_index(),
3734
                                      (List<String> *)0))
unknown's avatar
unknown committed
3735 3736 3737 3738
            YYABORT;
        }
        ;

3739 3740 3741
key_cache_name:
	ident	   { $$= $1; }
	| DEFAULT  { $$ = default_key_cache_base; }
3742
	;
3743

unknown's avatar
unknown committed
3744
preload:
unknown's avatar
unknown committed
3745
	LOAD INDEX_SYM INTO CACHE_SYM
unknown's avatar
unknown committed
3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758
	{
	  LEX *lex=Lex;
	  lex->sql_command=SQLCOM_PRELOAD_KEYS;
	}
	preload_list
	{}
	;

preload_list:
	preload_keys
	| preload_list ',' preload_keys;

preload_keys:
unknown's avatar
unknown committed
3759
	table_ident cache_keys_spec opt_ignore_leaves
unknown's avatar
unknown committed
3760 3761 3762
	{
	  LEX *lex=Lex;
	  SELECT_LEX *sel= &lex->select_lex;
unknown's avatar
unknown committed
3763 3764
	  if (!sel->add_table_to_list(lex->thd, $1, NULL, $3,
                                      TL_READ,
unknown's avatar
unknown committed
3765 3766 3767 3768 3769 3770
                                      sel->get_use_index(),
                                      (List<String> *)0))
            YYABORT;
	}
	;

3771
cache_keys_spec:
3772
        { Select->interval_list.empty(); }
3773 3774 3775 3776 3777 3778 3779
        cache_key_list_or_empty
        {
          LEX *lex=Lex;
          SELECT_LEX *sel= &lex->select_lex;
          sel->use_index= sel->interval_list;
        }
        ;
unknown's avatar
unknown committed
3780

unknown's avatar
unknown committed
3781
cache_key_list_or_empty:
3782
	/* empty */	{ Lex->select_lex.use_index_ptr= 0; }
3783
	| opt_key_or_index '(' key_usage_list2 ')'
3784 3785 3786 3787
	  {
            SELECT_LEX *sel= &Lex->select_lex;
	    sel->use_index_ptr= &sel->use_index;
	  }
unknown's avatar
unknown committed
3788 3789
	;

unknown's avatar
unknown committed
3790
opt_ignore_leaves:
unknown's avatar
unknown committed
3791 3792 3793 3794 3795
	/* empty */
	{ $$= 0; }
	| IGNORE_SYM LEAVES { $$= TL_OPTION_IGNORE_LEAVES; }
	;

unknown's avatar
unknown committed
3796
/*
unknown's avatar
unknown committed
3797
  Select : retrieve data from table
unknown's avatar
unknown committed
3798 3799 3800 3801
*/


select:
3802 3803 3804 3805 3806
	select_init
	{
	  LEX *lex= Lex;
	  lex->sql_command= SQLCOM_SELECT;
	  lex->select_lex.resolve_mode= SELECT_LEX::SELECT_MODE;
unknown's avatar
unknown committed
3807 3808
	}
	;
unknown's avatar
unknown committed
3809

3810
/* Need select_init2 for subselects. */
unknown's avatar
unknown committed
3811
select_init:
3812
	SELECT_SYM select_init2
3813
	|
3814 3815
	'(' SELECT_SYM select_part2 ')'
	  {
3816
	    LEX *lex= Lex;
unknown's avatar
unknown committed
3817
            SELECT_LEX * sel= lex->current_select;
unknown's avatar
unknown committed
3818
	    if (sel->set_braces(1))
3819
	    {
3820
	      yyerror(ER(ER_SYNTAX_ERROR));
3821 3822
	      YYABORT;
	    }
3823 3824
	  if (sel->linkage == UNION_TYPE &&
	      !sel->master_unit()->first_select()->braces)
unknown's avatar
unknown committed
3825
	  {
3826
	    yyerror(ER(ER_SYNTAX_ERROR));
unknown's avatar
unknown committed
3827 3828
	    YYABORT;
	  }
3829
            /* select in braces, can't contain global parameters */
unknown's avatar
unknown committed
3830 3831 3832
	    if (sel->master_unit()->fake_select_lex)
              sel->master_unit()->global_parameters=
                 sel->master_unit()->fake_select_lex;
unknown's avatar
unknown committed
3833
          } union_opt;
3834

3835 3836
select_init2:
	select_part2
3837
        {
3838
	  LEX *lex= Lex;
unknown's avatar
unknown committed
3839
          SELECT_LEX * sel= lex->current_select;
unknown's avatar
unknown committed
3840
          if (lex->current_select->set_braces(0))
3841
	  {
3842
	    yyerror(ER(ER_SYNTAX_ERROR));
3843 3844
	    YYABORT;
	  }
3845 3846
	  if (sel->linkage == UNION_TYPE &&
	      sel->master_unit()->first_select()->braces)
unknown's avatar
unknown committed
3847
	  {
3848
	    yyerror(ER(ER_SYNTAX_ERROR));
unknown's avatar
unknown committed
3849 3850
	    YYABORT;
	  }
3851
	}
3852
	union_clause
3853 3854
	;

3855
select_part2:
unknown's avatar
unknown committed
3856
	{
unknown's avatar
unknown committed
3857 3858 3859
	  LEX *lex= Lex;
	  SELECT_LEX *sel= lex->current_select;
	  lex->lock_option= TL_READ;
unknown's avatar
unknown committed
3860 3861
	  if (sel->linkage != UNION_TYPE)
	    mysql_init_select(lex);
3862
	  lex->current_select->parsing_place= SELECT_LIST;
unknown's avatar
unknown committed
3863 3864 3865
	}
	select_options select_item_list
	{
3866
	  Select->parsing_place= NO_MATTER;
unknown's avatar
unknown committed
3867
	}
unknown's avatar
unknown committed
3868
	select_into select_lock_type;
3869

unknown's avatar
unknown committed
3870
select_into:
3871 3872
	opt_limit_clause {}
        | into
unknown's avatar
unknown committed
3873
	| select_from
3874 3875
	| into select_from
	| select_from into;
unknown's avatar
unknown committed
3876 3877

select_from:
3878 3879
	  FROM join_table_list where_clause group_clause having_clause
	       opt_order_clause opt_limit_clause procedure_clause
unknown's avatar
unknown committed
3880 3881 3882 3883 3884
        | FROM DUAL_SYM opt_limit_clause
          /* oracle compatibility: oracle always requires FROM clause,
             and DUAL is system table without fields.
             Is "SELECT 1 FROM DUAL" any better than "SELECT 1" ?
          Hmmm :) */
3885
	;
unknown's avatar
unknown committed
3886 3887 3888

select_options:
	/* empty*/
unknown's avatar
unknown committed
3889
	| select_option_list;
unknown's avatar
unknown committed
3890 3891 3892

select_option_list:
	select_option_list select_option
unknown's avatar
unknown committed
3893
	| select_option;
unknown's avatar
unknown committed
3894 3895

select_option:
3896
	STRAIGHT_JOIN { Select->options|= SELECT_STRAIGHT_JOIN; }
3897 3898 3899 3900 3901 3902
	| HIGH_PRIORITY
	  {
	    if (check_simple_select())
	      YYABORT;
	    Lex->lock_option= TL_READ_HIGH_PRIORITY;
	  }
3903 3904 3905
	| DISTINCT	{ Select->options|= SELECT_DISTINCT; }
	| SQL_SMALL_RESULT { Select->options|= SELECT_SMALL_RESULT; }
	| SQL_BIG_RESULT { Select->options|= SELECT_BIG_RESULT; }
3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917
	| SQL_BUFFER_RESULT
	  {
	    if (check_simple_select())
	      YYABORT;
	    Select->options|= OPTION_BUFFER_RESULT;
	  }
	| SQL_CALC_FOUND_ROWS
	  {
	    if (check_simple_select())
	      YYABORT;
	    Select->options|= OPTION_FOUND_ROWS;
	  }
3918
	| SQL_NO_CACHE_SYM { Lex->safe_to_cache_query=0; }
3919 3920 3921 3922
	| SQL_CACHE_SYM
	  {
	    Lex->select_lex.options|= OPTION_TO_QUERY_CACHE;
	  }
3923 3924
	| ALL		{}
	;
unknown's avatar
unknown committed
3925

unknown's avatar
unknown committed
3926 3927 3928
select_lock_type:
	/* empty */
	| FOR_SYM UPDATE_SYM
3929 3930
	  {
	    LEX *lex=Lex;
3931
	    lex->current_select->set_lock_for_tables(TL_WRITE);
3932
	    lex->safe_to_cache_query=0;
3933
	  }
unknown's avatar
unknown committed
3934
	| LOCK_SYM IN_SYM SHARE_SYM MODE_SYM
3935 3936
	  {
	    LEX *lex=Lex;
3937 3938
	    lex->current_select->
	      set_lock_for_tables(TL_READ_WITH_SHARED_LOCKS);
3939
	    lex->safe_to_cache_query=0;
3940 3941
	  }
	;
unknown's avatar
unknown committed
3942

unknown's avatar
unknown committed
3943 3944 3945 3946 3947
select_item_list:
	  select_item_list ',' select_item
	| select_item
	| '*'
	  {
3948 3949
	    THD *thd= YYTHD;
	    if (add_item_to_list(thd, new Item_field(NULL, NULL, "*")))
unknown's avatar
unknown committed
3950
	      YYABORT;
3951
	    (thd->lex->current_select->with_wild)++;
unknown's avatar
unknown committed
3952
	  };
unknown's avatar
unknown committed
3953 3954 3955 3956 3957


select_item:
	  remember_name select_item2 remember_end select_alias
	  {
unknown's avatar
unknown committed
3958
	    if (add_item_to_list(YYTHD, $2))
unknown's avatar
unknown committed
3959 3960
	      YYABORT;
	    if ($4.str)
unknown's avatar
unknown committed
3961
	      $2->set_name($4.str,$4.length,system_charset_info);
3962 3963 3964 3965 3966 3967
	    else if (!$2->name) {
	      char *str = $1;
	      if (str[-1] == '`')
	        str--;
	      $2->set_name(str,(uint) ($3 - str), YYTHD->charset());
	    }
unknown's avatar
unknown committed
3968
	  };
unknown's avatar
unknown committed
3969 3970

remember_name:
unknown's avatar
unknown committed
3971
	{ $$=(char*) Lex->tok_start; };
unknown's avatar
unknown committed
3972 3973

remember_end:
unknown's avatar
unknown committed
3974
	{ $$=(char*) Lex->tok_end; };
unknown's avatar
unknown committed
3975 3976 3977

select_item2:
	table_wild	{ $$=$1; } /* table.* */
unknown's avatar
unknown committed
3978
	| expr		{ $$=$1; };
unknown's avatar
unknown committed
3979 3980

select_alias:
unknown's avatar
unknown committed
3981 3982 3983 3984 3985 3986
	/* empty */		{ $$.str=0;}
	| AS ident		{ $$=$2; }
	| AS TEXT_STRING_sys	{ $$=$2; }
	| ident			{ $$=$1; }
	| TEXT_STRING_sys	{ $$=$1; }
	;
unknown's avatar
unknown committed
3987 3988 3989

optional_braces:
	/* empty */ {}
unknown's avatar
unknown committed
3990
	| '(' ')' {};
unknown's avatar
unknown committed
3991

unknown's avatar
unknown committed
3992
/* all possible expressions */
unknown's avatar
SCRUM  
unknown committed
3993
expr:	
3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017
	expr or bool_term	{ $$= new Item_cond_or($1,$3); }
	| expr XOR bool_term	{ $$= new Item_cond_xor($1,$3); }
	| bool_term ;

bool_term:
	bool_term and bool_factor { $$= new Item_cond_and($1,$3); }
	| bool_factor ;

bool_factor:
	NOT_SYM bool_factor	{ $$= negate_expression(YYTHD, $2); }
	| bool_test ;

bool_test:
	bool_pri IS TRUE_SYM	{ $$= is_truth_value($1,1,0); }
	| bool_pri IS not TRUE_SYM { $$= is_truth_value($1,0,0); }
	| bool_pri IS FALSE_SYM	{ $$= is_truth_value($1,0,1); }
	| bool_pri IS not FALSE_SYM { $$= is_truth_value($1,1,1); }
	| bool_pri IS UNKNOWN_SYM { $$= new Item_func_isnull($1); }
	| bool_pri IS not UNKNOWN_SYM { $$= new Item_func_isnotnull($1); }
	| bool_pri ;

bool_pri:
	bool_pri IS NULL_SYM	{ $$= new Item_func_isnull($1); }
	| bool_pri IS not NULL_SYM { $$= new Item_func_isnotnull($1); }
4018 4019 4020 4021 4022
	| bool_pri EQUAL_SYM predicate	{ $$= new Item_func_equal($1,$3); }
	| bool_pri comp_op predicate %prec EQ
	  { $$= (*$2)(0)->create($1,$3); }
	| bool_pri comp_op all_or_any in_subselect %prec EQ
	  { $$= all_any_subquery_creator($1, $2, $3, $4); }
4023 4024 4025
	| predicate ;

predicate:
4026
	bit_expr IN_SYM '(' expr_list ')'
4027 4028
	  { $4->push_front($1); $$= new Item_func_in(*$4); }
	| bit_expr not IN_SYM '(' expr_list ')'
4029
	  { $5->push_front($1); $$= negate_expression(YYTHD, new Item_func_in(*$5)); }
4030 4031 4032
        | bit_expr IN_SYM in_subselect
	  { $$= new Item_in_subselect($1, $3); }
	| bit_expr not IN_SYM in_subselect
4033
          { $$= negate_expression(YYTHD, new Item_in_subselect($1, $4)); }
4034 4035 4036 4037
	| bit_expr BETWEEN_SYM bit_expr AND_SYM predicate
	  { $$= new Item_func_between($1,$3,$5); }
	| bit_expr not BETWEEN_SYM bit_expr AND_SYM predicate
	  { $$= negate_expression(YYTHD, new Item_func_between($1,$4,$6)); }
4038 4039 4040 4041 4042 4043 4044 4045 4046
	| bit_expr SOUNDS_SYM LIKE bit_expr
	  { $$= new Item_func_eq(new Item_func_soundex($1),
				 new Item_func_soundex($4)); }
	| bit_expr LIKE simple_expr opt_escape
          { $$= new Item_func_like($1,$3,$4); }
	| bit_expr not LIKE simple_expr opt_escape
          { $$= new Item_func_not(new Item_func_like($1,$4,$5)); }
	| bit_expr REGEXP bit_expr	{ $$= new Item_func_regex($1,$3); }
	| bit_expr not REGEXP bit_expr
4047
          { $$= negate_expression(YYTHD, new Item_func_regex($1,$4)); }
4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089
	| bit_expr ;

bit_expr:
	bit_expr '|' bit_term	{ $$= new Item_func_bit_or($1,$3); }
	| bit_term ;

bit_term:
	bit_term '&' bit_factor	{ $$= new Item_func_bit_and($1,$3); }
	| bit_factor ;

bit_factor:
	bit_factor SHIFT_LEFT value_expr
	  { $$= new Item_func_shift_left($1,$3); }
	| bit_factor SHIFT_RIGHT value_expr 
	  { $$= new Item_func_shift_right($1,$3); }
	| value_expr ;

value_expr:
	value_expr '+' term	{ $$= new Item_func_plus($1,$3); }
	| value_expr '-' term	{ $$= new Item_func_minus($1,$3); }
	| value_expr '+' interval_expr interval
	  { $$= new Item_date_add_interval($1,$3,$4,0); }
	| value_expr '-' interval_expr interval
	  { $$= new Item_date_add_interval($1,$3,$4,1); }
	| term ;

term:
	term '*' factor		{ $$= new Item_func_mul($1,$3); }
	| term '/' factor	{ $$= new Item_func_div($1,$3); }
	| term '%' factor	{ $$= new Item_func_mod($1,$3); }
	| term DIV_SYM factor	{ $$= new Item_func_int_div($1,$3); }
	| term MOD_SYM factor	{ $$= new Item_func_mod($1,$3); }
	| factor ;

factor:
        factor '^' simple_expr	{ $$= new Item_func_bit_xor($1,$3); }
	| simple_expr ;

or:	OR_SYM | OR2_SYM;
and:	AND_SYM | AND_AND_SYM;
not:	NOT_SYM | NOT2_SYM;
not2:	'!' | NOT2_SYM;
unknown's avatar
unknown committed
4090

unknown's avatar
unknown committed
4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102
comp_op:  EQ		{ $$ = &comp_eq_creator; }
	| GE		{ $$ = &comp_ge_creator; }
	| GT_SYM	{ $$ = &comp_gt_creator; }
	| LE		{ $$ = &comp_le_creator; }
	| LT		{ $$ = &comp_lt_creator; }
	| NE		{ $$ = &comp_ne_creator; }
	;

all_or_any: ALL     { $$ = 1; }
        |   ANY_SYM { $$ = 0; }
        ;

4103
interval_expr:
unknown's avatar
unknown committed
4104
         INTERVAL_SYM expr { $$=$2; }
4105 4106
        ;

unknown's avatar
unknown committed
4107 4108
simple_expr:
	simple_ident
4109
 	| simple_expr COLLATE_SYM ident_or_text %prec NEG
unknown's avatar
unknown committed
4110
	  {
unknown's avatar
unknown committed
4111 4112 4113
	    $$= new Item_func_set_collation($1,
					    new Item_string($3.str,
							    $3.length,
4114
                                                            YYTHD->charset()));
4115
	  }
unknown's avatar
unknown committed
4116
	| literal
unknown's avatar
unknown committed
4117
	| param_marker
unknown's avatar
unknown committed
4118
	| '@' ident_or_text SET_VAR expr
unknown's avatar
unknown committed
4119 4120
	  {
	    $$= new Item_func_set_user_var($2,$4);
4121 4122 4123
	    LEX *lex= Lex;
	    lex->uncacheable(UNCACHEABLE_RAND);
	    lex->variables_used= 1;
unknown's avatar
unknown committed
4124
	  }
4125
	| '@' ident_or_text
unknown's avatar
unknown committed
4126 4127
	  {
	    $$= new Item_func_get_user_var($2);
4128 4129 4130
	    LEX *lex= Lex;
	    lex->uncacheable(UNCACHEABLE_RAND);
	    lex->variables_used= 1;
unknown's avatar
unknown committed
4131
	  }
4132
	| '@' '@' opt_var_ident_type ident_or_text opt_component
unknown's avatar
unknown committed
4133
	  {
4134 4135 4136 4137 4138 4139

            if ($4.str && $5.str && check_reserved_words(&$4))
            {
              yyerror(ER(ER_SYNTAX_ERROR));
              YYABORT;
            }
4140
	    if (!($$= get_system_var(YYTHD, (enum_var_type) $3, $4, $5)))
unknown's avatar
unknown committed
4141
	      YYABORT;
4142
	    Lex->variables_used= 1;
unknown's avatar
unknown committed
4143
	  }
unknown's avatar
unknown committed
4144
	| sum_expr
4145 4146 4147 4148 4149 4150
	| simple_expr OR_OR_SYM simple_expr
	  { $$= new Item_func_concat($1, $3); }
	| '+' simple_expr %prec NEG	{ $$= $2; }
	| '-' simple_expr %prec NEG	{ $$= new Item_func_neg($2); }
	| '~' simple_expr %prec NEG	{ $$= new Item_func_bit_neg($2); }
	| not2 simple_expr %prec NEG	{ $$= negate_expression(YYTHD, $2); }
unknown's avatar
unknown committed
4151
	| '(' expr ')'		{ $$= $2; }
4152 4153 4154 4155 4156
	| '(' expr ',' expr_list ')'
	  {
	    $4->push_front($2);
	    $$= new Item_row(*$4);
	  }
4157
	| ROW_SYM '(' expr ',' expr_list ')'
unknown's avatar
unknown committed
4158
	  {
4159 4160
	    $5->push_front($3);
	    $$= new Item_row(*$5);
unknown's avatar
unknown committed
4161
	  }
unknown's avatar
unknown committed
4162
	| EXISTS exists_subselect { $$= $2; }
unknown's avatar
unknown committed
4163
	| singlerow_subselect   { $$= $1; }
unknown's avatar
unknown committed
4164
	| '{' ident expr '}'	{ $$= $3; }
4165
        | MATCH ident_list_arg AGAINST '(' bit_expr fulltext_options ')'
4166
          { $2->push_front($5);
4167 4168
            Select->add_ftfunc_to_list((Item_func_match*)
                                        ($$=new Item_func_match(*$2,$6))); }
unknown's avatar
unknown committed
4169
	| ASCII_SYM '(' expr ')' { $$= new Item_func_ascii($3); }
4170
	| BINARY simple_expr %prec NEG
unknown's avatar
unknown committed
4171
	  {
unknown's avatar
unknown committed
4172
            $$= create_func_cast($2, ITEM_CAST_CHAR, -1, 0, &my_charset_bin);
unknown's avatar
unknown committed
4173
	  }
4174
	| CAST_SYM '(' expr AS cast_type ')'
4175
	  {
unknown's avatar
unknown committed
4176
            LEX *lex= Lex;
4177
	    $$= create_func_cast($3, $5,
unknown's avatar
unknown committed
4178 4179 4180
                                 lex->length ? atoi(lex->length) : -1,
                                 lex->dec ? atoi(lex->dec) : 0,
                                 lex->charset);
4181
	  }
unknown's avatar
unknown committed
4182
	| CASE_SYM opt_expr WHEN_SYM when_list opt_else END
4183
	  { $$= new Item_func_case(* $4, $2, $5 ); }
4184
	| CONVERT_SYM '(' expr ',' cast_type ')'
4185 4186 4187
	  {
	    $$= create_func_cast($3, $5,
				 Lex->length ? atoi(Lex->length) : -1,
unknown's avatar
unknown committed
4188
                                 Lex->dec ? atoi(Lex->dec) : 0,
4189 4190
				 Lex->charset);
	  }
4191 4192
	| CONVERT_SYM '(' expr USING charset_name ')'
	  { $$= new Item_func_conv_charset($3,$5); }
unknown's avatar
SCRUM  
unknown committed
4193 4194
	| DEFAULT '(' simple_ident ')'
	  { $$= new Item_default_value($3); }
unknown's avatar
unknown committed
4195 4196
	| VALUES '(' simple_ident ')'
	  { $$= new Item_insert_value($3); }
unknown's avatar
unknown committed
4197
	| FUNC_ARG0 '(' ')'
unknown's avatar
unknown committed
4198 4199 4200
	  {
	    if (!$1.symbol->create_func)
	    {
4201 4202 4203
              my_error(ER_FEATURE_DISABLED, MYF(0),
                       $1.symbol->group->name,
                       $1.symbol->group->needed_define);
unknown's avatar
unknown committed
4204 4205 4206 4207
	      YYABORT;
	    }
	    $$= ((Item*(*)(void))($1.symbol->create_func))();
	  }
unknown's avatar
unknown committed
4208
	| FUNC_ARG1 '(' expr ')'
unknown's avatar
unknown committed
4209 4210 4211
	  {
	    if (!$1.symbol->create_func)
	    {
4212 4213 4214
              my_error(ER_FEATURE_DISABLED, MYF(0),
                       $1.symbol->group->name,
                       $1.symbol->group->needed_define);
unknown's avatar
unknown committed
4215 4216 4217 4218
	      YYABORT;
	    }
	    $$= ((Item*(*)(Item*))($1.symbol->create_func))($3);
	  }
unknown's avatar
unknown committed
4219
	| FUNC_ARG2 '(' expr ',' expr ')'
unknown's avatar
unknown committed
4220 4221 4222
	  {
	    if (!$1.symbol->create_func)
	    {
4223 4224 4225
	      my_error(ER_FEATURE_DISABLED, MYF(0),
                       $1.symbol->group->name,
                       $1.symbol->group->needed_define);
unknown's avatar
unknown committed
4226 4227 4228 4229
	      YYABORT;
	    }
	    $$= ((Item*(*)(Item*,Item*))($1.symbol->create_func))($3,$5);
	  }
unknown's avatar
unknown committed
4230
	| FUNC_ARG3 '(' expr ',' expr ',' expr ')'
unknown's avatar
unknown committed
4231 4232 4233
	  {
	    if (!$1.symbol->create_func)
	    {
4234 4235 4236
              my_error(ER_FEATURE_DISABLED, MYF(0),
                       $1.symbol->group->name,
                       $1.symbol->group->needed_define);
unknown's avatar
unknown committed
4237 4238 4239 4240
	      YYABORT;
	    }
	    $$= ((Item*(*)(Item*,Item*,Item*))($1.symbol->create_func))($3,$5,$7);
	  }
unknown's avatar
unknown committed
4241 4242 4243 4244
	| ADDDATE_SYM '(' expr ',' expr ')'
	  { $$= new Item_date_add_interval($3, $5, INTERVAL_DAY, 0);}
	| ADDDATE_SYM '(' expr ',' INTERVAL_SYM expr interval ')'
	  { $$= new Item_date_add_interval($3, $6, $7, 0); }
4245 4246
	| REPEAT_SYM '(' expr ',' expr ')'
	  { $$= new Item_func_repeat($3,$5); }
unknown's avatar
unknown committed
4247 4248 4249 4250 4251 4252
	| 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); }
unknown's avatar
unknown committed
4253 4254
	| CHARSET '(' expr ')'
	  { $$= new Item_func_charset($3); }
unknown's avatar
unknown committed
4255 4256
	| COALESCE '(' expr_list ')'
	  { $$= new Item_func_coalesce(* $3); }
unknown's avatar
unknown committed
4257 4258
	| COLLATION_SYM '(' expr ')'
	  { $$= new Item_func_collation($3); }
unknown's avatar
unknown committed
4259 4260 4261
	| CONCAT '(' expr_list ')'
	  { $$= new Item_func_concat(* $3); }
	| CONCAT_WS '(' expr ',' expr_list ')'
4262
	  { $5->push_front($3); $$= new Item_func_concat_ws(*$5); }
4263 4264
	| CONTAINS_SYM '(' expr ',' expr ')'
	  { $$= create_func_contains($3, $5); }
4265 4266
	| CONVERT_TZ_SYM '(' expr ',' expr ',' expr ')'
	  {
4267 4268
            if (Lex->add_time_zone_tables_to_query_tables(YYTHD))
              YYABORT;
4269 4270
	    $$= new Item_func_convert_tz($3, $5, $7);
	  }
unknown's avatar
unknown committed
4271
	| CURDATE optional_braces
4272
	  { $$= new Item_func_curdate_local(); Lex->safe_to_cache_query=0; }
unknown's avatar
unknown committed
4273
	| CURTIME optional_braces
4274
	  { $$= new Item_func_curtime_local(); Lex->safe_to_cache_query=0; }
unknown's avatar
unknown committed
4275
	| CURTIME '(' expr ')'
4276
	  {
4277
	    $$= new Item_func_curtime_local($3);
4278
	    Lex->safe_to_cache_query=0;
unknown's avatar
unknown committed
4279
	  }
unknown's avatar
unknown committed
4280
	| CURRENT_USER optional_braces
4281
          { $$= create_func_current_user(); }
4282 4283 4284 4285
	| DATE_ADD_INTERVAL '(' expr ',' interval_expr interval ')'
	  { $$= new Item_date_add_interval($3,$5,$6,0); }
	| DATE_SUB_INTERVAL '(' expr ',' interval_expr interval ')'
	  { $$= new Item_date_add_interval($3,$5,$6,1); }
unknown's avatar
unknown committed
4286
	| DATABASE '(' ')'
4287
	  {
unknown's avatar
unknown committed
4288
	    $$= new Item_func_database();
4289
            Lex->safe_to_cache_query=0;
unknown's avatar
unknown committed
4290
	  }
unknown's avatar
unknown committed
4291
	| DATE_SYM '(' expr ')'
unknown's avatar
unknown committed
4292
	  { $$= new Item_date_typecast($3); }
unknown's avatar
unknown committed
4293 4294
	| DAY_SYM '(' expr ')'
	  { $$= new Item_func_dayofmonth($3); }
unknown's avatar
unknown committed
4295
	| ELT_FUNC '(' expr ',' expr_list ')'
4296
	  { $5->push_front($3); $$= new Item_func_elt(*$5); }
unknown's avatar
unknown committed
4297 4298
	| MAKE_SET_SYM '(' expr ',' expr_list ')'
	  { $$= new Item_func_make_set($3, *$5); }
unknown's avatar
unknown committed
4299 4300 4301
	| ENCRYPT '(' expr ')'
	  {
	    $$= new Item_func_encrypt($3);
4302
	    Lex->uncacheable(UNCACHEABLE_RAND);
unknown's avatar
unknown committed
4303
	  }
unknown's avatar
unknown committed
4304
	| ENCRYPT '(' expr ',' expr ')'   { $$= new Item_func_encrypt($3,$5); }
4305
	| DECODE_SYM '(' expr ',' TEXT_STRING_literal ')'
unknown's avatar
unknown committed
4306
	  { $$= new Item_func_decode($3,$5.str); }
4307
	| ENCODE_SYM '(' expr ',' TEXT_STRING_literal ')'
unknown's avatar
unknown committed
4308
	 { $$= new Item_func_encode($3,$5.str); }
unknown's avatar
unknown committed
4309
	| DES_DECRYPT_SYM '(' expr ')'
unknown's avatar
unknown committed
4310
        { $$= new Item_func_des_decrypt($3); }
unknown's avatar
unknown committed
4311
	| DES_DECRYPT_SYM '(' expr ',' expr ')'
unknown's avatar
unknown committed
4312
        { $$= new Item_func_des_decrypt($3,$5); }
unknown's avatar
unknown committed
4313
	| DES_ENCRYPT_SYM '(' expr ')'
unknown's avatar
unknown committed
4314
        { $$= new Item_func_des_encrypt($3); }
unknown's avatar
unknown committed
4315
	| DES_ENCRYPT_SYM '(' expr ',' expr ')'
unknown's avatar
unknown committed
4316
        { $$= new Item_func_des_encrypt($3,$5); }
unknown's avatar
unknown committed
4317 4318 4319 4320 4321 4322
	| 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); }
4323 4324
	| FALSE_SYM
	  { $$= new Item_int((char*) "FALSE",0,1); }
unknown's avatar
unknown committed
4325 4326 4327 4328 4329 4330
	| 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 ')'
	  {
unknown's avatar
unknown committed
4331
	    $$= new Item_func_date_format (new Item_func_from_unixtime($3),$5,0);
unknown's avatar
unknown committed
4332 4333
	  }
	| FIELD_FUNC '(' expr ',' expr_list ')'
4334
	  { $5->push_front($3); $$= new Item_func_field(*$5); }
unknown's avatar
unknown committed
4335 4336 4337 4338 4339
	| geometry_function
	  {
#ifdef HAVE_SPATIAL
	    $$= $1;
#else
4340 4341
	    my_error(ER_FEATURE_DISABLED, MYF(0),
                     sym_group_geom.name, sym_group_geom.needed_define);
unknown's avatar
unknown committed
4342 4343 4344
	    YYABORT;
#endif
	  }
4345
	| GET_FORMAT '(' date_time_type  ',' expr ')'
4346
	  { $$= new Item_func_get_format($3, $5); }
unknown's avatar
unknown committed
4347 4348 4349 4350 4351 4352
	| 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); }
4353
	| interval_expr interval '+' expr
unknown's avatar
unknown committed
4354
	  /* we cannot put interval before - */
4355 4356 4357 4358 4359
	  { $$= new Item_date_add_interval($4,$1,$2,0); }
	| interval_expr
	  {
            if ($1->type() != Item::ROW_ITEM)
            {
4360
              yyerror(ER(ER_SYNTAX_ERROR));
4361 4362 4363 4364
              YYABORT;
            }
            $$= new Item_func_interval((Item_row *)$1);
          }
unknown's avatar
unknown committed
4365 4366
	| LAST_INSERT_ID '(' ')'
	  {
4367
	    $$= new Item_func_last_insert_id();
4368
	    Lex->safe_to_cache_query= 0;
unknown's avatar
unknown committed
4369 4370 4371
	  }
	| LAST_INSERT_ID '(' expr ')'
	  {
4372
	    $$= new Item_func_last_insert_id($3);
4373
	    Lex->safe_to_cache_query= 0;
unknown's avatar
unknown committed
4374 4375 4376 4377 4378 4379 4380
	  }
	| 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); }
unknown's avatar
unknown committed
4381
	| GREATEST_SYM '(' expr ',' expr_list ')'
unknown's avatar
unknown committed
4382 4383 4384
	  { $5->push_front($3); $$= new Item_func_max(*$5); }
	| LEAST_SYM '(' expr ',' expr_list ')'
	  { $5->push_front($3); $$= new Item_func_min(*$5); }
4385
	| LOG_SYM '(' expr ')'
unknown's avatar
unknown committed
4386
	  { $$= new Item_func_log($3); }
4387
	| LOG_SYM '(' expr ',' expr ')'
unknown's avatar
unknown committed
4388
	  { $$= new Item_func_log($3, $5); }
4389
	| MASTER_POS_WAIT '(' expr ',' expr ')'
unknown's avatar
unknown committed
4390
	  {
4391
	    $$= new Item_master_pos_wait($3, $5);
unknown's avatar
unknown committed
4392
	    Lex->safe_to_cache_query=0;
unknown's avatar
unknown committed
4393
		  }
4394
	| MASTER_POS_WAIT '(' expr ',' expr ',' expr ')'
unknown's avatar
unknown committed
4395
	  {
4396
	    $$= new Item_master_pos_wait($3, $5, $7);
unknown's avatar
unknown committed
4397
	    Lex->safe_to_cache_query=0;
4398
	  }
unknown's avatar
unknown committed
4399 4400
	| MICROSECOND_SYM '(' expr ')'
	  { $$= new Item_func_microsecond($3); }
unknown's avatar
unknown committed
4401 4402
	| MINUTE_SYM '(' expr ')'
	  { $$= new Item_func_minute($3); }
4403 4404
	| MOD_SYM '(' expr ',' expr ')'
	  { $$ = new Item_func_mod( $3, $5); }
unknown's avatar
unknown committed
4405 4406 4407
	| MONTH_SYM '(' expr ')'
	  { $$= new Item_func_month($3); }
	| NOW_SYM optional_braces
4408
	  { $$= new Item_func_now_local(); Lex->safe_to_cache_query=0;}
unknown's avatar
unknown committed
4409
	| NOW_SYM '(' expr ')'
4410
	  { $$= new Item_func_now_local($3); Lex->safe_to_cache_query=0;}
unknown's avatar
unknown committed
4411
	| PASSWORD '(' expr ')'
4412
	  {
4413 4414
	    $$= YYTHD->variables.old_passwords ?
              (Item *) new Item_func_old_password($3) :
unknown's avatar
unknown committed
4415 4416 4417 4418
	      (Item *) new Item_func_password($3);
	  }
	| OLD_PASSWORD '(' expr ')'
	  { $$=  new Item_func_old_password($3); }
4419
	| POSITION_SYM '(' bit_expr IN_SYM expr ')'
unknown's avatar
unknown committed
4420
	  { $$ = new Item_func_locate($5,$3); }
4421 4422
	| QUARTER_SYM '(' expr ')'
	  { $$ = new Item_func_quarter($3); }
unknown's avatar
unknown committed
4423
	| RAND '(' expr ')'
4424
	  { $$= new Item_func_rand($3); Lex->uncacheable(UNCACHEABLE_RAND);}
unknown's avatar
unknown committed
4425
	| RAND '(' ')'
4426
	  { $$= new Item_func_rand(); Lex->uncacheable(UNCACHEABLE_RAND);}
unknown's avatar
unknown committed
4427 4428 4429 4430 4431 4432 4433
	| 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); }
4434 4435 4436 4437 4438
	| ROW_COUNT_SYM '(' ')'
	  {
	    $$= new Item_func_row_count();
	    Lex->safe_to_cache_query= 0;
	  }
unknown's avatar
unknown committed
4439 4440 4441 4442
	| SUBDATE_SYM '(' expr ',' expr ')'
	  { $$= new Item_date_add_interval($3, $5, INTERVAL_DAY, 1);}
	| SUBDATE_SYM '(' expr ',' INTERVAL_SYM expr interval ')'
	  { $$= new Item_date_add_interval($3, $6, $7, 1); }
unknown's avatar
unknown committed
4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454
	| 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); }
unknown's avatar
unknown committed
4455
	| TIME_SYM '(' expr ')'
unknown's avatar
unknown committed
4456 4457 4458
	  { $$= new Item_time_typecast($3); }
	| TIMESTAMP '(' expr ')'
	  { $$= new Item_datetime_typecast($3); }
unknown's avatar
unknown committed
4459
	| TIMESTAMP '(' expr ',' expr ')'
unknown's avatar
unknown committed
4460
	  { $$= new Item_func_add_time($3, $5, 1, 0); }
4461 4462 4463 4464
	| TIMESTAMP_ADD '(' interval_time_st ',' expr ',' expr ')'
	  { $$= new Item_date_add_interval($7,$5,$3,0); }
	| TIMESTAMP_DIFF '(' interval_time_st ',' expr ',' expr ')'
	  { $$= new Item_func_timestamp_diff($5,$7,$3); }
unknown's avatar
unknown committed
4465
	| TRIM '(' expr ')'
4466 4467
	  { $$= new Item_func_trim($3); }
	| TRIM '(' LEADING expr FROM expr ')'
unknown's avatar
unknown committed
4468
	  { $$= new Item_func_ltrim($6,$4); }
4469
	| TRIM '(' TRAILING expr FROM expr ')'
unknown's avatar
unknown committed
4470
	  { $$= new Item_func_rtrim($6,$4); }
4471
	| TRIM '(' BOTH expr FROM expr ')'
unknown's avatar
unknown committed
4472
	  { $$= new Item_func_trim($6,$4); }
4473 4474 4475 4476 4477 4478
	| TRIM '(' LEADING FROM expr ')'
	 { $$= new Item_func_ltrim($5); }
	| TRIM '(' TRAILING FROM expr ')'
	  { $$= new Item_func_rtrim($5); }
	| TRIM '(' BOTH FROM expr ')'
	  { $$= new Item_func_trim($5); }
unknown's avatar
unknown committed
4479 4480
	| TRIM '(' expr FROM expr ')'
	  { $$= new Item_func_trim($5,$3); }
4481 4482
	| TRUNCATE_SYM '(' expr ',' expr ')'
	  { $$= new Item_func_round($3,$5,1); }
4483 4484 4485
	| TRUE_SYM
	  { $$= new Item_int((char*) "TRUE",1,1); }
	| ident '.' ident '(' udf_expr_list ')'
unknown's avatar
unknown committed
4486
	  {
4487 4488 4489 4490
	    LEX *lex= Lex;
	    sp_name *name= new sp_name($1, $3);

	    name->init_qname(YYTHD);
4491
	    sp_add_to_hash(&Lex->spfuns, name);
4492 4493
	    if ($5)
	      $$= new Item_func_sp(name, *$5);
unknown's avatar
unknown committed
4494
	    else
4495
	      $$= new Item_func_sp(name);
unknown's avatar
unknown committed
4496
	  }
4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552
	| IDENT_sys '(' udf_expr_list ')'
          {
#ifdef HAVE_DLOPEN
            udf_func *udf;

            if (using_udf_functions && (udf=find_udf($1.str, $1.length)))
            {
              switch (udf->returns) {
              case STRING_RESULT:
                if (udf->type == UDFTYPE_FUNCTION)
                {
                  if ($3 != NULL)
                    $$ = new Item_func_udf_str(udf, *$3);
                  else
                    $$ = new Item_func_udf_str(udf);
                }
                else
                {
                  if ($3 != NULL)
                    $$ = new Item_sum_udf_str(udf, *$3);
                  else
                    $$ = new Item_sum_udf_str(udf);
                }
                break;
              case REAL_RESULT:
                if (udf->type == UDFTYPE_FUNCTION)
                {
                  if ($3 != NULL)
                    $$ = new Item_func_udf_float(udf, *$3);
                  else
                    $$ = new Item_func_udf_float(udf);
                }
                else
                {
                  if ($3 != NULL)
                    $$ = new Item_sum_udf_float(udf, *$3);
                  else
                    $$ = new Item_sum_udf_float(udf);
                }
                break;
              case INT_RESULT:
                if (udf->type == UDFTYPE_FUNCTION)
                {
                  if ($3 != NULL)
                    $$ = new Item_func_udf_int(udf, *$3);
                  else
                    $$ = new Item_func_udf_int(udf);
                }
                else
                {
                  if ($3 != NULL)
                    $$ = new Item_sum_udf_int(udf, *$3);
                  else
                    $$ = new Item_sum_udf_int(udf);
                }
                break;
unknown's avatar
unknown committed
4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568
              case DECIMAL_RESULT:
                if (udf->type == UDFTYPE_FUNCTION)
                {
                  if ($3 != NULL)
                    $$ = new Item_func_udf_decimal(udf, *$3);
                  else
                    $$ = new Item_func_udf_decimal(udf);
                }
                else
                {
                  if ($3 != NULL)
                    $$ = new Item_sum_udf_decimal(udf, *$3);
                  else
                    $$ = new Item_sum_udf_decimal(udf);
                }
                break;
4569 4570 4571 4572 4573 4574 4575 4576 4577
              default:
                YYABORT;
              }
            }
            else
#endif /* HAVE_DLOPEN */
            {
              sp_name *name= sp_name_current_db_new(YYTHD, $1);

4578
              sp_add_to_hash(&Lex->spfuns, name);
4579 4580 4581 4582 4583 4584
              if ($3)
                $$= new Item_func_sp(name, *$3);
              else
                $$= new Item_func_sp(name);
	    }
          }
unknown's avatar
unknown committed
4585
	| UNIQUE_USERS '(' text_literal ',' NUM ',' NUM ',' expr_list ')'
4586
	  {
unknown's avatar
unknown committed
4587 4588
            $$= new Item_func_unique_users($3,atoi($5.str),atoi($7.str), * $9);
	  }
unknown's avatar
unknown committed
4589
	| UNIX_TIMESTAMP '(' ')'
unknown's avatar
unknown committed
4590 4591
	  {
	    $$= new Item_func_unix_timestamp();
4592
	    Lex->safe_to_cache_query=0;
unknown's avatar
unknown committed
4593
	  }
unknown's avatar
unknown committed
4594 4595 4596
	| UNIX_TIMESTAMP '(' expr ')'
	  { $$= new Item_func_unix_timestamp($3); }
	| USER '(' ')'
4597
	  { $$= new Item_func_user(); Lex->safe_to_cache_query=0; }
4598 4599 4600 4601 4602 4603
	| UTC_DATE_SYM optional_braces
	  { $$= new Item_func_curdate_utc(); Lex->safe_to_cache_query=0;}
	| UTC_TIME_SYM optional_braces
	  { $$= new Item_func_curtime_utc(); Lex->safe_to_cache_query=0;}
	| UTC_TIMESTAMP_SYM optional_braces
	  { $$= new Item_func_now_utc(); Lex->safe_to_cache_query=0;}
unknown's avatar
unknown committed
4604
	| WEEK_SYM '(' expr ')'
unknown's avatar
unknown committed
4605
	  {
4606
            $$= new Item_func_week($3,new Item_int((char*) "0",
unknown's avatar
unknown committed
4607
				   YYTHD->variables.default_week_format,1));
4608
          }
unknown's avatar
unknown committed
4609 4610 4611 4612 4613 4614 4615 4616 4617
	| 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 ')'
4618
	  {
unknown's avatar
unknown committed
4619
	    $$=new Item_func_benchmark($3,$5);
4620
	    Lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
unknown's avatar
unknown committed
4621
	  }
unknown's avatar
unknown committed
4622
	| EXTRACT_SYM '(' interval FROM expr ')'
unknown's avatar
unknown committed
4623
	{ $$=new Item_extract( $3, $5); };
unknown's avatar
unknown committed
4624

unknown's avatar
unknown committed
4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635
geometry_function:
	GEOMFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| GEOMFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
	| GEOMFROMWKB '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_wkb($3)); }
	| GEOMFROMWKB '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_wkb($3, $5)); }
	| GEOMETRYCOLLECTION '(' expr_list ')'
	  { $$= GEOM_NEW(Item_func_spatial_collection(* $3,
4636 4637
                           Geometry::wkb_geometrycollection,
                           Geometry::wkb_point)); }
unknown's avatar
unknown committed
4638 4639
	| LINESTRING '(' expr_list ')'
	  { $$= GEOM_NEW(Item_func_spatial_collection(* $3,
4640
                  Geometry::wkb_linestring, Geometry::wkb_point)); }
unknown's avatar
unknown committed
4641 4642
 	| MULTILINESTRING '(' expr_list ')'
	  { $$= GEOM_NEW( Item_func_spatial_collection(* $3,
4643
                   Geometry::wkb_multilinestring, Geometry::wkb_linestring)); }
unknown's avatar
unknown committed
4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657
 	| MLINEFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| MLINEFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
	| MPOINTFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| MPOINTFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
	| MPOLYFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| MPOLYFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
	| MULTIPOINT '(' expr_list ')'
	  { $$= GEOM_NEW(Item_func_spatial_collection(* $3,
4658
                  Geometry::wkb_multipoint, Geometry::wkb_point)); }
unknown's avatar
unknown committed
4659 4660
 	| MULTIPOLYGON '(' expr_list ')'
	  { $$= GEOM_NEW(Item_func_spatial_collection(* $3,
4661
                  Geometry::wkb_multipolygon, Geometry::wkb_polygon)); }
unknown's avatar
unknown committed
4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673
	| POINT_SYM '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_point($3,$5)); }
 	| POINTFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| POINTFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
	| POLYFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| POLYFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
	| POLYGON '(' expr_list ')'
	  { $$= GEOM_NEW(Item_func_spatial_collection(* $3,
4674
	          Geometry::wkb_polygon, Geometry::wkb_linestring)); }
unknown's avatar
unknown committed
4675 4676 4677 4678 4679 4680 4681 4682 4683 4684
 	| GEOMCOLLFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| GEOMCOLLFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
 	| LINEFROMTEXT '(' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3)); }
	| LINEFROMTEXT '(' expr ',' expr ')'
	  { $$= GEOM_NEW(Item_func_geometry_from_text($3, $5)); }
	;

4685 4686 4687 4688 4689 4690
fulltext_options:
        /* nothing */                   { $$= FT_NL;  }
        | WITH QUERY_SYM EXPANSION_SYM  { $$= FT_NL | FT_EXPAND; }
        | IN_SYM BOOLEAN_SYM MODE_SYM   { $$= FT_BOOL; }
        ;

unknown's avatar
unknown committed
4691
udf_expr_list:
4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722
	/* empty */	 { $$= NULL; }
	| udf_expr_list2 { $$= $1;}
	;

udf_expr_list2:
	{ Select->expr_list.push_front(new List<Item>); }
	udf_expr_list3
	{ $$= Select->expr_list.pop(); }
	;

udf_expr_list3:
	udf_expr 
	  {
	    Select->expr_list.head()->push_back($1);
	  }
	| udf_expr_list3 ',' udf_expr 
	  {
	    Select->expr_list.head()->push_back($3);
	  }
	;

udf_expr:
	remember_name expr remember_end select_alias
	{
	  if ($4.str)
	    $2->set_name($4.str,$4.length,system_charset_info);
	  else
	    $2->set_name($1,(uint) ($3 - $1), YYTHD->charset());
	  $$= $2;
	}
	;
unknown's avatar
unknown committed
4723 4724 4725 4726 4727 4728 4729 4730

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); }
4731 4732
	| BIT_XOR  '(' in_sum_expr ')'
	  { $$=new Item_sum_xor($3); }
unknown's avatar
unknown committed
4733
	| COUNT_SYM '(' opt_all '*' ')'
unknown's avatar
unknown committed
4734 4735 4736
	  { $$=new Item_sum_count(new Item_int((int32) 0L,1)); }
	| COUNT_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_count($3); }
4737
	| COUNT_SYM '(' DISTINCT
unknown's avatar
unknown committed
4738
	  { Select->in_sum_expr++; }
4739
	   expr_list
unknown's avatar
unknown committed
4740
	  { Select->in_sum_expr--; }
4741 4742
	  ')'
	  { $$=new Item_sum_count_distinct(* $5); }
unknown's avatar
unknown committed
4743 4744 4745 4746
	| 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); }
4747 4748 4749 4750 4751 4752 4753
/*
   According to ANSI SQL, DISTINCT is allowed and has
   no sence inside MIN and MAX grouping functions; so MIN|MAX(DISTINCT ...)
   is processed like an ordinary MIN | MAX()
 */
	| MIN_SYM '(' DISTINCT in_sum_expr ')'
	  { $$=new Item_sum_min($4); }
unknown's avatar
unknown committed
4754 4755
	| MAX_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_max($3); }
4756 4757
	| MAX_SYM '(' DISTINCT in_sum_expr ')'
	  { $$=new Item_sum_max($4); }
unknown's avatar
unknown committed
4758 4759
	| STD_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_std($3); }
unknown's avatar
unknown committed
4760 4761
	| VARIANCE_SYM '(' in_sum_expr ')'
	  { $$=new Item_sum_variance($3); }
unknown's avatar
unknown committed
4762
	| SUM_SYM '(' in_sum_expr ')'
4763
	  { $$=new Item_sum_sum($3); }
4764 4765
	| SUM_SYM '(' DISTINCT in_sum_expr ')'
	  { $$=new Item_sum_sum_distinct($4); }
unknown's avatar
unknown committed
4766 4767 4768 4769 4770
	| GROUP_CONCAT_SYM '(' opt_distinct
	  { Select->in_sum_expr++; }
	  expr_list opt_gorder_clause
	  opt_gconcat_separator
	 ')'
unknown's avatar
unknown committed
4771
	  {
unknown's avatar
unknown committed
4772 4773 4774
	    Select->in_sum_expr--;
	    $$=new Item_func_group_concat($3,$5,Select->gorder_list,$7);
	    $5->empty();
4775 4776 4777 4778 4779 4780 4781
	  };

opt_distinct:
    /* empty */ { $$ = 0; }
    |DISTINCT   { $$ = 1; };

opt_gconcat_separator:
unknown's avatar
unknown committed
4782
    /* empty */        { $$ = new (YYTHD->mem_root) String(",",1,default_charset_info); }
4783
    |SEPARATOR_SYM text_string  { $$ = $2; };
unknown's avatar
unknown committed
4784

4785 4786

opt_gorder_clause:
4787 4788
	  /* empty */
	  {
unknown's avatar
unknown committed
4789
            Select->gorder_list = NULL;
4790 4791 4792
	  }
	| order_clause
          {
unknown's avatar
unknown committed
4793 4794 4795
            SELECT_LEX *select= Select;
            select->gorder_list=
	      (SQL_LIST*) sql_memdup((char*) &select->order_list,
4796
				     sizeof(st_sql_list));
unknown's avatar
unknown committed
4797
	    select->order_list.empty();
4798
	  };
unknown's avatar
unknown committed
4799

unknown's avatar
unknown committed
4800 4801

in_sum_expr:
unknown's avatar
unknown committed
4802
	opt_all
4803 4804 4805 4806
	{
	  LEX *lex= Lex;
	  if (lex->current_select->inc_in_sum_expr())
	  {
4807
	    yyerror(ER(ER_SYNTAX_ERROR));
4808
	    YYABORT;
4809 4810
	  }
	}
unknown's avatar
unknown committed
4811 4812
	expr
	{
unknown's avatar
unknown committed
4813
	  Select->in_sum_expr--;
4814
	  $$= $3;
unknown's avatar
unknown committed
4815
	};
unknown's avatar
unknown committed
4816

4817
cast_type:
unknown's avatar
unknown committed
4818 4819
        BINARY opt_len		{ $$=ITEM_CAST_CHAR; Lex->charset= &my_charset_bin; Lex->dec= 0; }
        | CHAR_SYM opt_len opt_binary	{ $$=ITEM_CAST_CHAR; Lex->dec= 0; }
4820
	| NCHAR_SYM opt_len	{ $$=ITEM_CAST_CHAR; Lex->charset= national_charset_info; Lex->dec=0; }
unknown's avatar
unknown committed
4821 4822 4823 4824 4825 4826 4827 4828
        | SIGNED_SYM		{ $$=ITEM_CAST_SIGNED_INT; Lex->charset= NULL; Lex->dec=Lex->length= (char*)0; }
        | SIGNED_SYM INT_SYM	{ $$=ITEM_CAST_SIGNED_INT; Lex->charset= NULL; Lex->dec=Lex->length= (char*)0; }
        | UNSIGNED		{ $$=ITEM_CAST_UNSIGNED_INT; Lex->charset= NULL; Lex->dec=Lex->length= (char*)0; }
        | UNSIGNED INT_SYM	{ $$=ITEM_CAST_UNSIGNED_INT; Lex->charset= NULL; Lex->dec=Lex->length= (char*)0; }
        | DATE_SYM		{ $$=ITEM_CAST_DATE; Lex->charset= NULL; Lex->dec=Lex->length= (char*)0; }
        | TIME_SYM		{ $$=ITEM_CAST_TIME; Lex->charset= NULL; Lex->dec=Lex->length= (char*)0; }
        | DATETIME		{ $$=ITEM_CAST_DATETIME; Lex->charset= NULL; Lex->dec=Lex->length= (char*)0; }
        | DECIMAL_SYM float_options { $$=ITEM_CAST_DECIMAL; Lex->charset= NULL; }
4829 4830
	;

unknown's avatar
unknown committed
4831
expr_list:
4832
	{ Select->expr_list.push_front(new List<Item>); }
unknown's avatar
unknown committed
4833
	expr_list2
unknown's avatar
unknown committed
4834
	{ $$= Select->expr_list.pop(); };
unknown's avatar
unknown committed
4835 4836

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

unknown's avatar
unknown committed
4840 4841
ident_list_arg:
          ident_list          { $$= $1; }
unknown's avatar
unknown committed
4842
        | '(' ident_list ')'  { $$= $2; };
unknown's avatar
unknown committed
4843

unknown's avatar
unknown committed
4844
ident_list:
4845
        { Select->expr_list.push_front(new List<Item>); }
unknown's avatar
unknown committed
4846
        ident_list2
unknown's avatar
unknown committed
4847
        { $$= Select->expr_list.pop(); };
unknown's avatar
unknown committed
4848 4849

ident_list2:
4850
        simple_ident { Select->expr_list.head()->push_back($1); }
unknown's avatar
unknown committed
4851
        | ident_list2 ',' simple_ident { Select->expr_list.head()->push_back($3); };
unknown's avatar
unknown committed
4852 4853 4854

opt_expr:
	/* empty */      { $$= NULL; }
4855
	| expr           { $$= $1; };
unknown's avatar
unknown committed
4856 4857 4858

opt_else:
	/* empty */    { $$= NULL; }
unknown's avatar
unknown committed
4859
	| ELSE expr    { $$= $2; };
unknown's avatar
unknown committed
4860 4861

when_list:
unknown's avatar
unknown committed
4862
        { Select->when_list.push_front(new List<Item>); }
unknown's avatar
unknown committed
4863
	when_list2
unknown's avatar
unknown committed
4864
	{ $$= Select->when_list.pop(); };
unknown's avatar
unknown committed
4865 4866

when_list2:
unknown's avatar
unknown committed
4867
	expr THEN_SYM expr
unknown's avatar
unknown committed
4868
	  {
unknown's avatar
unknown committed
4869
	    SELECT_LEX *sel=Select;
unknown's avatar
unknown committed
4870 4871
	    sel->when_list.head()->push_back($1);
	    sel->when_list.head()->push_back($3);
unknown's avatar
unknown committed
4872
	}
unknown's avatar
unknown committed
4873
	| when_list2 WHEN_SYM expr THEN_SYM expr
unknown's avatar
unknown committed
4874
	  {
unknown's avatar
unknown committed
4875
	    SELECT_LEX *sel=Select;
unknown's avatar
unknown committed
4876 4877
	    sel->when_list.head()->push_back($3);
	    sel->when_list.head()->push_back($5);
unknown's avatar
unknown committed
4878
	  };
unknown's avatar
unknown committed
4879

4880 4881 4882
table_ref:
        table_factor            { $$=$1; }
        | join_table            { $$=$1; }
4883
          {
4884 4885 4886
	    LEX *lex= Lex;
            if (!($$= lex->current_select->nest_last_join(lex->thd)))
              YYABORT;
4887
          }
4888 4889
        ;

unknown's avatar
unknown committed
4890
join_table_list:
4891 4892 4893 4894 4895 4896 4897 4898 4899
        table_ref { $$=$1; }
        | join_table_list ',' table_ref { $$=$3; }
        ;

join_table:
        table_ref normal_join table_ref { $$=$3; }
	| table_ref STRAIGHT_JOIN table_factor
	  { $3->straight=1; $$=$3 ; }
	| table_ref normal_join table_ref ON expr
unknown's avatar
unknown committed
4900
	  { add_join_on($3,$5); $$=$3; }
4901
	| table_ref normal_join table_ref
unknown's avatar
unknown committed
4902
	  USING
unknown's avatar
unknown committed
4903
	  {
unknown's avatar
unknown committed
4904
	    SELECT_LEX *sel= Select;
4905
            sel->save_names_for_using_list($1, $3);
unknown's avatar
unknown committed
4906
	  }
unknown's avatar
unknown committed
4907 4908 4909
	  '(' using_list ')'
	  { add_join_on($3,$7); $$=$3; }

4910
	| table_ref LEFT opt_outer JOIN_SYM table_ref ON expr
4911
	  { add_join_on($5,$7); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
4912
	| table_ref LEFT opt_outer JOIN_SYM table_factor
unknown's avatar
unknown committed
4913
	  {
unknown's avatar
unknown committed
4914
	    SELECT_LEX *sel= Select;
4915
            sel->save_names_for_using_list($1, $5);
unknown's avatar
unknown committed
4916
	  }
unknown's avatar
unknown committed
4917
	  USING '(' using_list ')'
4918
	  { add_join_on($5,$9); $5->outer_join|=JOIN_TYPE_LEFT; $$=$5; }
4919
	| table_ref NATURAL LEFT opt_outer JOIN_SYM table_factor
4920
	  {
4921 4922
	    add_join_natural($1,$6);
	    $6->outer_join|=JOIN_TYPE_LEFT;
4923 4924
	    $$=$6;
	  }
4925 4926 4927 4928 4929 4930 4931 4932
	| table_ref RIGHT opt_outer JOIN_SYM table_ref ON expr
          { 
	    LEX *lex= Lex;
            if (!($$= lex->current_select->convert_right_join()))
              YYABORT;
            add_join_on($$, $7);
          }
	| table_ref RIGHT opt_outer JOIN_SYM table_factor
unknown's avatar
unknown committed
4933
	  {
unknown's avatar
unknown committed
4934
	    SELECT_LEX *sel= Select;
4935
            sel->save_names_for_using_list($1, $5);
unknown's avatar
unknown committed
4936
	  }
4937
	  USING '(' using_list ')'
4938 4939 4940 4941 4942 4943 4944
          { 
	    LEX *lex= Lex;
            if (!($$= lex->current_select->convert_right_join()))
              YYABORT;
            add_join_on($$, $9);
          }
	| table_ref NATURAL RIGHT opt_outer JOIN_SYM table_factor
4945
	  {
4946 4947 4948 4949
	    add_join_natural($6,$1);
	    LEX *lex= Lex;
            if (!($$= lex->current_select->convert_right_join()))
              YYABORT;
4950
	  }
4951 4952 4953
	| table_ref NATURAL JOIN_SYM table_factor
	  { add_join_natural($1,$4); $$=$4; };
        
unknown's avatar
unknown committed
4954 4955

normal_join:
unknown's avatar
unknown committed
4956 4957 4958 4959
	JOIN_SYM		{}
	| INNER_SYM JOIN_SYM	{}
	| CROSS JOIN_SYM	{}
	;
unknown's avatar
unknown committed
4960

4961
table_factor:
unknown's avatar
unknown committed
4962
	{
unknown's avatar
unknown committed
4963
	  SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
4964
	  sel->use_index_ptr=sel->ignore_index_ptr=0;
unknown's avatar
unknown committed
4965
	  sel->table_join_options= 0;
unknown's avatar
unknown committed
4966
	}
unknown's avatar
unknown committed
4967
        table_ident opt_table_alias opt_key_definition
unknown's avatar
unknown committed
4968
	{
unknown's avatar
unknown committed
4969
	  LEX *lex= Lex;
unknown's avatar
unknown committed
4970
	  SELECT_LEX *sel= lex->current_select;
unknown's avatar
unknown committed
4971
	  if (!($$= sel->add_table_to_list(lex->thd, $2, $3,
unknown's avatar
unknown committed
4972
					   sel->get_table_join_options(),
unknown's avatar
unknown committed
4973
					   lex->lock_option,
4974 4975
					   sel->get_use_index(),
					   sel->get_ignore_index())))
4976
	    YYABORT;
4977
          sel->add_joined_table($$);
unknown's avatar
unknown committed
4978
	}
4979
        | '('
4980
          {
4981 4982 4983
            LEX *lex= Lex;
            if (lex->current_select->init_nested_join(lex->thd))
              YYABORT;
4984
          }
4985 4986 4987 4988 4989
          join_table_list ')'
          {
            LEX *lex= Lex;
            if (!($$= lex->current_select->end_nested_join(lex->thd)))
              YYABORT;
4990
          }
4991
	| '{' ident table_ref LEFT OUTER JOIN_SYM table_ref ON expr '}'
4992
	  { add_join_on($7,$9); $7->outer_join|=JOIN_TYPE_LEFT; $$=$7; }
4993
        | '(' SELECT_SYM select_derived ')' opt_table_alias
unknown's avatar
unknown committed
4994 4995
	{
	  LEX *lex=Lex;
4996 4997 4998
	  SELECT_LEX_UNIT *unit= lex->current_select->master_unit();
	  lex->current_select= unit->outer_select();
	  if (!($$= lex->current_select->
unknown's avatar
unknown committed
4999
                add_table_to_list(lex->thd, new Table_ident(unit), $5, 0,
5000
				  TL_READ,(List<String> *)0,
unknown's avatar
unknown committed
5001 5002
	                          (List<String> *)0)))

unknown's avatar
unknown committed
5003
	    YYABORT;
5004
          lex->current_select->add_joined_table($$);           
unknown's avatar
unknown committed
5005
	};
unknown's avatar
unknown committed
5006

5007
select_derived:
unknown's avatar
unknown committed
5008
        {
unknown's avatar
unknown committed
5009
	  LEX *lex= Lex;
5010
	  lex->derived_tables|= DERIVED_SUBQUERY;
unknown's avatar
unknown committed
5011 5012 5013
	  if (((int)lex->sql_command >= (int)SQLCOM_HA_OPEN &&
	       lex->sql_command <= (int)SQLCOM_HA_READ) ||
	       lex->sql_command == (int)SQLCOM_KILL)
5014 5015
	  {
	    yyerror(ER(ER_SYNTAX_ERROR));
5016 5017
	    YYABORT;
	  }
5018
	  if (lex->current_select->linkage == GLOBAL_OPTIONS_TYPE ||
unknown's avatar
unknown committed
5019
              mysql_new_select(lex, 1))
unknown's avatar
unknown committed
5020 5021
	    YYABORT;
	  mysql_init_select(lex);
5022
	  lex->current_select->linkage= DERIVED_TABLE_TYPE;
5023
	  lex->current_select->parsing_place= SELECT_LIST;
5024 5025 5026
	}
        select_options select_item_list
	{
5027
	  Select->parsing_place= NO_MATTER;
unknown's avatar
unknown committed
5028
	}
5029
	opt_select_from union_opt
5030
        ;
unknown's avatar
unknown committed
5031 5032 5033

opt_outer:
	/* empty */	{}
unknown's avatar
unknown committed
5034
	| OUTER		{};
unknown's avatar
unknown committed
5035 5036 5037 5038

opt_key_definition:
	/* empty */	{}
	| USE_SYM    key_usage_list
unknown's avatar
unknown committed
5039
          {
unknown's avatar
unknown committed
5040
	    SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5041 5042 5043
	    sel->use_index= *$2;
	    sel->use_index_ptr= &sel->use_index;
	  }
unknown's avatar
unknown committed
5044 5045
	| FORCE_SYM key_usage_list
          {
unknown's avatar
unknown committed
5046
	    SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5047 5048 5049 5050
	    sel->use_index= *$2;
	    sel->use_index_ptr= &sel->use_index;
	    sel->table_join_options|= TL_OPTION_FORCE_INDEX;
	  }
unknown's avatar
unknown committed
5051
	| IGNORE_SYM key_usage_list
unknown's avatar
unknown committed
5052
	  {
unknown's avatar
unknown committed
5053
	    SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5054 5055
	    sel->ignore_index= *$2;
	    sel->ignore_index_ptr= &sel->ignore_index;
unknown's avatar
unknown committed
5056
	  };
unknown's avatar
unknown committed
5057 5058

key_usage_list:
unknown's avatar
unknown committed
5059
	key_or_index { Select->interval_list.empty(); }
unknown's avatar
unknown committed
5060
        '(' key_list_or_empty ')'
unknown's avatar
unknown committed
5061
        { $$= &Select->interval_list; }
unknown's avatar
unknown committed
5062 5063 5064 5065 5066 5067
	;

key_list_or_empty:
	/* empty */ 		{}
	| key_usage_list2	{}
	;
unknown's avatar
unknown committed
5068 5069 5070

key_usage_list2:
	key_usage_list2 ',' ident
unknown's avatar
unknown committed
5071
        { Select->
unknown's avatar
unknown committed
5072
	    interval_list.push_back(new (YYTHD->mem_root) String((const char*) $3.str, $3.length,
5073
				    system_charset_info)); }
unknown's avatar
unknown committed
5074
	| ident
unknown's avatar
unknown committed
5075
        { Select->
unknown's avatar
unknown committed
5076
	    interval_list.push_back(new (YYTHD->mem_root) String((const char*) $1.str, $1.length,
5077
				    system_charset_info)); }
unknown's avatar
unknown committed
5078
	| PRIMARY_SYM
unknown's avatar
unknown committed
5079
        { Select->
unknown's avatar
unknown committed
5080
	    interval_list.push_back(new (YYTHD->mem_root) String("PRIMARY", 7,
5081
				    system_charset_info)); };
unknown's avatar
unknown committed
5082 5083 5084

using_list:
	ident
unknown's avatar
unknown committed
5085
	  {
unknown's avatar
unknown committed
5086
	    SELECT_LEX *sel= Select;
5087 5088 5089 5090
	    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
5091 5092 5093 5094
	      YYABORT;
	  }
	| using_list ',' ident
	  {
unknown's avatar
unknown committed
5095
	    SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5096
	    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
5097
	      YYABORT;
unknown's avatar
unknown committed
5098
	  };
unknown's avatar
unknown committed
5099 5100

interval:
5101 5102
	interval_time_st	{}
	| DAY_HOUR_SYM		{ $$=INTERVAL_DAY_HOUR; }
unknown's avatar
unknown committed
5103
	| DAY_MICROSECOND_SYM	{ $$=INTERVAL_DAY_MICROSECOND; }
unknown's avatar
unknown committed
5104 5105
	| DAY_MINUTE_SYM	{ $$=INTERVAL_DAY_MINUTE; }
	| DAY_SECOND_SYM	{ $$=INTERVAL_DAY_SECOND; }
unknown's avatar
unknown committed
5106
	| HOUR_MICROSECOND_SYM	{ $$=INTERVAL_HOUR_MICROSECOND; }
unknown's avatar
unknown committed
5107 5108
	| HOUR_MINUTE_SYM	{ $$=INTERVAL_HOUR_MINUTE; }
	| HOUR_SECOND_SYM	{ $$=INTERVAL_HOUR_SECOND; }
unknown's avatar
unknown committed
5109 5110
	| MICROSECOND_SYM	{ $$=INTERVAL_MICROSECOND; }
	| MINUTE_MICROSECOND_SYM	{ $$=INTERVAL_MINUTE_MICROSECOND; }
unknown's avatar
unknown committed
5111
	| MINUTE_SECOND_SYM	{ $$=INTERVAL_MINUTE_SECOND; }
5112 5113 5114 5115 5116 5117 5118 5119
	| SECOND_MICROSECOND_SYM	{ $$=INTERVAL_SECOND_MICROSECOND; }
	| YEAR_MONTH_SYM	{ $$=INTERVAL_YEAR_MONTH; };

interval_time_st:
	DAY_SYM			{ $$=INTERVAL_DAY; }
	| WEEK_SYM		{ $$=INTERVAL_WEEK; }
	| HOUR_SYM		{ $$=INTERVAL_HOUR; }
	| FRAC_SECOND_SYM	{ $$=INTERVAL_MICROSECOND; }
unknown's avatar
unknown committed
5120 5121
	| MINUTE_SYM		{ $$=INTERVAL_MINUTE; }
	| MONTH_SYM		{ $$=INTERVAL_MONTH; }
5122
	| QUARTER_SYM		{ $$=INTERVAL_QUARTER; }
unknown's avatar
unknown committed
5123
	| SECOND_SYM		{ $$=INTERVAL_SECOND; }
5124 5125
	| YEAR_SYM		{ $$=INTERVAL_YEAR; }
        ;
unknown's avatar
unknown committed
5126

5127
date_time_type:
5128 5129 5130 5131 5132
          DATE_SYM              {$$=MYSQL_TIMESTAMP_DATE;}
        | TIME_SYM              {$$=MYSQL_TIMESTAMP_TIME;}
        | DATETIME              {$$=MYSQL_TIMESTAMP_DATETIME;}
        | TIMESTAMP             {$$=MYSQL_TIMESTAMP_DATETIME;}
        ;
5133

unknown's avatar
unknown committed
5134 5135 5136
table_alias:
	/* empty */
	| AS
unknown's avatar
unknown committed
5137
	| EQ;
unknown's avatar
unknown committed
5138 5139 5140 5141

opt_table_alias:
	/* empty */		{ $$=0; }
	| table_alias ident
unknown's avatar
unknown committed
5142
	  { $$= (LEX_STRING*) sql_memdup(&$2,sizeof(LEX_STRING)); };
unknown's avatar
unknown committed
5143

unknown's avatar
unknown committed
5144 5145 5146 5147
opt_all:
	/* empty */
	| ALL
	;
unknown's avatar
unknown committed
5148 5149

where_clause:
unknown's avatar
unknown committed
5150
	/* empty */  { Select->where= 0; }
unknown's avatar
unknown committed
5151 5152 5153 5154 5155
	| WHERE
          {
            Select->parsing_place= IN_WHERE;
          }
          expr
5156
	  {
unknown's avatar
unknown committed
5157 5158 5159 5160 5161
            SELECT_LEX *select= Select;
	    select->where= $3;
            select->parsing_place= NO_MATTER;
	    if ($3)
	      $3->top_level_item();
5162
	  }
unknown's avatar
unknown committed
5163
 	;
unknown's avatar
unknown committed
5164 5165 5166

having_clause:
	/* empty */
unknown's avatar
unknown committed
5167 5168
	| HAVING
	  {
5169
	    Select->parsing_place= IN_HAVING;
unknown's avatar
unknown committed
5170 5171
          }
	  expr
unknown's avatar
unknown committed
5172
	  {
unknown's avatar
unknown committed
5173
	    SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5174
	    sel->having= $3;
5175
	    sel->parsing_place= NO_MATTER;
unknown's avatar
unknown committed
5176 5177 5178
	    if ($3)
	      $3->top_level_item();
	  }
5179
	;
unknown's avatar
unknown committed
5180 5181

opt_escape:
5182 5183
	ESCAPE_SYM simple_expr { $$= $2; }
	| /* empty */
5184 5185 5186 5187 5188
          {

            $$= ((YYTHD->variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES) ?
		 new Item_string("", 0, &my_charset_latin1) :
                 new Item_string("\\", 1, &my_charset_latin1));
5189 5190
          }
        ;
unknown's avatar
unknown committed
5191 5192 5193


/*
unknown's avatar
unknown committed
5194
   group by statement in select
unknown's avatar
unknown committed
5195 5196 5197 5198
*/

group_clause:
	/* empty */
5199
	| GROUP BY group_list olap_opt;
unknown's avatar
unknown committed
5200 5201

group_list:
unknown's avatar
unknown committed
5202
	group_list ',' order_ident order_dir
unknown's avatar
unknown committed
5203
	  { if (add_group_to_list(YYTHD, $3,(bool) $4)) YYABORT; }
unknown's avatar
unknown committed
5204
	| order_ident order_dir
unknown's avatar
unknown committed
5205
	  { if (add_group_to_list(YYTHD, $1,(bool) $2)) YYABORT; };
unknown's avatar
unknown committed
5206

5207 5208
olap_opt:
	/* empty */ {}
5209
	| WITH CUBE_SYM
5210
          {
5211
	    LEX *lex=Lex;
5212 5213
	    if (lex->current_select->linkage == GLOBAL_OPTIONS_TYPE)
	    {
unknown's avatar
unknown committed
5214
	      my_error(ER_WRONG_USAGE, MYF(0), "WITH CUBE",
5215 5216 5217
		       "global union parameters");
	      YYABORT;
	    }
unknown's avatar
unknown committed
5218
	    lex->current_select->olap= CUBE_TYPE;
unknown's avatar
unknown committed
5219
	    my_error(ER_NOT_SUPPORTED_YET, MYF(0), "CUBE");
5220
	    YYABORT;	/* To be deleted in 5.1 */
5221
	  }
5222
	| WITH ROLLUP_SYM
5223
          {
5224 5225 5226
	    LEX *lex= Lex;
	    if (lex->current_select->linkage == GLOBAL_OPTIONS_TYPE)
	    {
unknown's avatar
unknown committed
5227
	      my_error(ER_WRONG_USAGE, MYF(0), "WITH ROLLUP",
5228 5229 5230
		       "global union parameters");
	      YYABORT;
	    }
unknown's avatar
unknown committed
5231
	    lex->current_select->olap= ROLLUP_TYPE;
5232
	  }
5233
	;
5234

unknown's avatar
unknown committed
5235
/*
unknown's avatar
unknown committed
5236
   Order by statement in select
unknown's avatar
unknown committed
5237 5238
*/

5239
opt_order_clause:
unknown's avatar
unknown committed
5240
	/* empty */
unknown's avatar
unknown committed
5241
	| order_clause;
5242 5243

order_clause:
5244 5245
	ORDER_SYM BY
        {
unknown's avatar
unknown committed
5246
	  LEX *lex=Lex;
5247
	  if (lex->current_select->linkage != GLOBAL_OPTIONS_TYPE &&
unknown's avatar
unknown committed
5248
	      lex->current_select->olap !=
5249
	      UNSPECIFIED_OLAP_TYPE)
5250
	  {
unknown's avatar
unknown committed
5251 5252
	    my_error(ER_WRONG_USAGE, MYF(0),
                     "CUBE/ROLLUP", "ORDER BY");
5253 5254
	    YYABORT;
	  }
unknown's avatar
unknown committed
5255
	} order_list;
unknown's avatar
unknown committed
5256 5257 5258

order_list:
	order_list ',' order_ident order_dir
unknown's avatar
unknown committed
5259
	  { if (add_order_to_list(YYTHD, $3,(bool) $4)) YYABORT; }
unknown's avatar
unknown committed
5260
	| order_ident order_dir
unknown's avatar
unknown committed
5261
	  { if (add_order_to_list(YYTHD, $1,(bool) $2)) YYABORT; };
unknown's avatar
unknown committed
5262 5263 5264

order_dir:
	/* empty */ { $$ =  1; }
unknown's avatar
unknown committed
5265
	| ASC  { $$ =1; }
unknown's avatar
unknown committed
5266
	| DESC { $$ =0; };
unknown's avatar
unknown committed
5267 5268


5269 5270 5271
opt_limit_clause_init:
	/* empty */
	{
5272 5273
	  LEX *lex= Lex;
	  SELECT_LEX *sel= lex->current_select;
5274
          sel->offset_limit= 0L;
5275
          sel->select_limit= HA_POS_ERROR;
5276
	}
5277 5278 5279
	| limit_clause {}
	;

5280 5281 5282 5283 5284
opt_limit_clause:
	/* empty */	{}
	| limit_clause	{}
	;

5285
limit_clause:
5286
	LIMIT limit_options {}
unknown's avatar
unknown committed
5287
	;
unknown's avatar
unknown committed
5288 5289 5290

limit_options:
	ULONG_NUM
unknown's avatar
unknown committed
5291
	  {
unknown's avatar
unknown committed
5292
            SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5293 5294
            sel->select_limit= $1;
            sel->offset_limit= 0L;
5295
	    sel->explicit_limit= 1;
unknown's avatar
unknown committed
5296 5297 5298
	  }
	| ULONG_NUM ',' ULONG_NUM
	  {
unknown's avatar
unknown committed
5299
	    SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5300 5301
	    sel->select_limit= $3;
	    sel->offset_limit= $1;
5302
	    sel->explicit_limit= 1;
unknown's avatar
unknown committed
5303
	  }
unknown's avatar
unknown committed
5304
	| ULONG_NUM OFFSET_SYM ULONG_NUM
unknown's avatar
unknown committed
5305
	  {
unknown's avatar
unknown committed
5306
	    SELECT_LEX *sel= Select;
unknown's avatar
unknown committed
5307 5308
	    sel->select_limit= $1;
	    sel->offset_limit= $3;
5309
	    sel->explicit_limit= 1;
unknown's avatar
unknown committed
5310 5311
	  }
	;
unknown's avatar
unknown committed
5312 5313 5314 5315 5316


delete_limit_clause:
	/* empty */
	{
unknown's avatar
unknown committed
5317
	  LEX *lex=Lex;
5318
	  lex->current_select->select_limit= HA_POS_ERROR;
unknown's avatar
unknown committed
5319
	}
unknown's avatar
unknown committed
5320
	| LIMIT ulonglong_num
5321 5322 5323 5324 5325
	{
	  SELECT_LEX *sel= Select;
	  sel->select_limit= (ha_rows) $2;
	  sel->explicit_limit= 1;
	};
unknown's avatar
unknown committed
5326 5327

ULONG_NUM:
unknown's avatar
unknown committed
5328 5329 5330
	NUM	        { int error; $$= (ulong) my_strtoll10($1.str, (char**) 0, &error); }
	| LONG_NUM      { int error; $$= (ulong) my_strtoll10($1.str, (char**) 0, &error); }
	| ULONGLONG_NUM { int error; $$= (ulong) my_strtoll10($1.str, (char**) 0, &error); }
unknown's avatar
unknown committed
5331
        | DECIMAL_NUM 	{ int error; $$= (ulong) my_strtoll10($1.str, (char**) 0, &error); }
unknown's avatar
unknown committed
5332 5333
	| FLOAT_NUM	{ int error; $$= (ulong) my_strtoll10($1.str, (char**) 0, &error); }
	;
unknown's avatar
unknown committed
5334

unknown's avatar
unknown committed
5335
ulonglong_num:
unknown's avatar
unknown committed
5336 5337 5338
	NUM	    { int error; $$= (ulonglong) my_strtoll10($1.str, (char**) 0, &error); }
	| ULONGLONG_NUM { int error; $$= (ulonglong) my_strtoll10($1.str, (char**) 0, &error); }
	| LONG_NUM  { int error; $$= (ulonglong) my_strtoll10($1.str, (char**) 0, &error); }
unknown's avatar
unknown committed
5339
        | DECIMAL_NUM  { int error; $$= (ulonglong) my_strtoll10($1.str, (char**) 0, &error); }
unknown's avatar
unknown committed
5340 5341
	| FLOAT_NUM { int error; $$= (ulonglong) my_strtoll10($1.str, (char**) 0, &error); }
	;
unknown's avatar
unknown committed
5342 5343 5344 5345 5346 5347

procedure_clause:
	/* empty */
	| PROCEDURE ident			/* Procedure name */
	  {
	    LEX *lex=Lex;
5348 5349
	    if (&lex->select_lex != lex->current_select)
	    {
unknown's avatar
unknown committed
5350
	      my_error(ER_WRONG_USAGE, MYF(0), "PROCEDURE", "subquery");
5351 5352
	      YYABORT;
	    }
unknown's avatar
unknown committed
5353 5354 5355
	    lex->proc_list.elements=0;
	    lex->proc_list.first=0;
	    lex->proc_list.next= (byte**) &lex->proc_list.first;
unknown's avatar
unknown committed
5356
	    if (add_proc_to_list(lex->thd, new Item_field(NULL,NULL,$2.str)))
unknown's avatar
unknown committed
5357
	      YYABORT;
5358
	    Lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
unknown's avatar
unknown committed
5359
	  }
unknown's avatar
unknown committed
5360
	  '(' procedure_list ')';
unknown's avatar
unknown committed
5361 5362 5363 5364


procedure_list:
	/* empty */ {}
unknown's avatar
unknown committed
5365
	| procedure_list2 {};
unknown's avatar
unknown committed
5366 5367 5368

procedure_list2:
	procedure_list2 ',' procedure_item
unknown's avatar
unknown committed
5369
	| procedure_item;
unknown's avatar
unknown committed
5370 5371 5372 5373

procedure_item:
	  remember_name expr
	  {
unknown's avatar
unknown committed
5374 5375
	    LEX *lex= Lex;
	    if (add_proc_to_list(lex->thd, $2))
unknown's avatar
unknown committed
5376 5377
	      YYABORT;
	    if (!$2->name)
unknown's avatar
unknown committed
5378
	      $2->set_name($1,(uint) ((char*) lex->tok_end - $1), YYTHD->charset());
5379 5380 5381 5382 5383 5384
	  }
          ;


select_var_list_init:
	   {
unknown's avatar
unknown committed
5385 5386
             LEX *lex=Lex;
	     if (!lex->describe && (!(lex->result= new select_dumpvar())))
5387 5388
	        YYABORT;
	   }
5389
	   select_var_list
5390
	   {}
5391
           ;
unknown's avatar
unknown committed
5392

unknown's avatar
unknown committed
5393
select_var_list:
5394 5395 5396 5397
	   select_var_list ',' select_var_ident
	   | select_var_ident {}
           ;

5398 5399 5400 5401 5402 5403 5404 5405 5406 5407
select_var_ident:  
	   '@' ident_or_text
           {
             LEX *lex=Lex;
	     if (lex->result) 
	       ((select_dumpvar *)lex->result)->var_list.push_back( new my_var($2,0,0,(enum_field_types)0));
	     else
	       YYABORT;
	   }
           | ident_or_text
unknown's avatar
unknown committed
5408
           {
5409
             LEX *lex=Lex;
5410 5411 5412 5413
	     sp_pvar_t *t;

	     if (!lex->spcont || !(t=lex->spcont->find_pvar(&$1)))
	     {
5414
	       my_error(ER_SP_UNDECLARED_VAR, MYF(0), $1.str);
unknown's avatar
unknown committed
5415
	       YYABORT;
5416 5417 5418 5419 5420 5421 5422 5423
	     }
	     if (! lex->result)
	       YYABORT;
	     else
	     {
	       ((select_dumpvar *)lex->result)->var_list.push_back( new my_var($1,1,t->offset,t->type));
	       t->isset= TRUE;
	     }
unknown's avatar
unknown committed
5424
	   }
unknown's avatar
unknown committed
5425
           ;
unknown's avatar
unknown committed
5426

5427
into:
unknown's avatar
unknown committed
5428
        INTO OUTFILE TEXT_STRING_sys
unknown's avatar
unknown committed
5429
	{
unknown's avatar
unknown committed
5430
          LEX *lex= Lex;
5431 5432 5433 5434
          lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
          if (!(lex->exchange= new sql_exchange($3.str, 0)) ||
              !(lex->result= new select_export(lex->exchange)))
            YYABORT;
unknown's avatar
unknown committed
5435 5436
	}
	opt_field_term opt_line_term
unknown's avatar
unknown committed
5437
	| INTO DUMPFILE TEXT_STRING_sys
unknown's avatar
unknown committed
5438
	{
5439
	  LEX *lex=Lex;
unknown's avatar
unknown committed
5440 5441
	  if (!lex->describe)
	  {
5442
	    lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
unknown's avatar
unknown committed
5443 5444 5445 5446 5447
	    if (!(lex->exchange= new sql_exchange($3.str,1)))
	      YYABORT;
	    if (!(lex->result= new select_dump(lex->exchange)))
	      YYABORT;
	  }
unknown's avatar
unknown committed
5448
	}
5449
        | INTO select_var_list_init
unknown's avatar
unknown committed
5450
	{
5451
	  Lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
5452 5453
	}
        ;
unknown's avatar
unknown committed
5454

unknown's avatar
unknown committed
5455 5456 5457
/*
  DO statement
*/
unknown's avatar
unknown committed
5458

5459
do:	DO_SYM
unknown's avatar
unknown committed
5460 5461 5462
	{
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_DO;
5463 5464 5465 5466 5467
	  mysql_init_select(lex);
	}
	expr_list
	{
	  Lex->insert_list= $3;
unknown's avatar
unknown committed
5468
	}
5469 5470
	;

unknown's avatar
unknown committed
5471
/*
5472
  Drop : delete tables or index or user
unknown's avatar
unknown committed
5473 5474 5475
*/

drop:
unknown's avatar
unknown committed
5476
	DROP opt_temporary table_or_tables if_exists table_list opt_restrict
unknown's avatar
unknown committed
5477
	{
unknown's avatar
unknown committed
5478 5479
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_DROP_TABLE;
5480 5481
	  lex->drop_temporary= $2;
	  lex->drop_if_exists= $4;
unknown's avatar
unknown committed
5482
	}
unknown's avatar
unknown committed
5483
	| DROP INDEX_SYM ident ON table_ident {}
unknown's avatar
unknown committed
5484
	  {
unknown's avatar
unknown committed
5485 5486
	     LEX *lex=Lex;
	     lex->sql_command= SQLCOM_DROP_INDEX;
5487 5488 5489
	     lex->alter_info.drop_list.empty();
	     lex->alter_info.drop_list.push_back(new Alter_drop(Alter_drop::KEY,
                                                                $3.str));
unknown's avatar
unknown committed
5490 5491
	     if (!lex->current_select->add_table_to_list(lex->thd, $5, NULL,
							TL_OPTION_UPDATING))
unknown's avatar
unknown committed
5492 5493 5494 5495
	      YYABORT;
	  }
	| DROP DATABASE if_exists ident
	  {
unknown's avatar
unknown committed
5496 5497 5498 5499
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_DROP_DB;
	    lex->drop_if_exists=$3;
	    lex->name=$4.str;
unknown's avatar
unknown committed
5500
	 }
5501
	| DROP FUNCTION_SYM if_exists sp_name
unknown's avatar
unknown committed
5502
	  {
unknown's avatar
unknown committed
5503
	    LEX *lex=Lex;
5504 5505
	    if (lex->sphead)
	    {
unknown's avatar
unknown committed
5506
	      my_error(ER_SP_NO_DROP_SP, MYF(0), "FUNCTION");
5507 5508
	      YYABORT;
	    }
unknown's avatar
unknown committed
5509
	    lex->sql_command = SQLCOM_DROP_FUNCTION;
5510 5511 5512 5513 5514 5515 5516 5517
	    lex->drop_if_exists= $3;
	    lex->spname= $4;
	  }
	| DROP PROCEDURE if_exists sp_name
	  {
	    LEX *lex=Lex;
	    if (lex->sphead)
	    {
unknown's avatar
unknown committed
5518
	      my_error(ER_SP_NO_DROP_SP, MYF(0), "PROCEDURE");
5519 5520 5521 5522 5523
	      YYABORT;
	    }
	    lex->sql_command = SQLCOM_DROP_PROCEDURE;
	    lex->drop_if_exists= $3;
	    lex->spname= $4;
5524
	  }
5525
	| DROP USER clear_privileges user_list
5526
	  {
5527 5528
	    Lex->sql_command = SQLCOM_DROP_USER;
          }
5529 5530 5531 5532 5533 5534 5535 5536 5537 5538
	| DROP VIEW_SYM if_exists table_list opt_restrict
	  {
	    THD *thd= YYTHD;
	    LEX *lex= thd->lex;
	    lex->sql_command= SQLCOM_DROP_VIEW;
	    lex->drop_if_exists= $3;
	  }
        | DROP TRIGGER_SYM ident '.' ident
          {
            LEX *lex= Lex;
unknown's avatar
unknown committed
5539

5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550
            lex->sql_command= SQLCOM_DROP_TRIGGER;
            /* QQ: Could we loosen lock type in certain cases ? */
            if (!lex->select_lex.add_table_to_list(YYTHD,
                                                   new Table_ident($3),
                                                   (LEX_STRING*) 0,
                                                   TL_OPTION_UPDATING,
                                                   TL_WRITE))
              YYABORT;
            lex->name_and_length= $5;
          }
	;
unknown's avatar
unknown committed
5551 5552

table_list:
5553
	table_name
unknown's avatar
unknown committed
5554
	| table_list ',' table_name;
unknown's avatar
unknown committed
5555

5556
table_name:
unknown's avatar
unknown committed
5557
	table_ident
unknown's avatar
unknown committed
5558 5559 5560 5561 5562
	{
	  if (!Select->add_table_to_list(YYTHD, $1, NULL, TL_OPTION_UPDATING))
	    YYABORT;
	}
	;
unknown's avatar
unknown committed
5563 5564

if_exists:
5565
	/* empty */ { $$= 0; }
5566 5567
	| IF EXISTS { $$= 1; }
	;
unknown's avatar
unknown committed
5568

5569 5570 5571 5572
opt_temporary:
	/* empty */ { $$= 0; }
	| TEMPORARY { $$= 1; }
	;
unknown's avatar
unknown committed
5573 5574 5575 5576 5577
/*
** Insert : add new data to table
*/

insert:
5578 5579 5580
	INSERT
	{
	  LEX *lex= Lex;
5581 5582
	  lex->sql_command= SQLCOM_INSERT;
	  lex->duplicates= DUP_ERROR; 
unknown's avatar
unknown committed
5583
	  mysql_init_select(lex);
5584 5585
	  /* for subselects */
          lex->lock_option= (using_update_log) ? TL_READ_NO_INSERT : TL_READ;
5586
	  lex->select_lex.resolve_mode= SELECT_LEX::INSERT_MODE;
5587
	} insert_lock_option
5588
	opt_ignore insert2
unknown's avatar
unknown committed
5589
	{
unknown's avatar
unknown committed
5590
	  Select->set_lock_for_tables($3);
unknown's avatar
unknown committed
5591
	  Lex->current_select= &Lex->select_lex;
unknown's avatar
unknown committed
5592
	}
5593
	insert_field_spec opt_insert_update
5594
	{}
unknown's avatar
unknown committed
5595
	;
unknown's avatar
unknown committed
5596 5597

replace:
5598 5599
	REPLACE
	{
5600
	  LEX *lex=Lex;
5601 5602
	  lex->sql_command = SQLCOM_REPLACE;
	  lex->duplicates= DUP_REPLACE;
unknown's avatar
unknown committed
5603
	  mysql_init_select(lex);
5604
	  lex->select_lex.resolve_mode= SELECT_LEX::INSERT_MODE;
5605
	}
unknown's avatar
unknown committed
5606 5607
	replace_lock_option insert2
	{
unknown's avatar
unknown committed
5608
	  Select->set_lock_for_tables($3);
unknown's avatar
unknown committed
5609
	  Lex->current_select= &Lex->select_lex;
unknown's avatar
unknown committed
5610 5611
	}
	insert_field_spec
5612
	{}
unknown's avatar
unknown committed
5613
	;
unknown's avatar
unknown committed
5614 5615

insert_lock_option:
unknown's avatar
unknown committed
5616 5617 5618 5619
	/* empty */	{ $$= TL_WRITE_CONCURRENT_INSERT; }
	| LOW_PRIORITY	{ $$= TL_WRITE_LOW_PRIORITY; }
	| DELAYED_SYM	{ $$= TL_WRITE_DELAYED; }
	| HIGH_PRIORITY { $$= TL_WRITE; }
5620
	;
unknown's avatar
unknown committed
5621 5622

replace_lock_option:
unknown's avatar
unknown committed
5623 5624
	opt_low_priority { $$= $1; }
	| DELAYED_SYM	 { $$= TL_WRITE_DELAYED; };
unknown's avatar
unknown committed
5625 5626 5627

insert2:
	INTO insert_table {}
unknown's avatar
unknown committed
5628
	| insert_table {};
unknown's avatar
unknown committed
5629 5630

insert_table:
5631
	table_name
unknown's avatar
unknown committed
5632
	{
unknown's avatar
unknown committed
5633 5634 5635 5636
	  LEX *lex=Lex;
	  lex->field_list.empty();
	  lex->many_values.empty();
	  lex->insert_list=0;
unknown's avatar
unknown committed
5637
	};
unknown's avatar
unknown committed
5638 5639

insert_field_spec:
unknown's avatar
unknown committed
5640 5641 5642
	insert_values {}
	| '(' ')' insert_values {}
	| '(' fields ')' insert_values {}
unknown's avatar
unknown committed
5643 5644
	| SET
	  {
unknown's avatar
unknown committed
5645 5646 5647
	    LEX *lex=Lex;
	    if (!(lex->insert_list = new List_item) ||
		lex->many_values.push_back(lex->insert_list))
unknown's avatar
unknown committed
5648 5649
	      YYABORT;
	   }
unknown's avatar
unknown committed
5650
	   ident_eq_list;
unknown's avatar
unknown committed
5651 5652 5653 5654

opt_field_spec:
	/* empty */	  { }
	| '(' fields ')'  { }
unknown's avatar
unknown committed
5655
	| '(' ')'	  { };
unknown's avatar
unknown committed
5656 5657 5658

fields:
	fields ',' insert_ident { Lex->field_list.push_back($3); }
unknown's avatar
unknown committed
5659
	| insert_ident		{ Lex->field_list.push_back($1); };
unknown's avatar
unknown committed
5660 5661 5662

insert_values:
	VALUES	values_list  {}
unknown's avatar
unknown committed
5663
	| VALUE_SYM values_list  {}
unknown's avatar
unknown committed
5664 5665
	|     create_select     { Select->set_braces(0);} union_clause {}
	| '(' create_select ')' { Select->set_braces(1);} union_opt {}
5666
        ;
unknown's avatar
unknown committed
5667 5668 5669

values_list:
	values_list ','  no_braces
unknown's avatar
unknown committed
5670
	| no_braces;
unknown's avatar
unknown committed
5671 5672 5673 5674

ident_eq_list:
	ident_eq_list ',' ident_eq_value
	|
unknown's avatar
unknown committed
5675
	ident_eq_value;
unknown's avatar
unknown committed
5676 5677

ident_eq_value:
5678
	simple_ident_nospvar equal expr_or_default
unknown's avatar
unknown committed
5679
	 {
unknown's avatar
unknown committed
5680 5681 5682
	  LEX *lex=Lex;
	  if (lex->field_list.push_back($1) ||
	      lex->insert_list->push_back($3))
unknown's avatar
unknown committed
5683
	    YYABORT;
unknown's avatar
unknown committed
5684
	 };
unknown's avatar
unknown committed
5685 5686

equal:	EQ		{}
unknown's avatar
unknown committed
5687 5688 5689 5690 5691 5692 5693
	| SET_VAR	{}
	;

opt_equal:
	/* empty */	{}
	| equal		{}
	;
unknown's avatar
unknown committed
5694 5695 5696 5697 5698 5699 5700 5701 5702

no_braces:
	 '('
	 {
	    if (!(Lex->insert_list = new List_item))
	      YYABORT;
	 }
	 opt_values ')'
	 {
unknown's avatar
unknown committed
5703 5704
	  LEX *lex=Lex;
	  if (lex->many_values.push_back(lex->insert_list))
unknown's avatar
unknown committed
5705
	    YYABORT;
unknown's avatar
unknown committed
5706
	 };
unknown's avatar
unknown committed
5707 5708 5709

opt_values:
	/* empty */ {}
unknown's avatar
unknown committed
5710
	| values;
unknown's avatar
unknown committed
5711 5712

values:
unknown's avatar
unknown committed
5713
	values ','  expr_or_default
unknown's avatar
unknown committed
5714 5715 5716 5717
	{
	  if (Lex->insert_list->push_back($3))
	    YYABORT;
	}
unknown's avatar
unknown committed
5718 5719 5720 5721 5722 5723 5724 5725
	| expr_or_default
	  {
	    if (Lex->insert_list->push_back($1))
	      YYABORT;
	  }
	;

expr_or_default:
5726
	expr	  { $$= $1;}
unknown's avatar
SCRUM  
unknown committed
5727
	| DEFAULT {$$= new Item_default_value(); }
unknown's avatar
unknown committed
5728
	;
unknown's avatar
unknown committed
5729

5730 5731
opt_insert_update:
        /* empty */
unknown's avatar
unknown committed
5732
        | ON DUPLICATE_SYM	{ Lex->duplicates= DUP_UPDATE; }
unknown's avatar
unknown committed
5733
          KEY_SYM UPDATE_SYM insert_update_list
5734 5735
        ;

unknown's avatar
unknown committed
5736 5737 5738
/* Update rows in a table */

update:
5739 5740
	UPDATE_SYM
	{
5741
	  LEX *lex= Lex;
unknown's avatar
unknown committed
5742
	  mysql_init_select(lex);
5743
          lex->sql_command= SQLCOM_UPDATE;
unknown's avatar
unknown committed
5744
	  lex->lock_option= TL_UNLOCK; 	/* Will be set later */
5745
	  lex->duplicates= DUP_ERROR; 
5746
        }
unknown's avatar
unknown committed
5747
        opt_low_priority opt_ignore join_table_list
unknown's avatar
unknown committed
5748
	SET update_list
unknown's avatar
unknown committed
5749
	{
5750 5751
	  LEX *lex= Lex;
          if (lex->select_lex.table_list.elements > 1)
5752
	  {
unknown's avatar
unknown committed
5753
            lex->sql_command= SQLCOM_UPDATE_MULTI;
unknown's avatar
unknown committed
5754
	    lex->multi_lock_option= $3;
5755
	  }
5756 5757 5758
	  else if (lex->select_lex.get_table_list()->derived)
	  {
	    /* it is single table update and it is update of derived table */
5759 5760
	    my_error(ER_NON_UPDATABLE_TABLE, MYF(0),
                     lex->select_lex.get_table_list()->alias, "UPDATE");
5761 5762
	    YYABORT;
	  }
5763
	  else
unknown's avatar
unknown committed
5764
	    Select->set_lock_for_tables($3);
unknown's avatar
unknown committed
5765
	}
5766
	where_clause opt_order_clause delete_limit_clause {}
unknown's avatar
unknown committed
5767
	;
unknown's avatar
unknown committed
5768 5769

update_list:
unknown's avatar
unknown committed
5770 5771 5772 5773
	update_list ',' update_elem
	| update_elem;

update_elem:
unknown's avatar
unknown committed
5774
	simple_ident_nospvar equal expr_or_default
unknown's avatar
unknown committed
5775
	{
unknown's avatar
unknown committed
5776
	  if (add_item_to_list(YYTHD, $1) || add_value_to_list(YYTHD, $3))
unknown's avatar
unknown committed
5777
	    YYABORT;
unknown's avatar
unknown committed
5778 5779 5780 5781 5782 5783 5784
	};

insert_update_list:
	insert_update_list ',' insert_update_elem
	| insert_update_elem;

insert_update_elem:
unknown's avatar
unknown committed
5785
	simple_ident_nospvar equal expr_or_default
unknown's avatar
unknown committed
5786 5787 5788 5789
	{
	  LEX *lex= Lex;
	  if (lex->update_list.push_back($1) || 
	      lex->value_list.push_back($3))
unknown's avatar
unknown committed
5790
	    YYABORT;
unknown's avatar
unknown committed
5791
	};
unknown's avatar
unknown committed
5792 5793

opt_low_priority:
5794
	/* empty */	{ $$= YYTHD->update_lock_default; }
unknown's avatar
unknown committed
5795
	| LOW_PRIORITY	{ $$= TL_WRITE_LOW_PRIORITY; };
unknown's avatar
unknown committed
5796 5797 5798 5799

/* Delete rows from a table */

delete:
5800
	DELETE_SYM
5801
	{
5802 5803
	  LEX *lex= Lex;
	  lex->sql_command= SQLCOM_DELETE;
unknown's avatar
unknown committed
5804
	  mysql_init_select(lex);
unknown's avatar
unknown committed
5805
	  lex->lock_option= lex->thd->update_lock_default;
5806
	  lex->ignore= 0;
5807
	  lex->select_lex.init_order();
unknown's avatar
unknown committed
5808
	}
unknown's avatar
unknown committed
5809 5810
	opt_delete_options single_multi {}
	;
5811 5812

single_multi:
unknown's avatar
unknown committed
5813 5814
 	FROM table_ident
	{
unknown's avatar
unknown committed
5815 5816
	  if (!Select->add_table_to_list(YYTHD, $2, NULL, TL_OPTION_UPDATING,
					 Lex->lock_option))
unknown's avatar
unknown committed
5817 5818 5819
	    YYABORT;
	}
	where_clause opt_order_clause
5820
	delete_limit_clause {}
unknown's avatar
unknown committed
5821
	| table_wild_list
unknown's avatar
unknown committed
5822
	  { mysql_init_multi_delete(Lex); }
unknown's avatar
unknown committed
5823
          FROM join_table_list where_clause
unknown's avatar
unknown committed
5824 5825
	| FROM table_wild_list
	  { mysql_init_multi_delete(Lex); }
5826 5827 5828
	  USING join_table_list where_clause
	  {}
	;
unknown's avatar
unknown committed
5829 5830 5831

table_wild_list:
	  table_wild_one {}
unknown's avatar
unknown committed
5832
	  | table_wild_list ',' table_wild_one {};
unknown's avatar
unknown committed
5833 5834

table_wild_one:
unknown's avatar
unknown committed
5835
	ident opt_wild opt_table_alias
unknown's avatar
unknown committed
5836
	{
unknown's avatar
unknown committed
5837 5838
	  if (!Select->add_table_to_list(YYTHD, new Table_ident($1), $3,
					 TL_OPTION_UPDATING, Lex->lock_option))
unknown's avatar
unknown committed
5839 5840
	    YYABORT;
        }
unknown's avatar
unknown committed
5841
	| ident '.' ident opt_wild opt_table_alias
unknown's avatar
unknown committed
5842
	  {
unknown's avatar
unknown committed
5843 5844
	    if (!Select->add_table_to_list(YYTHD,
					   new Table_ident(YYTHD, $1, $3, 0),
unknown's avatar
unknown committed
5845 5846
					   $5, TL_OPTION_UPDATING,
					   Lex->lock_option))
unknown's avatar
unknown committed
5847
	      YYABORT;
unknown's avatar
unknown committed
5848
	  }
unknown's avatar
unknown committed
5849
	;
unknown's avatar
unknown committed
5850 5851

opt_wild:
5852
	/* empty */	{}
unknown's avatar
unknown committed
5853
	| '.' '*'	{};
unknown's avatar
unknown committed
5854 5855


5856
opt_delete_options:
unknown's avatar
unknown committed
5857
	/* empty */	{}
unknown's avatar
unknown committed
5858
	| opt_delete_option opt_delete_options {};
5859 5860

opt_delete_option:
5861
	QUICK		{ Select->options|= OPTION_QUICK; }
5862
	| LOW_PRIORITY	{ Lex->lock_option= TL_WRITE_LOW_PRIORITY; }
5863
	| IGNORE_SYM	{ Lex->ignore= 1; };
5864

5865
truncate:
unknown's avatar
unknown committed
5866
	TRUNCATE_SYM opt_table_sym table_name
5867
	{
5868
	  LEX* lex= Lex;
5869
	  lex->sql_command= SQLCOM_TRUNCATE;
5870
	  lex->select_lex.options= 0;
5871
	  lex->select_lex.init_order();
unknown's avatar
unknown committed
5872 5873
	}
	;
5874

unknown's avatar
unknown committed
5875 5876
opt_table_sym:
	/* empty */
unknown's avatar
unknown committed
5877
	| TABLE_SYM;
5878

unknown's avatar
unknown committed
5879 5880
/* Show things */

5881 5882
show:	SHOW
	{
unknown's avatar
unknown committed
5883 5884
	  LEX *lex=Lex;
	  lex->wild=0;
5885 5886 5887
          lex->lock_option= TL_READ;
          mysql_init_select(lex);
          lex->current_select->parsing_place= SELECT_LIST;
unknown's avatar
unknown committed
5888 5889
	  bzero((char*) &lex->create_info,sizeof(lex->create_info));
	}
unknown's avatar
unknown committed
5890
	show_param
5891 5892
	{}
	;
unknown's avatar
unknown committed
5893 5894

show_param:
5895
         DATABASES wild_and_where
5896 5897 5898 5899 5900 5901 5902
         {
           LEX *lex= Lex;
           lex->sql_command= SQLCOM_SELECT;
           lex->orig_sql_command= SQLCOM_SHOW_DATABASES;
           if (prepare_schema_table(YYTHD, lex, 0, SCH_SCHEMATA))
             YYABORT;
         }
5903
         | opt_full TABLES opt_db wild_and_where
5904 5905 5906 5907
           {
             LEX *lex= Lex;
             lex->sql_command= SQLCOM_SELECT;
             lex->orig_sql_command= SQLCOM_SHOW_TABLES;
5908
             lex->select_lex.db= $3;
5909 5910 5911
             if (prepare_schema_table(YYTHD, lex, 0, SCH_TABLE_NAMES))
               YYABORT;
           }
5912
         | TABLE_SYM STATUS_SYM opt_db wild_and_where
5913 5914 5915 5916
           {
             LEX *lex= Lex;
             lex->sql_command= SQLCOM_SELECT;
             lex->orig_sql_command= SQLCOM_SHOW_TABLE_STATUS;
5917
             lex->select_lex.db= $3;
5918 5919 5920
             if (prepare_schema_table(YYTHD, lex, 0, SCH_TABLES))
               YYABORT;
           }
5921
        | OPEN_SYM TABLES opt_db wild_and_where
5922 5923 5924 5925
          {
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_OPEN_TABLES;
5926
            lex->select_lex.db= $3;
5927 5928 5929
            if (prepare_schema_table(YYTHD, lex, 0, SCH_OPEN_TABLES))
              YYABORT;
          }
unknown's avatar
unknown committed
5930
	| ENGINE_SYM storage_engines 
unknown's avatar
unknown committed
5931 5932
	  { Lex->create_info.db_type= $2; }
	  show_engine_param
5933
	| opt_full COLUMNS from_or_in table_ident opt_db wild_and_where
unknown's avatar
unknown committed
5934
	  {
5935 5936 5937
 	    LEX *lex= Lex;
	    lex->sql_command= SQLCOM_SELECT;
	    lex->orig_sql_command= SQLCOM_SHOW_FIELDS;
5938 5939 5940
	    if ($5)
	      $4->change_db($5);
	    if (prepare_schema_table(YYTHD, lex, $4, SCH_COLUMNS))
unknown's avatar
unknown committed
5941 5942
	      YYABORT;
	  }
5943
        | NEW_SYM MASTER_SYM FOR_SYM SLAVE WITH MASTER_LOG_FILE_SYM EQ
unknown's avatar
unknown committed
5944 5945
	  TEXT_STRING_sys AND_SYM MASTER_LOG_POS_SYM EQ ulonglong_num
	  AND_SYM MASTER_SERVER_ID_SYM EQ
unknown's avatar
unknown committed
5946 5947 5948 5949 5950
	ULONG_NUM
          {
	    Lex->sql_command = SQLCOM_SHOW_NEW_MASTER;
	    Lex->mi.log_file_name = $8.str;
	    Lex->mi.pos = $12;
5951
	    Lex->mi.server_id = $16;
unknown's avatar
unknown committed
5952
          }
5953
        | master_or_binary LOGS_SYM
unknown's avatar
unknown committed
5954 5955
          {
	    Lex->sql_command = SQLCOM_SHOW_BINLOGS;
5956 5957 5958 5959 5960
          }
        | SLAVE HOSTS_SYM
          {
	    Lex->sql_command = SQLCOM_SHOW_SLAVE_HOSTS;
          }
unknown's avatar
unknown committed
5961
        | BINLOG_SYM EVENTS_SYM binlog_in binlog_from
unknown's avatar
unknown committed
5962
          {
5963 5964
	    LEX *lex= Lex;
	    lex->sql_command= SQLCOM_SHOW_BINLOG_EVENTS;
5965
          } opt_limit_clause_init
5966
        | keys_or_index from_or_in table_ident opt_db where_clause
5967 5968 5969 5970
          {
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_KEYS;
5971 5972 5973
	    if ($4)
	      $3->change_db($4);
            if (prepare_schema_table(YYTHD, lex, $3, SCH_STATISTICS))
5974
              YYABORT;
unknown's avatar
unknown committed
5975
	  }
unknown's avatar
unknown committed
5976 5977 5978 5979 5980 5981 5982 5983
	| COLUMN_SYM TYPES_SYM
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_COLUMN_TYPES;
	  }
	| TABLE_SYM TYPES_SYM
	  {
	    LEX *lex=Lex;
unknown's avatar
unknown committed
5984 5985 5986 5987 5988 5989 5990
	    lex->sql_command= SQLCOM_SHOW_STORAGE_ENGINES;
	    WARN_DEPRECATED("SHOW TABLE TYPES", "SHOW [STORAGE] ENGINES");
	  }
	| opt_storage ENGINES_SYM
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_STORAGE_ENGINES;
unknown's avatar
unknown committed
5991 5992 5993 5994 5995 5996
	  }
	| PRIVILEGES
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_PRIVILEGES;
	  }
5997
        | COUNT_SYM '(' '*' ')' WARNINGS
5998
          { (void) create_select_for_variable("warning_count"); }
5999
        | COUNT_SYM '(' '*' ')' ERRORS
6000
	  { (void) create_select_for_variable("error_count"); }
6001
        | WARNINGS opt_limit_clause_init
unknown's avatar
unknown committed
6002
          { Lex->sql_command = SQLCOM_SHOW_WARNS;}
6003
        | ERRORS opt_limit_clause_init
6004
          { Lex->sql_command = SQLCOM_SHOW_ERRORS;}
6005
        | opt_var_type STATUS_SYM wild_and_where
6006
          {
6007 6008 6009 6010 6011 6012 6013
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_STATUS;
            lex->option_type= (enum_var_type) $1;
            if (prepare_schema_table(YYTHD, lex, 0, SCH_STATUS))
              YYABORT;
          }
unknown's avatar
unknown committed
6014
        | INNOBASE_SYM STATUS_SYM
unknown's avatar
unknown committed
6015
          { Lex->sql_command = SQLCOM_SHOW_INNODB_STATUS; WARN_DEPRECATED("SHOW INNODB STATUS", "SHOW ENGINE INNODB STATUS"); }
unknown's avatar
unknown committed
6016 6017
        | MUTEX_SYM STATUS_SYM
          { Lex->sql_command = SQLCOM_SHOW_MUTEX_STATUS; }
unknown's avatar
unknown committed
6018 6019
	| opt_full PROCESSLIST_SYM
	  { Lex->sql_command= SQLCOM_SHOW_PROCESSLIST;}
6020
        | opt_var_type  VARIABLES wild_and_where
6021 6022 6023 6024 6025 6026 6027 6028
          {
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_VARIABLES;
            lex->option_type= (enum_var_type) $1;
            if (prepare_schema_table(YYTHD, lex, 0, SCH_VARIABLES))
              YYABORT;
          }
6029
        | charset wild_and_where
6030 6031 6032 6033 6034 6035 6036
          {
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_CHARSETS;
            if (prepare_schema_table(YYTHD, lex, 0, SCH_CHARSETS))
              YYABORT;
          }
6037
        | COLLATION_SYM wild_and_where
6038 6039 6040 6041 6042 6043 6044
          {
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_COLLATIONS;
            if (prepare_schema_table(YYTHD, lex, 0, SCH_COLLATIONS))
              YYABORT;
          }
6045
	| BERKELEY_DB_SYM LOGS_SYM
unknown's avatar
unknown committed
6046
	  { Lex->sql_command= SQLCOM_SHOW_LOGS; WARN_DEPRECATED("SHOW BDB LOGS", "SHOW ENGINE BDB LOGS"); }
unknown's avatar
unknown committed
6047
	| LOGS_SYM
unknown's avatar
unknown committed
6048
	  { Lex->sql_command= SQLCOM_SHOW_LOGS; WARN_DEPRECATED("SHOW LOGS", "SHOW ENGINE BDB LOGS"); }
6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071
	| GRANTS
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_GRANTS;
	    THD *thd= lex->thd;
	    LEX_USER *curr_user;
            if (!(curr_user= (LEX_USER*) thd->alloc(sizeof(st_lex_user))))
              YYABORT;
            curr_user->user.str= thd->priv_user;
            curr_user->user.length= strlen(thd->priv_user);
            if (*thd->priv_host != 0)
            {
              curr_user->host.str= thd->priv_host;
              curr_user->host.length= strlen(thd->priv_host);
            }
            else
            {
              curr_user->host.str= (char *) "%";
              curr_user->host.length= 1;
            }
            curr_user->password.str=NullS;
	    lex->grant_user= curr_user;
	  }
unknown's avatar
unknown committed
6072
	| GRANTS FOR_SYM user
unknown's avatar
unknown committed
6073 6074 6075 6076 6077 6078
	  {
	    LEX *lex=Lex;
	    lex->sql_command= SQLCOM_SHOW_GRANTS;
	    lex->grant_user=$3;
	    lex->grant_user->password.str=NullS;
	  }
unknown's avatar
unknown committed
6079
	| CREATE DATABASE opt_if_not_exists ident
unknown's avatar
unknown committed
6080 6081
	  {
	    Lex->sql_command=SQLCOM_SHOW_CREATE_DB;
unknown's avatar
unknown committed
6082 6083
	    Lex->create_info.options=$3;
	    Lex->name=$4.str;
unknown's avatar
unknown committed
6084
	  }
unknown's avatar
unknown committed
6085 6086
        | CREATE TABLE_SYM table_ident
          {
6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097
            LEX *lex= Lex;
	    lex->sql_command = SQLCOM_SHOW_CREATE;
	    if (!lex->select_lex.add_table_to_list(YYTHD, $3, NULL,0))
	      YYABORT;
            lex->only_view= 0;
	  }
        | CREATE VIEW_SYM table_ident
          {
            LEX *lex= Lex;
	    lex->sql_command = SQLCOM_SHOW_CREATE;
	    if (!lex->select_lex.add_table_to_list(YYTHD, $3, NULL, 0))
unknown's avatar
unknown committed
6098
	      YYABORT;
6099
            lex->only_view= 1;
unknown's avatar
unknown committed
6100 6101 6102 6103
	  }
        | MASTER_SYM STATUS_SYM
          {
	    Lex->sql_command = SQLCOM_SHOW_MASTER_STAT;
unknown's avatar
unknown committed
6104
          }
unknown's avatar
unknown committed
6105 6106 6107
        | SLAVE STATUS_SYM
          {
	    Lex->sql_command = SQLCOM_SHOW_SLAVE_STAT;
6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122
          }
	| CREATE PROCEDURE sp_name
	  {
	    LEX *lex= Lex;

	    lex->sql_command = SQLCOM_SHOW_CREATE_PROC;
	    lex->spname= $3;
	  }
	| CREATE FUNCTION_SYM sp_name
	  {
	    LEX *lex= Lex;

	    lex->sql_command = SQLCOM_SHOW_CREATE_FUNC;
	    lex->spname= $3;
	  }
6123
	| PROCEDURE STATUS_SYM wild_and_where
6124
	  {
6125 6126 6127
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_STATUS_PROC;
6128 6129
	    if (!sp_add_to_query_tables(YYTHD, lex, "mysql", "proc", TL_READ))
	      YYABORT;
6130 6131
            if (prepare_schema_table(YYTHD, lex, 0, SCH_PROCEDURES))
              YYABORT;
6132
	  }
6133
	| FUNCTION_SYM STATUS_SYM wild_and_where
6134
	  {
6135 6136 6137
            LEX *lex= Lex;
            lex->sql_command= SQLCOM_SELECT;
            lex->orig_sql_command= SQLCOM_SHOW_STATUS_FUNC;
6138 6139
	    if (!sp_add_to_query_tables(YYTHD, lex, "mysql", "proc", TL_READ))
	      YYABORT;
6140 6141
            if (prepare_schema_table(YYTHD, lex, 0, SCH_PROCEDURES))
              YYABORT;
6142
	  };
unknown's avatar
unknown committed
6143

unknown's avatar
unknown committed
6144 6145 6146 6147 6148 6149 6150 6151
show_engine_param:
	STATUS_SYM
	  {
	    switch (Lex->create_info.db_type) {
	    case DB_TYPE_INNODB:
	      Lex->sql_command = SQLCOM_SHOW_INNODB_STATUS;
	      break;
	    default:
unknown's avatar
unknown committed
6152
	      my_error(ER_NOT_SUPPORTED_YET, MYF(0), "STATUS");
unknown's avatar
unknown committed
6153 6154 6155 6156 6157 6158 6159 6160 6161 6162
	      YYABORT;
	    }
	  }
	| LOGS_SYM
	  {
	    switch (Lex->create_info.db_type) {
	    case DB_TYPE_BERKELEY_DB:
	      Lex->sql_command = SQLCOM_SHOW_LOGS;
	      break;
	    default:
unknown's avatar
unknown committed
6163
	      my_error(ER_NOT_SUPPORTED_YET, MYF(0), "LOGS");
unknown's avatar
unknown committed
6164 6165 6166 6167
	      YYABORT;
	    }
	  };

6168 6169 6170 6171
master_or_binary:
	MASTER_SYM
	| BINARY;

unknown's avatar
unknown committed
6172 6173 6174 6175
opt_storage:
	/* empty */
	| STORAGE_SYM;

unknown's avatar
unknown committed
6176 6177
opt_db:
	/* empty */  { $$= 0; }
unknown's avatar
unknown committed
6178
	| from_or_in ident { $$= $2.str; };
unknown's avatar
unknown committed
6179

unknown's avatar
unknown committed
6180 6181
opt_full:
	/* empty */ { Lex->verbose=0; }
unknown's avatar
unknown committed
6182
	| FULL	    { Lex->verbose=1; };
unknown's avatar
unknown committed
6183

unknown's avatar
unknown committed
6184 6185
from_or_in:
	FROM
unknown's avatar
unknown committed
6186
	| IN_SYM;
unknown's avatar
unknown committed
6187

unknown's avatar
unknown committed
6188 6189
binlog_in:
	/* empty */ { Lex->mi.log_file_name = 0; }
unknown's avatar
unknown committed
6190
        | IN_SYM TEXT_STRING_sys { Lex->mi.log_file_name = $2.str; };
unknown's avatar
unknown committed
6191 6192 6193

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

6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208
wild_and_where:
      /* empty */
      | LIKE TEXT_STRING_sys
	{ Lex->wild=  new (YYTHD->mem_root) String($2.str, $2.length,
                                                   system_charset_info); }
      | WHERE expr
        {
          Select->where= $2;
          if ($2)
            $2->top_level_item();
        }
      ;

unknown's avatar
unknown committed
6209

unknown's avatar
unknown committed
6210 6211 6212 6213
/* A Oracle compatible synonym for show */
describe:
	describe_command table_ident
	{
6214 6215 6216 6217 6218 6219 6220 6221 6222
          LEX *lex= Lex;
          lex->lock_option= TL_READ;
          mysql_init_select(lex);
          lex->current_select->parsing_place= SELECT_LIST;
          lex->sql_command= SQLCOM_SELECT;
          lex->orig_sql_command= SQLCOM_SHOW_FIELDS;
          lex->select_lex.db= 0;
          lex->verbose= 0;
          if (prepare_schema_table(YYTHD, lex, $2, SCH_COLUMNS))
unknown's avatar
unknown committed
6223 6224
	    YYABORT;
	}
6225
	opt_describe_column {}
unknown's avatar
unknown committed
6226 6227 6228
	| describe_command opt_extended_describe
	  { Lex->describe|= DESCRIBE_NORMAL; }
	  select
6229
          {
unknown's avatar
unknown committed
6230
	    LEX *lex=Lex;
6231
	    lex->select_lex.options|= SELECT_DESCRIBE;
unknown's avatar
unknown committed
6232 6233
	  }
	;
unknown's avatar
unknown committed
6234 6235 6236

describe_command:
	DESC
unknown's avatar
unknown committed
6237
	| DESCRIBE;
unknown's avatar
unknown committed
6238

unknown's avatar
unknown committed
6239 6240 6241 6242 6243
opt_extended_describe:
	/* empty */ {}
	| EXTENDED_SYM { Lex->describe|= DESCRIBE_EXTENDED; }
	;

unknown's avatar
unknown committed
6244 6245 6246
opt_describe_column:
	/* empty */	{}
	| text_string	{ Lex->wild= $1; }
unknown's avatar
unknown committed
6247
	| ident
unknown's avatar
unknown committed
6248
	  { Lex->wild= new (YYTHD->mem_root) String((const char*) $1.str,$1.length,system_charset_info); };
unknown's avatar
unknown committed
6249 6250 6251 6252 6253


/* flush things */

flush:
6254
	FLUSH_SYM opt_no_write_to_binlog
unknown's avatar
unknown committed
6255 6256 6257
	{
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_FLUSH; lex->type=0;
unknown's avatar
unknown committed
6258
          lex->no_write_to_binlog= $2;
unknown's avatar
unknown committed
6259
	}
6260 6261 6262
	flush_options
	{}
	;
unknown's avatar
unknown committed
6263 6264 6265

flush_options:
	flush_options ',' flush_option
unknown's avatar
unknown committed
6266
	| flush_option;
unknown's avatar
unknown committed
6267 6268

flush_option:
6269
	table_or_tables	{ Lex->type|= REFRESH_TABLES; } opt_table_list {}
unknown's avatar
unknown committed
6270
	| TABLES WITH READ_SYM LOCK_SYM { Lex->type|= REFRESH_TABLES | REFRESH_READ_LOCK; }
unknown's avatar
unknown committed
6271
	| QUERY_SYM CACHE_SYM { Lex->type|= REFRESH_QUERY_CACHE_FREE; }
unknown's avatar
unknown committed
6272 6273 6274 6275
	| 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
6276 6277
        | SLAVE         { Lex->type|= REFRESH_SLAVE; }
        | MASTER_SYM    { Lex->type|= REFRESH_MASTER; }
6278 6279
	| DES_KEY_FILE	{ Lex->type|= REFRESH_DES_KEY_FILE; }
 	| RESOURCES     { Lex->type|= REFRESH_USER_RESOURCES; };
unknown's avatar
unknown committed
6280

unknown's avatar
unknown committed
6281
opt_table_list:
6282 6283
	/* empty */  {;}
	| table_list {;};
unknown's avatar
unknown committed
6284

unknown's avatar
unknown committed
6285
reset:
unknown's avatar
unknown committed
6286 6287 6288 6289
	RESET_SYM
	{
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_RESET; lex->type=0;
6290 6291 6292 6293
	} reset_options
	{}
	;

unknown's avatar
unknown committed
6294 6295
reset_options:
	reset_options ',' reset_option
unknown's avatar
unknown committed
6296
	| reset_option;
unknown's avatar
unknown committed
6297 6298

reset_option:
unknown's avatar
unknown committed
6299 6300
        SLAVE                 { Lex->type|= REFRESH_SLAVE; }
        | MASTER_SYM          { Lex->type|= REFRESH_MASTER; }
unknown's avatar
unknown committed
6301
	| QUERY_SYM CACHE_SYM { Lex->type|= REFRESH_QUERY_CACHE;};
unknown's avatar
unknown committed
6302

unknown's avatar
unknown committed
6303
purge:
unknown's avatar
unknown committed
6304 6305 6306 6307
	PURGE
	{
	  LEX *lex=Lex;
	  lex->type=0;
6308 6309 6310 6311 6312
	} purge_options
	{}
	;

purge_options:
6313
	master_or_binary LOGS_SYM purge_option
unknown's avatar
unknown committed
6314
	;
6315 6316

purge_option:
unknown's avatar
unknown committed
6317
        TO_SYM TEXT_STRING_sys
6318 6319 6320 6321 6322 6323
        {
	   Lex->sql_command = SQLCOM_PURGE;
	   Lex->to_log = $2.str;
        }
	| BEFORE_SYM expr
	{
6324 6325 6326 6327
	  LEX *lex= Lex;
	  lex->value_list.empty();
	  lex->value_list.push_front($2);
	  lex->sql_command= SQLCOM_PURGE_BEFORE;
unknown's avatar
unknown committed
6328
	}
unknown's avatar
unknown committed
6329
	;
unknown's avatar
unknown committed
6330

unknown's avatar
unknown committed
6331 6332 6333
/* kill threads */

kill:
6334
	KILL_SYM kill_option expr
unknown's avatar
unknown committed
6335
	{
unknown's avatar
unknown committed
6336
	  LEX *lex=Lex;
6337 6338 6339
	  lex->value_list.empty();
	  lex->value_list.push_front($3);
          lex->sql_command= SQLCOM_KILL;
unknown's avatar
unknown committed
6340
	};
unknown's avatar
unknown committed
6341

6342 6343 6344 6345 6346
kill_option:
	/* empty */	 { Lex->type= 0; }
	| CONNECTION_SYM { Lex->type= 0; }
	| QUERY_SYM      { Lex->type= ONLY_KILL_QUERY; };

unknown's avatar
unknown committed
6347 6348 6349
/* change database */

use:	USE_SYM ident
unknown's avatar
unknown committed
6350 6351
	{
	  LEX *lex=Lex;
6352 6353
	  lex->sql_command=SQLCOM_CHANGE_DB;
	  lex->select_lex.db= $2.str;
unknown's avatar
unknown committed
6354
	};
unknown's avatar
unknown committed
6355 6356 6357

/* import, export of files */

unknown's avatar
unknown committed
6358
load:	LOAD DATA_SYM load_data_lock opt_local INFILE TEXT_STRING_sys
unknown's avatar
unknown committed
6359
	{
unknown's avatar
unknown committed
6360 6361
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_LOAD;
unknown's avatar
unknown committed
6362 6363
	  lex->lock_option= $3;
	  lex->local_file=  $4;
6364 6365
	  lex->duplicates= DUP_ERROR;
	  lex->ignore= 0;
unknown's avatar
unknown committed
6366
	  if (!(lex->exchange= new sql_exchange($6.str,0)))
unknown's avatar
unknown committed
6367
	    YYABORT;
unknown's avatar
unknown committed
6368
	  lex->field_list.empty();
unknown's avatar
unknown committed
6369 6370 6371 6372
	}
	opt_duplicate INTO TABLE_SYM table_ident opt_field_term opt_line_term
	opt_ignore_lines opt_field_spec
	{
unknown's avatar
unknown committed
6373
	  if (!Select->add_table_to_list(YYTHD, $11, NULL, TL_OPTION_UPDATING))
unknown's avatar
unknown committed
6374 6375 6376
	    YYABORT;
	}
        |
unknown's avatar
unknown committed
6377
	LOAD TABLE_SYM table_ident FROM MASTER_SYM
unknown's avatar
unknown committed
6378 6379
        {
	  Lex->sql_command = SQLCOM_LOAD_MASTER_TABLE;
unknown's avatar
unknown committed
6380
	  if (!Select->add_table_to_list(YYTHD, $3, NULL, TL_OPTION_UPDATING))
unknown's avatar
unknown committed
6381
	    YYABORT;
unknown's avatar
unknown committed
6382 6383

        }
6384 6385 6386 6387
        |
	LOAD DATA_SYM FROM MASTER_SYM
        {
	  Lex->sql_command = SQLCOM_LOAD_MASTER_DATA;
unknown's avatar
unknown committed
6388
        };
unknown's avatar
unknown committed
6389 6390 6391

opt_local:
	/* empty */	{ $$=0;}
unknown's avatar
unknown committed
6392
	| LOCAL_SYM	{ $$=1;};
unknown's avatar
unknown committed
6393

unknown's avatar
unknown committed
6394
load_data_lock:
6395
	/* empty */	{ $$= YYTHD->update_lock_default; }
unknown's avatar
unknown committed
6396 6397
	| CONCURRENT	{ $$= TL_WRITE_CONCURRENT_INSERT ; }
	| LOW_PRIORITY	{ $$= TL_WRITE_LOW_PRIORITY; };
unknown's avatar
unknown committed
6398 6399


unknown's avatar
unknown committed
6400 6401 6402
opt_duplicate:
	/* empty */	{ Lex->duplicates=DUP_ERROR; }
	| REPLACE	{ Lex->duplicates=DUP_REPLACE; }
6403
	| IGNORE_SYM	{ Lex->ignore= 1; };
unknown's avatar
unknown committed
6404 6405 6406

opt_field_term:
	/* empty */
unknown's avatar
unknown committed
6407
	| COLUMNS field_term_list;
unknown's avatar
unknown committed
6408 6409 6410

field_term_list:
	field_term_list field_term
unknown's avatar
unknown committed
6411
	| field_term;
unknown's avatar
unknown committed
6412 6413

field_term:
6414 6415 6416 6417 6418
	TERMINATED BY text_string 
          {
            DBUG_ASSERT(Lex->exchange);
            Lex->exchange->field_term= $3;
          }
unknown's avatar
unknown committed
6419
	| OPTIONALLY ENCLOSED BY text_string
unknown's avatar
unknown committed
6420
	  {
unknown's avatar
unknown committed
6421
            LEX *lex= Lex;
6422
            DBUG_ASSERT(lex->exchange);
unknown's avatar
unknown committed
6423 6424
            lex->exchange->enclosed= $4;
            lex->exchange->opt_enclosed= 1;
unknown's avatar
unknown committed
6425
	  }
unknown's avatar
unknown committed
6426
        | ENCLOSED BY text_string
6427 6428 6429 6430
          {
            DBUG_ASSERT(Lex->exchange);
            Lex->exchange->enclosed= $3;
          }
unknown's avatar
unknown committed
6431
        | ESCAPED BY text_string
6432 6433 6434 6435
          {
            DBUG_ASSERT(Lex->exchange);
            Lex->exchange->escaped= $3;
          };
unknown's avatar
unknown committed
6436 6437 6438

opt_line_term:
	/* empty */
unknown's avatar
unknown committed
6439
	| LINES line_term_list;
unknown's avatar
unknown committed
6440 6441 6442

line_term_list:
	line_term_list line_term
unknown's avatar
unknown committed
6443
	| line_term;
unknown's avatar
unknown committed
6444 6445

line_term:
unknown's avatar
unknown committed
6446
        TERMINATED BY text_string
6447 6448 6449 6450
          {
            DBUG_ASSERT(Lex->exchange);
            Lex->exchange->line_term= $3;
          }
unknown's avatar
unknown committed
6451
        | STARTING BY text_string
6452 6453 6454 6455
          {
            DBUG_ASSERT(Lex->exchange);
            Lex->exchange->line_start= $3;
          };
unknown's avatar
unknown committed
6456 6457 6458

opt_ignore_lines:
	/* empty */
unknown's avatar
unknown committed
6459 6460
        | IGNORE_SYM NUM LINES
          {
6461 6462 6463
            DBUG_ASSERT(Lex->exchange);
            Lex->exchange->skip_lines= atol($2.str);
          };
unknown's avatar
unknown committed
6464 6465 6466 6467

/* Common definitions */

text_literal:
6468
	TEXT_STRING_literal
unknown's avatar
unknown committed
6469 6470
	{
	  THD *thd= YYTHD;
unknown's avatar
unknown committed
6471
	  $$ = new Item_string($1.str,$1.length,thd->variables.collation_connection);
unknown's avatar
unknown committed
6472
	}
unknown's avatar
unknown committed
6473
	| NCHAR_STRING
6474
	{ $$=  new Item_string($1.str,$1.length,national_charset_info); }
6475
	| UNDERSCORE_CHARSET TEXT_STRING
6476
	  { $$ = new Item_string($2.str,$2.length,Lex->charset); }
6477
	| text_literal TEXT_STRING_literal
unknown's avatar
unknown committed
6478 6479
	  { ((Item_string*) $1)->append($2.str,$2.length); }
	;
unknown's avatar
unknown committed
6480 6481

text_string:
6482
	TEXT_STRING_literal
unknown's avatar
unknown committed
6483
	{ $$=  new (YYTHD->mem_root) String($1.str,$1.length,YYTHD->variables.collation_connection); }
unknown's avatar
unknown committed
6484 6485
	| HEX_NUM
	  {
unknown's avatar
unknown committed
6486
	    Item *tmp= new Item_hex_string($1.str, $1.length);
6487
	    /*
unknown's avatar
unknown committed
6488
	      it is OK only emulate fix_fields, because we need only
6489 6490 6491
              value of constant
	    */
	    $$= tmp ?
unknown's avatar
unknown committed
6492
	      tmp->quick_fix_field(), tmp->val_str((String*) 0) :
6493
	      (String*) 0;
6494
	  }
unknown's avatar
unknown committed
6495 6496 6497 6498 6499 6500 6501 6502 6503 6504
        | BIN_NUM
          {
	    Item *tmp= new Item_bin_string($1.str, $1.length);
	    /*
	      it is OK only emulate fix_fields, because we need only
              value of constant
	    */
	    $$= tmp ? tmp->quick_fix_field(), tmp->val_str((String*) 0) :
		      (String*) 0;
          }
6505 6506
	;

unknown's avatar
unknown committed
6507
param_marker:
6508
        '?'
unknown's avatar
unknown committed
6509
        {
6510 6511 6512
          THD *thd=YYTHD;
	  LEX *lex= thd->lex;
          if (thd->command == COM_PREPARE)
6513
          {
6514 6515 6516 6517
            Item_param *item= new Item_param((uint) (lex->tok_start -
                                                     (uchar *) thd->query));
            if (!($$= item) || lex->param_list.push_back(item))
            {
unknown's avatar
unknown committed
6518
	      my_message(ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES), MYF(0));
6519 6520
	      YYABORT;
            }
unknown's avatar
unknown committed
6521
          }
6522
          else
unknown's avatar
unknown committed
6523
          {
6524
            yyerror(ER(ER_SYNTAX_ERROR));
unknown's avatar
unknown committed
6525 6526
            YYABORT;
          }
6527 6528 6529
        }
	;

unknown's avatar
unknown committed
6530 6531 6532
signed_literal:
	literal		{ $$ = $1; }
	| '+' NUM_literal { $$ = $2; }
6533 6534
	| '-' NUM_literal
	  {
6535
	    $2->max_length++;
unknown's avatar
unknown committed
6536
	    $$= $2->neg();
6537
	  }
unknown's avatar
unknown committed
6538 6539 6540
	;


unknown's avatar
unknown committed
6541 6542
literal:
	text_literal	{ $$ =	$1; }
unknown's avatar
unknown committed
6543
	| NUM_literal	{ $$ = $1; }
unknown's avatar
unknown committed
6544
	| NULL_SYM	{ $$ =	new Item_null();
6545
			  Lex->next_state=MY_LEX_OPERATOR_OR_IDENT;}
unknown's avatar
unknown committed
6546 6547
	| HEX_NUM	{ $$ =	new Item_hex_string($1.str, $1.length);}
	| BIN_NUM	{ $$= new Item_bin_string($1.str, $1.length); }
6548
	| UNDERSCORE_CHARSET HEX_NUM
6549
	  {
unknown's avatar
unknown committed
6550
	    Item *tmp= new Item_hex_string($2.str, $2.length);
6551
	    /*
unknown's avatar
unknown committed
6552
	      it is OK only emulate fix_fieds, because we need only
6553 6554 6555
              value of constant
	    */
	    String *str= tmp ?
unknown's avatar
unknown committed
6556
	      tmp->quick_fix_field(), tmp->val_str((String*) 0) :
6557
	      (String*) 0;
unknown's avatar
unknown committed
6558 6559 6560
	    $$= new Item_string(str ? str->ptr() : "",
				str ? str->length() : 0,
				Lex->charset);
6561
	  }
unknown's avatar
unknown committed
6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575
	| UNDERSCORE_CHARSET BIN_NUM
          {
	    Item *tmp= new Item_bin_string($2.str, $2.length);
	    /*
	      it is OK only emulate fix_fieds, because we need only
              value of constant
	    */
	    String *str= tmp ?
	      tmp->quick_fix_field(), tmp->val_str((String*) 0) :
	      (String*) 0;
	    $$= new Item_string(str ? str->ptr() : "",
				str ? str->length() : 0,
				Lex->charset);
          }
unknown's avatar
unknown committed
6576 6577
	| DATE_SYM text_literal { $$ = $2; }
	| TIME_SYM text_literal { $$ = $2; }
unknown's avatar
unknown committed
6578
	| TIMESTAMP text_literal { $$ = $2; };
unknown's avatar
unknown committed
6579

6580
NUM_literal:
6581 6582
	NUM		{ int error; $$ = new Item_int($1.str, (longlong) my_strtoll10($1.str, NULL, &error), $1.length); }
	| LONG_NUM	{ int error; $$ = new Item_int($1.str, (longlong) my_strtoll10($1.str, NULL, &error), $1.length); }
6583
	| ULONGLONG_NUM	{ $$ =	new Item_uint($1.str, $1.length); }
unknown's avatar
unknown committed
6584
        | DECIMAL_NUM
6585
	{
unknown's avatar
unknown committed
6586
           $$= new Item_decimal($1.str, $1.length, YYTHD->charset());
6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599
	   if (YYTHD->net.report_error)
	   {
	     YYABORT;
	   }
	}
	| FLOAT_NUM
	{
	   $$ =	new Item_float($1.str, $1.length);
	   if (YYTHD->net.report_error)
	   {
	     YYABORT;
	   }
	}
6600 6601
	;
	
unknown's avatar
unknown committed
6602 6603 6604 6605 6606
/**********************************************************************
** Createing different items.
**********************************************************************/

insert_ident:
6607
	simple_ident_nospvar { $$=$1; }
unknown's avatar
unknown committed
6608
	| table_wild	 { $$=$1; };
unknown's avatar
unknown committed
6609 6610

table_wild:
unknown's avatar
unknown committed
6611
	ident '.' '*'
6612 6613
	{
	  $$ = new Item_field(NullS,$1.str,"*");
unknown's avatar
unknown committed
6614
	  Lex->current_select->with_wild++;
6615
	}
unknown's avatar
unknown committed
6616
	| ident '.' ident '.' '*'
6617 6618 6619 6620
	{
	  $$ = new Item_field((YYTHD->client_capabilities &
   			     CLIENT_NO_SCHEMA ? NullS : $1.str),
			     $3.str,"*");
unknown's avatar
unknown committed
6621
	  Lex->current_select->with_wild++;
6622 6623
	}
	;
unknown's avatar
unknown committed
6624 6625

order_ident:
unknown's avatar
unknown committed
6626
	expr { $$=$1; };
unknown's avatar
unknown committed
6627 6628

simple_ident:
6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653
	ident
	{
	  sp_pvar_t *spv;
	  LEX *lex = Lex;
          sp_pcontext *spc = lex->spcont;

	  if (spc && (spv = spc->find_pvar(&$1)))
	  { /* We're compiling a stored procedure and found a variable */
	    $$ = (Item*) new Item_splocal($1, spv->offset);
            lex->variables_used= 1;
	    lex->safe_to_cache_query=0;
	  }
	  else
	  {
	    SELECT_LEX *sel=Select;
	    $$= (sel->parsing_place != IN_HAVING ||
	         sel->get_in_sum_expr() > 0) ?
                 (Item*) new Item_field(NullS,NullS,$1.str) :
	         (Item*) new Item_ref(NullS,NullS,$1.str);
	  }
        }
        | simple_ident_q { $$= $1; }
	;

simple_ident_nospvar:
unknown's avatar
unknown committed
6654
	ident
unknown's avatar
unknown committed
6655
	{
unknown's avatar
unknown committed
6656
	  SELECT_LEX *sel=Select;
6657
	  $$= (sel->parsing_place != IN_HAVING ||
unknown's avatar
unknown committed
6658 6659
	       sel->get_in_sum_expr() > 0) ?
              (Item*) new Item_field(NullS,NullS,$1.str) :
6660
	      (Item*) new Item_ref(NullS,NullS,$1.str);
unknown's avatar
unknown committed
6661
	}
6662 6663 6664 6665 6666
	| simple_ident_q { $$= $1; }
	;	

simple_ident_q:
	ident '.' ident
unknown's avatar
unknown committed
6667
	{
unknown's avatar
unknown committed
6668
	  THD *thd= YYTHD;
6669
	  LEX *lex= thd->lex;
6670 6671 6672 6673 6674 6675 6676 6677 6678 6679
         
          /*
            FIXME This will work ok in simple_ident_nospvar case because
            we can't meet simple_ident_nospvar in trigger now. But it
            should be changed in future.
          */
          if (lex->sphead && lex->sphead->m_type == TYPE_ENUM_TRIGGER &&
              (!my_strcasecmp(system_charset_info, $1.str, "NEW") || 
               !my_strcasecmp(system_charset_info, $1.str, "OLD")))
          {
6680
            Item_trigger_field *trg_fld;
6681 6682 6683 6684 6685
            bool new_row= ($1.str[0]=='N' || $1.str[0]=='n');
            
            if (lex->trg_chistics.event == TRG_EVENT_INSERT &&
                !new_row)
            {
unknown's avatar
unknown committed
6686
              my_error(ER_TRG_NO_SUCH_ROW_IN_TRG, MYF(0), "OLD", "on INSERT");
6687 6688 6689 6690 6691 6692
              YYABORT;
            }
            
            if (lex->trg_chistics.event == TRG_EVENT_DELETE &&
                new_row)
            {
unknown's avatar
unknown committed
6693
              my_error(ER_TRG_NO_SUCH_ROW_IN_TRG, MYF(0), "NEW", "on DELETE");
6694 6695 6696
              YYABORT;
            }
            
6697 6698 6699 6700
            if (!(trg_fld= new Item_trigger_field(new_row ?
                                                  Item_trigger_field::NEW_ROW:
                                                  Item_trigger_field::OLD_ROW,
                                                  $3.str)))
6701
              YYABORT;
6702 6703 6704 6705 6706 6707 6708
          
            /*
              Let us add this item to list of all Item_trigger_field objects
              in trigger.
            */
            lex->trg_table_fields.link_in_list((byte *)trg_fld,
              (byte**)&trg_fld->next_trg_field);
6709 6710 6711 6712 6713 6714 6715 6716
            
            $$= (Item *)trg_fld;
          }
          else
          {
	    SELECT_LEX *sel= lex->current_select;
	    if (sel->no_table_names_allowed)
	    {
6717 6718
	      my_error(ER_TABLENAME_NOT_ALLOWED_HERE,
                       MYF(0), $1.str, thd->where);
6719 6720 6721 6722 6723 6724 6725
	    }
	    $$= (sel->parsing_place != IN_HAVING ||
	         sel->get_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
6726
	| '.' ident '.' ident
unknown's avatar
unknown committed
6727
	{
unknown's avatar
unknown committed
6728
	  THD *thd= YYTHD;
6729
	  LEX *lex= thd->lex;
unknown's avatar
unknown committed
6730
	  SELECT_LEX *sel= lex->current_select;
unknown's avatar
unknown committed
6731 6732
	  if (sel->no_table_names_allowed)
	  {
6733 6734
	    my_error(ER_TABLENAME_NOT_ALLOWED_HERE,
                     MYF(0), $2.str, thd->where);
unknown's avatar
unknown committed
6735
	  }
6736
	  $$= (sel->parsing_place != IN_HAVING ||
unknown's avatar
unknown committed
6737 6738
	       sel->get_in_sum_expr() > 0) ?
	      (Item*) new Item_field(NullS,$2.str,$4.str) :
6739
              (Item*) new Item_ref(NullS, $2.str, $4.str);
unknown's avatar
unknown committed
6740
	}
unknown's avatar
unknown committed
6741
	| ident '.' ident '.' ident
unknown's avatar
unknown committed
6742
	{
unknown's avatar
unknown committed
6743
	  THD *thd= YYTHD;
6744
	  LEX *lex= thd->lex;
unknown's avatar
unknown committed
6745
	  SELECT_LEX *sel= lex->current_select;
unknown's avatar
unknown committed
6746 6747
	  if (sel->no_table_names_allowed)
	  {
6748 6749
	    my_error(ER_TABLENAME_NOT_ALLOWED_HERE,
                     MYF(0), $3.str, thd->where);
unknown's avatar
unknown committed
6750
	  }
6751
	  $$= (sel->parsing_place != IN_HAVING ||
unknown's avatar
unknown committed
6752 6753 6754 6755
	       sel->get_in_sum_expr() > 0) ?
	      (Item*) new Item_field((YYTHD->client_capabilities &
				      CLIENT_NO_SCHEMA ? NullS : $1.str),
				     $3.str, $5.str) :
6756 6757
	      (Item*) new Item_ref((YYTHD->client_capabilities &
				    CLIENT_NO_SCHEMA ? NullS : $1.str),
unknown's avatar
unknown committed
6758
                                   $3.str, $5.str);
unknown's avatar
unknown committed
6759
	};
unknown's avatar
unknown committed
6760 6761 6762 6763


field_ident:
	ident			{ $$=$1;}
6764
	| ident '.' ident	{ $$=$3;}	/* Skip schema name in create*/
unknown's avatar
unknown committed
6765
	| '.' ident		{ $$=$2;}	/* For Delphi */;
unknown's avatar
unknown committed
6766 6767 6768

table_ident:
	ident			{ $$=new Table_ident($1); }
unknown's avatar
unknown committed
6769
	| ident '.' ident	{ $$=new Table_ident(YYTHD, $1,$3,0);}
6770 6771 6772
	| '.' ident		{ $$=new Table_ident($2);} /* For Delphi */
        ;

unknown's avatar
unknown committed
6773
table_ident_nodb:
unknown's avatar
unknown committed
6774
	ident			{ LEX_STRING db={(char*) any_db,3}; $$=new Table_ident(YYTHD, db,$1,0); }
6775
        ;
unknown's avatar
unknown committed
6776

unknown's avatar
unknown committed
6777
IDENT_sys:
6778 6779 6780 6781 6782
	IDENT { $$= $1; }
	| IDENT_QUOTED
	  {
	    THD *thd= YYTHD;
	    if (thd->charset_is_system_charset)
6783 6784 6785 6786 6787 6788 6789
            {
              CHARSET_INFO *cs= system_charset_info;
              uint wlen= cs->cset->well_formed_len(cs, $1.str,
                                                   $1.str+$1.length,
                                                   $1.length);
              if (wlen < $1.length)
              {
6790 6791
                my_error(ER_INVALID_CHARACTER_STRING, MYF(0),
                         cs->csname, $1.str + wlen);
6792 6793
                YYABORT;
              }
6794
	      $$= $1;
6795
            }
6796 6797 6798 6799
	    else
	      thd->convert_string(&$$, system_charset_info,
				  $1.str, $1.length, thd->charset());
	  }
unknown's avatar
unknown committed
6800 6801 6802 6803 6804 6805
	;

TEXT_STRING_sys:
	TEXT_STRING
	{
	  THD *thd= YYTHD;
unknown's avatar
unknown committed
6806 6807
	  if (thd->charset_is_system_charset)
	    $$= $1;
unknown's avatar
unknown committed
6808
	  else
unknown's avatar
unknown committed
6809 6810
	    thd->convert_string(&$$, system_charset_info,
				$1.str, $1.length, thd->charset());
unknown's avatar
unknown committed
6811 6812 6813
	}
	;

6814
TEXT_STRING_literal:
unknown's avatar
unknown committed
6815 6816 6817
	TEXT_STRING
	{
	  THD *thd= YYTHD;
unknown's avatar
unknown committed
6818 6819
	  if (thd->charset_is_collation_connection)
	    $$= $1;
unknown's avatar
unknown committed
6820
	  else
unknown's avatar
unknown committed
6821 6822
	    thd->convert_string(&$$, thd->variables.collation_connection,
				$1.str, $1.length, thd->charset());
unknown's avatar
unknown committed
6823 6824 6825 6826
	}
	;


unknown's avatar
unknown committed
6827
ident:
unknown's avatar
unknown committed
6828
	IDENT_sys	    { $$=$1; }
unknown's avatar
unknown committed
6829 6830
	| keyword
	{
unknown's avatar
unknown committed
6831 6832 6833
	  THD *thd= YYTHD;
	  $$.str=    thd->strmake($1.str, $1.length);
	  $$.length= $1.length;
6834 6835
	}
	;
unknown's avatar
unknown committed
6836 6837

ident_or_text:
unknown's avatar
unknown committed
6838 6839 6840
	ident 			{ $$=$1;}
	| TEXT_STRING_sys	{ $$=$1;}
	| LEX_HOSTNAME		{ $$=$1;};
unknown's avatar
unknown committed
6841 6842 6843 6844

user:
	ident_or_text
	{
unknown's avatar
unknown committed
6845 6846
	  THD *thd= YYTHD;
	  if (!($$=(LEX_USER*) thd->alloc(sizeof(st_lex_user))))
unknown's avatar
unknown committed
6847
	    YYABORT;
6848 6849 6850 6851
	  $$->user = $1;
	  $$->host.str= (char *) "%";
	  $$->host.length= 1;
	}
unknown's avatar
unknown committed
6852 6853
	| ident_or_text '@' ident_or_text
	  {
unknown's avatar
unknown committed
6854 6855
	    THD *thd= YYTHD;
	    if (!($$=(LEX_USER*) thd->alloc(sizeof(st_lex_user))))
unknown's avatar
unknown committed
6856 6857
	      YYABORT;
	    $$->user = $1; $$->host=$3;
6858
	  }
unknown's avatar
unknown committed
6859
	| CURRENT_USER optional_braces
6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876
	{
          THD *thd= YYTHD;
          if (!($$=(LEX_USER*) thd->alloc(sizeof(st_lex_user))))
            YYABORT;
          $$->user.str= thd->priv_user;
          $$->user.length= strlen(thd->priv_user);
          if (*thd->priv_host != 0)
          {
            $$->host.str= thd->priv_host;
            $$->host.length= strlen(thd->priv_host);
          }
          else
          {
            $$->host.str= (char *) "%";
            $$->host.length= 1;
          }
	};
unknown's avatar
unknown committed
6877 6878 6879 6880 6881

/* Keyword that we allow for identifiers */

keyword:
	ACTION			{}
unknown's avatar
unknown committed
6882
	| ADDDATE_SYM		{}
unknown's avatar
unknown committed
6883
	| AFTER_SYM		{}
6884
	| AGAINST		{}
unknown's avatar
unknown committed
6885
	| AGGREGATE_SYM		{}
6886
	| ALGORITHM_SYM		{}
unknown's avatar
unknown committed
6887
	| ANY_SYM		{}
unknown's avatar
unknown committed
6888
	| ASCII_SYM		{}
unknown's avatar
unknown committed
6889
	| AUTO_INC		{}
unknown's avatar
unknown committed
6890 6891
	| AVG_ROW_LENGTH	{}
	| AVG_SYM		{}
unknown's avatar
unknown committed
6892
	| BACKUP_SYM		{}
unknown's avatar
unknown committed
6893
	| BEGIN_SYM		{}
unknown's avatar
unknown committed
6894
	| BERKELEY_DB_SYM	{}
unknown's avatar
unknown committed
6895
	| BINLOG_SYM		{}
unknown's avatar
unknown committed
6896 6897
	| BIT_SYM		{}
	| BOOL_SYM		{}
unknown's avatar
unknown committed
6898
	| BOOLEAN_SYM		{}
6899
	| BYTE_SYM		{}
unknown's avatar
unknown committed
6900
	| BTREE_SYM		{}
unknown's avatar
unknown committed
6901
	| CACHE_SYM		{}
6902
	| CASCADED              {}
unknown's avatar
unknown committed
6903
	| CHAIN_SYM		{}
6904
	| CHANGED		{}
6905
	| CHARSET		{}
unknown's avatar
unknown committed
6906
	| CHECKSUM_SYM		{}
6907
	| CIPHER_SYM		{}
unknown's avatar
unknown committed
6908
	| CLIENT_SYM		{}
6909
	| CLOSE_SYM		{}
unknown's avatar
unknown committed
6910
	| COLLATION_SYM		{}
6911
        | COLUMNS               {}
unknown's avatar
unknown committed
6912
	| COMMENT_SYM		{}
unknown's avatar
unknown committed
6913
	| COMMITTED_SYM		{}
unknown's avatar
unknown committed
6914
	| COMMIT_SYM		{}
6915
	| COMPACT_SYM		{}
unknown's avatar
unknown committed
6916
	| COMPRESSED_SYM	{}
unknown's avatar
unknown committed
6917
	| CONCURRENT		{}
6918
	| CONSISTENT_SYM	{}
6919
	| CONTAINS_SYM          {}
6920
	| CUBE_SYM		{}
unknown's avatar
unknown committed
6921 6922 6923 6924
	| DATA_SYM		{}
	| DATETIME		{}
	| DATE_SYM		{}
	| DAY_SYM		{}
unknown's avatar
unknown committed
6925
        | DEALLOCATE_SYM        {}
6926
	| DEFINER_SYM		{}
unknown's avatar
unknown committed
6927
	| DELAY_KEY_WRITE_SYM	{}
unknown's avatar
unknown committed
6928 6929
	| DES_KEY_FILE		{}
	| DIRECTORY_SYM		{}
unknown's avatar
unknown committed
6930
	| DISCARD		{}
unknown's avatar
unknown committed
6931
	| DO_SYM		{}
unknown's avatar
unknown committed
6932 6933
	| DUMPFILE		{}
	| DUPLICATE_SYM		{}
unknown's avatar
unknown committed
6934 6935 6936
	| DYNAMIC_SYM		{}
	| END			{}
	| ENUM			{}
unknown's avatar
unknown committed
6937
	| ENGINE_SYM		{}
unknown's avatar
unknown committed
6938
	| ENGINES_SYM		{}
6939
	| ERRORS		{}
unknown's avatar
unknown committed
6940
	| ESCAPE_SYM		{}
unknown's avatar
unknown committed
6941
	| EVENTS_SYM		{}
unknown's avatar
unknown committed
6942
	| EXECUTE_SYM		{}
6943
        | EXPANSION_SYM         {}
unknown's avatar
unknown committed
6944
	| EXTENDED_SYM		{}
6945
	| FAST_SYM		{}
6946
	| FOUND_SYM		{}
unknown's avatar
unknown committed
6947 6948
	| DISABLE_SYM		{}
	| ENABLE_SYM		{}
unknown's avatar
unknown committed
6949
	| FULL			{}
unknown's avatar
unknown committed
6950 6951 6952 6953
	| FILE_SYM		{}
	| FIRST_SYM		{}
	| FIXED_SYM		{}
	| FLUSH_SYM		{}
6954
	| FRAC_SECOND_SYM	{}
6955
	| GEOMETRY_SYM		{}
6956
	| GEOMETRYCOLLECTION	{}
6957
	| GET_FORMAT		{}
unknown's avatar
unknown committed
6958
	| GRANTS		{}
unknown's avatar
unknown committed
6959
	| GLOBAL_SYM		{}
6960
	| HANDLER_SYM		{}
unknown's avatar
unknown committed
6961
	| HASH_SYM		{}
6962
	| HELP_SYM		{}
unknown's avatar
unknown committed
6963 6964 6965
	| HOSTS_SYM		{}
	| HOUR_SYM		{}
	| IDENTIFIED_SYM	{}
6966
	| INVOKER_SYM		{}
unknown's avatar
unknown committed
6967
	| IMPORT		{}
unknown's avatar
unknown committed
6968
	| INDEXES		{}
unknown's avatar
unknown committed
6969
	| ISOLATION		{}
unknown's avatar
unknown committed
6970
	| ISSUER_SYM		{}
unknown's avatar
unknown committed
6971
	| INNOBASE_SYM		{}
6972
	| INSERT_METHOD		{}
unknown's avatar
unknown committed
6973
	| RELAY_THREAD		{}
6974 6975
	| LABEL_SYM             {}
	| LANGUAGE_SYM          {}
6976
	| LAST_SYM		{}
unknown's avatar
unknown committed
6977
	| LEAVES                {}
unknown's avatar
unknown committed
6978
	| LEVEL_SYM		{}
6979
	| LINESTRING		{}
unknown's avatar
unknown committed
6980
	| LOCAL_SYM		{}
unknown's avatar
unknown committed
6981
	| LOCKS_SYM		{}
unknown's avatar
unknown committed
6982 6983 6984 6985 6986 6987 6988 6989 6990
	| 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	{}
unknown's avatar
unknown committed
6991
	| MASTER_SERVER_ID_SYM  {}
unknown's avatar
unknown committed
6992
	| MASTER_CONNECT_RETRY_SYM	{}
unknown's avatar
unknown committed
6993 6994 6995 6996 6997 6998
	| MASTER_SSL_SYM	{}
	| MASTER_SSL_CA_SYM	{}
	| MASTER_SSL_CAPATH_SYM	{}
	| MASTER_SSL_CERT_SYM	{}
	| MASTER_SSL_CIPHER_SYM	{}
	| MASTER_SSL_KEY_SYM	{}
unknown's avatar
unknown committed
6999 7000 7001
	| MAX_CONNECTIONS_PER_HOUR	 {}
	| MAX_QUERIES_PER_HOUR	{}
	| MAX_UPDATES_PER_HOUR	{}
7002
	| MAX_USER_CONNECTIONS_SYM {}
7003
	| MEDIUM_SYM		{}
7004
	| MERGE_SYM		{}
unknown's avatar
unknown committed
7005
	| MICROSECOND_SYM	{}
unknown's avatar
unknown committed
7006 7007 7008
	| MINUTE_SYM		{}
	| MIN_ROWS		{}
	| MODIFY_SYM		{}
unknown's avatar
unknown committed
7009
	| MODE_SYM		{}
unknown's avatar
unknown committed
7010
	| MONTH_SYM		{}
7011 7012 7013
	| MULTILINESTRING	{}
	| MULTIPOINT		{}
	| MULTIPOLYGON		{}
unknown's avatar
unknown committed
7014
  | MUTEX_SYM   {}
7015
	| NAME_SYM              {}
unknown's avatar
unknown committed
7016
	| NAMES_SYM		{}
unknown's avatar
unknown committed
7017 7018
	| NATIONAL_SYM		{}
	| NCHAR_SYM		{}
unknown's avatar
unknown committed
7019
	| NDBCLUSTER_SYM	{}
7020
	| NEXT_SYM		{}
unknown's avatar
unknown committed
7021
	| NEW_SYM		{}
unknown's avatar
unknown committed
7022
	| NO_SYM		{}
7023
	| NONE_SYM		{}
unknown's avatar
unknown committed
7024
	| NVARCHAR_SYM		{}
unknown's avatar
unknown committed
7025
	| OFFSET_SYM		{}
unknown's avatar
unknown committed
7026
	| OLD_PASSWORD		{}
7027
	| ONE_SHOT_SYM		{}
7028
	| OPEN_SYM		{}
unknown's avatar
unknown committed
7029
	| PACK_KEYS_SYM		{}
7030
	| PARTIAL		{}
unknown's avatar
unknown committed
7031
	| PASSWORD		{}
7032
	| POINT_SYM		{}
7033
	| POLYGON		{}
unknown's avatar
unknown committed
7034
        | PREPARE_SYM           {}
7035
	| PREV_SYM		{}
7036
        | PRIVILEGES            {}
unknown's avatar
unknown committed
7037 7038
	| PROCESS		{}
	| PROCESSLIST_SYM	{}
7039
	| QUARTER_SYM		{}
unknown's avatar
unknown committed
7040
	| QUERY_SYM		{}
7041
	| QUICK			{}
unknown's avatar
unknown committed
7042
	| RAID_0_SYM		{}
unknown's avatar
unknown committed
7043 7044
	| RAID_CHUNKS		{}
	| RAID_CHUNKSIZE	{}
unknown's avatar
unknown committed
7045
	| RAID_STRIPED_SYM	{}
unknown's avatar
unknown committed
7046
	| RAID_TYPE		{}
7047
	| REDUNDANT_SYM		{}
unknown's avatar
unknown committed
7048 7049
	| RELAY_LOG_FILE_SYM	{}
	| RELAY_LOG_POS_SYM	{}
unknown's avatar
unknown committed
7050 7051
	| RELOAD		{}
	| REPAIR		{}
unknown's avatar
unknown committed
7052
	| REPEATABLE_SYM	{}
unknown's avatar
unknown committed
7053
	| REPLICATION		{}
unknown's avatar
unknown committed
7054
	| RESET_SYM		{}
7055
	| RESOURCES		{}
unknown's avatar
unknown committed
7056
	| RESTORE_SYM		{}
7057
	| RETURNS_SYM           {}
unknown's avatar
unknown committed
7058
	| ROLLBACK_SYM		{}
7059
	| ROLLUP_SYM		{}
7060
	| ROUTINE_SYM		{}
unknown's avatar
unknown committed
7061 7062 7063
	| ROWS_SYM		{}
	| ROW_FORMAT_SYM	{}
	| ROW_SYM		{}
unknown's avatar
unknown committed
7064
	| RTREE_SYM		{}
7065
	| SAVEPOINT_SYM		{}
unknown's avatar
unknown committed
7066
	| SECOND_SYM		{}
7067
	| SECURITY_SYM		{}
7068
	| SERIAL_SYM		{}
unknown's avatar
unknown committed
7069 7070
	| SERIALIZABLE_SYM	{}
	| SESSION_SYM		{}
unknown's avatar
unknown committed
7071
	| SIGNED_SYM		{}
7072
	| SIMPLE_SYM		{}
unknown's avatar
unknown committed
7073
	| SHARE_SYM		{}
unknown's avatar
unknown committed
7074
	| SHUTDOWN		{}
unknown's avatar
unknown committed
7075
	| SLAVE			{}
7076
	| SNAPSHOT_SYM		{}
unknown's avatar
unknown committed
7077
	| SOUNDS_SYM		{}
unknown's avatar
unknown committed
7078
	| SQL_CACHE_SYM		{}
unknown's avatar
unknown committed
7079
	| SQL_BUFFER_RESULT	{}
unknown's avatar
unknown committed
7080
	| SQL_NO_CACHE_SYM	{}
unknown's avatar
unknown committed
7081
	| SQL_THREAD		{}
unknown's avatar
unknown committed
7082 7083 7084
	| START_SYM		{}
	| STATUS_SYM		{}
	| STOP_SYM		{}
unknown's avatar
unknown committed
7085
	| STORAGE_SYM		{}
unknown's avatar
unknown committed
7086
	| STRING_SYM		{}
unknown's avatar
unknown committed
7087
	| SUBDATE_SYM		{}
unknown's avatar
unknown committed
7088
	| SUBJECT_SYM		{}
unknown's avatar
unknown committed
7089
	| SUPER_SYM		{}
7090
        | TABLES                {}
unknown's avatar
unknown committed
7091
	| TABLESPACE		{}
unknown's avatar
unknown committed
7092
	| TEMPORARY		{}
7093
	| TEMPTABLE_SYM		{}
unknown's avatar
unknown committed
7094
	| TEXT_SYM		{}
unknown's avatar
unknown committed
7095
	| TRANSACTION_SYM	{}
7096
	| TRUNCATE_SYM		{}
unknown's avatar
unknown committed
7097
	| TIMESTAMP		{}
7098 7099
	| TIMESTAMP_ADD		{}
	| TIMESTAMP_DIFF	{}
unknown's avatar
unknown committed
7100 7101
	| TIME_SYM		{}
	| TYPE_SYM		{}
unknown's avatar
unknown committed
7102
	| TYPES_SYM		{}
unknown's avatar
unknown committed
7103
        | UDF_RETURNS_SYM       {}
7104
	| FUNCTION_SYM		{}
unknown's avatar
unknown committed
7105
	| UNCOMMITTED_SYM	{}
7106
	| UNDEFINED_SYM		{}
unknown's avatar
unknown committed
7107
	| UNICODE_SYM		{}
7108
	| UNKNOWN_SYM		{}
7109
	| UNTIL_SYM		{}
7110
	| USER			{}
unknown's avatar
unknown committed
7111
	| USE_FRM		{}
unknown's avatar
unknown committed
7112
	| VARIABLES		{}
7113
	| VIEW_SYM		{}
7114
	| VALUE_SYM		{}
7115
	| WARNINGS		{}
7116
	| WEEK_SYM		{}
unknown's avatar
unknown committed
7117
	| WORK_SYM		{}
7118
	| X509_SYM		{}
unknown's avatar
unknown committed
7119 7120
	| YEAR_SYM		{}
	;
unknown's avatar
unknown committed
7121 7122 7123 7124 7125 7126

/* Option functions */

set:
	SET opt_option
	{
unknown's avatar
unknown committed
7127 7128
	  LEX *lex=Lex;
	  lex->sql_command= SQLCOM_SET_OPTION;
unknown's avatar
unknown committed
7129
	  mysql_init_select(lex);
7130
	  lex->option_type=OPT_SESSION;
unknown's avatar
unknown committed
7131
	  lex->var_list.empty();
7132
          lex->one_shot_set= 0;
unknown's avatar
unknown committed
7133
	}
7134 7135 7136
	option_value_list
	{}
	;
unknown's avatar
unknown committed
7137 7138 7139

opt_option:
	/* empty */ {}
unknown's avatar
unknown committed
7140
	| OPTION {};
unknown's avatar
unknown committed
7141 7142

option_value_list:
unknown's avatar
unknown committed
7143 7144 7145 7146 7147 7148 7149 7150
	option_type option_value
	| option_value_list ',' option_type option_value;

option_type:
	/* empty */	{}
	| GLOBAL_SYM	{ Lex->option_type= OPT_GLOBAL; }
	| LOCAL_SYM	{ Lex->option_type= OPT_SESSION; }
	| SESSION_SYM	{ Lex->option_type= OPT_SESSION; }
7151
	| ONE_SHOT_SYM	{ Lex->option_type= OPT_SESSION; Lex->one_shot_set= 1; }
unknown's avatar
unknown committed
7152 7153 7154 7155
	;

opt_var_type:
	/* empty */	{ $$=OPT_SESSION; }
unknown's avatar
unknown committed
7156
	| GLOBAL_SYM	{ $$=OPT_GLOBAL; }
unknown's avatar
unknown committed
7157 7158 7159 7160 7161 7162
	| LOCAL_SYM	{ $$=OPT_SESSION; }
	| SESSION_SYM	{ $$=OPT_SESSION; }
	;

opt_var_ident_type:
	/* empty */		{ $$=OPT_DEFAULT; }
unknown's avatar
unknown committed
7163
	| GLOBAL_SYM '.'	{ $$=OPT_GLOBAL; }
unknown's avatar
unknown committed
7164 7165 7166
	| LOCAL_SYM '.'		{ $$=OPT_SESSION; }
	| SESSION_SYM '.'	{ $$=OPT_SESSION; }
	;
unknown's avatar
unknown committed
7167 7168

option_value:
7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184
	  '@' ident_or_text equal expr
	  {
            LEX *lex= Lex;

            if (lex->sphead && lex->sphead->m_type != TYPE_ENUM_PROCEDURE)
            {
              /*
                We have to use special instruction in functions and triggers
                because sp_instr_stmt will close all tables and thus ruin
                execution of statement invoking function or trigger.

                We also do not want to allow expression with subselects in
                this case.
              */
              if (lex->query_tables)
              {
unknown's avatar
unknown committed
7185 7186
                my_message(ER_SP_SUBSELECT_NYI, ER(ER_SP_SUBSELECT_NYI),
                           MYF(0));
7187 7188 7189 7190 7191 7192 7193 7194 7195 7196
                YYABORT;
              }
              sp_instr_set_user_var *i= 
                new sp_instr_set_user_var(lex->sphead->instructions(),
                                          lex->spcont, $2, $4);
	      lex->sphead->add_instr(i);
            }
            else
              lex->var_list.push_back(new set_var_user(new Item_func_set_user_var($2,$4)));
	  }
unknown's avatar
unknown committed
7197
	| internal_variable_name equal set_expr_or_default
unknown's avatar
unknown committed
7198
	  {
unknown's avatar
unknown committed
7199
	    LEX *lex=Lex;
7200 7201 7202 7203 7204 7205 7206 7207

            if ($1.var == &trg_new_row_fake_var)
            {
              /* We are in trigger and assigning value to field of new row */
              Item *it;
              sp_instr_set_trigger_field *i;
              if (lex->query_tables)
              {
unknown's avatar
unknown committed
7208 7209
                my_message(ER_SP_SUBSELECT_NYI, ER(ER_SP_SUBSELECT_NYI),
                           MYF(0));
7210 7211 7212 7213 7214 7215 7216 7217 7218
                YYABORT;
              }
              if ($3)
                it= $3;
              else
              {
                /* QQ: Shouldn't this be field's default value ? */
                it= new Item_null();
              }
7219 7220 7221 7222
              
              if (!(i= new sp_instr_set_trigger_field(
                             lex->sphead->instructions(), lex->spcont,
                             $1.base_name, it)))
7223
                YYABORT;
7224 7225 7226 7227 7228 7229 7230 7231
              
              /*
                Let us add this item to list of all Item_trigger_field
                objects in trigger.
              */
              lex->trg_table_fields.link_in_list((byte *)&i->trigger_field,
                     (byte **)&i->trigger_field.next_trg_field);

7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261
              lex->sphead->add_instr(i);
            }
            else if ($1.var)
	    { /* System variable */
	      lex->var_list.push_back(new set_var(lex->option_type, $1.var,
						  &$1.base_name, $3));
	    }
            else
	    {
	      /* An SP local variable */
	      sp_pcontext *ctx= lex->spcont;
	      sp_pvar_t *spv;
              sp_instr_set *i;
	      Item *it;

	      spv= ctx->find_pvar(&$1.base_name);

	      if ($3)
	        it= $3;
	      else if (spv->dflt)
	        it= spv->dflt;
	      else
	        it= new Item_null();
              i= new sp_instr_set(lex->sphead->instructions(), ctx,
	                          spv->offset, it, spv->type);
	      i->tables= lex->query_tables;
	      lex->query_tables= 0;
	      lex->sphead->add_instr(i);
	      spv->isset= TRUE;
	    }
unknown's avatar
unknown committed
7262
	  }
unknown's avatar
unknown committed
7263
	| '@' '@' opt_var_ident_type internal_variable_name equal set_expr_or_default
unknown's avatar
unknown committed
7264 7265
	  {
	    LEX *lex=Lex;
unknown's avatar
unknown committed
7266 7267
	    lex->var_list.push_back(new set_var((enum_var_type) $3, $4.var,
						&$4.base_name, $6));
unknown's avatar
unknown committed
7268 7269 7270 7271
	  }
	| TRANSACTION_SYM ISOLATION LEVEL_SYM isolation_types
	  {
	    LEX *lex=Lex;
unknown's avatar
unknown committed
7272 7273 7274
	    LEX_STRING tmp;
	    tmp.str=0;
	    tmp.length=0;
unknown's avatar
unknown committed
7275
	    lex->var_list.push_back(new set_var(lex->option_type,
unknown's avatar
unknown committed
7276
						find_sys_var("tx_isolation"),
unknown's avatar
unknown committed
7277
						&tmp,
unknown's avatar
unknown committed
7278
						new Item_int((int32) $4)));
unknown's avatar
unknown committed
7279
	  }
7280
	| charset old_or_new_charset_name_or_default
unknown's avatar
unknown committed
7281
	{
unknown's avatar
unknown committed
7282
	  THD *thd= YYTHD;
unknown's avatar
unknown committed
7283
	  LEX *lex= Lex;
7284
	  $2= $2 ? $2: global_system_variables.character_set_client;
7285
	  lex->var_list.push_back(new set_var_collation_client($2,thd->variables.collation_database,$2));
unknown's avatar
unknown committed
7286
	}
7287
	| NAMES_SYM charset_name_or_default opt_collate
7288
	{
unknown's avatar
unknown committed
7289
	  THD *thd= YYTHD;
unknown's avatar
unknown committed
7290
	  LEX *lex= Lex;
7291
	  $2= $2 ? $2 : global_system_variables.character_set_client;
7292 7293
	  $3= $3 ? $3 : $2;
	  if (!my_charset_same($2,$3))
7294
	  {
7295 7296
	    my_error(ER_COLLATION_CHARSET_MISMATCH, MYF(0),
                     $3->name, $2->csname);
unknown's avatar
unknown committed
7297
	    YYABORT;
7298
	  }
7299
	  lex->var_list.push_back(new set_var_collation_client($3,$3,$3));
7300
	}
unknown's avatar
unknown committed
7301
	| PASSWORD equal text_or_password
unknown's avatar
unknown committed
7302
	  {
7303
	    THD *thd=YYTHD;
unknown's avatar
unknown committed
7304
	    LEX_USER *user;
unknown's avatar
unknown committed
7305
	    if (!(user=(LEX_USER*) thd->alloc(sizeof(LEX_USER))))
unknown's avatar
unknown committed
7306 7307 7308
	      YYABORT;
	    user->host.str=0;
	    user->user.str=thd->priv_user;
7309
	    thd->lex->var_list.push_back(new set_var_password(user, $3));
unknown's avatar
unknown committed
7310 7311
	  }
	| PASSWORD FOR_SYM user equal text_or_password
unknown's avatar
unknown committed
7312
	  {
unknown's avatar
unknown committed
7313 7314
	    Lex->var_list.push_back(new set_var_password($3,$5));
	  }
7315
	;
unknown's avatar
unknown committed
7316

unknown's avatar
unknown committed
7317 7318 7319
internal_variable_name:
	ident
	{
7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337
	  LEX *lex= Lex;
          sp_pcontext *spc= lex->spcont;
	  sp_pvar_t *spv;

	  /* We have to lookup here since local vars can shadow sysvars */
	  if (!spc || !(spv = spc->find_pvar(&$1)))
	  {
            /* Not an SP local variable */
	    sys_var *tmp=find_sys_var($1.str, $1.length);
	    if (!tmp)
	      YYABORT;
	    $$.var= tmp;
	    $$.base_name.str=0;
	    $$.base_name.length=0;
            /*
              If this is time_zone variable we should open time zone
              describing tables 
            */
7338 7339 7340
            if (tmp == &sys_time_zone &&
                lex->add_time_zone_tables_to_query_tables(YYTHD))
              YYABORT;
7341 7342 7343 7344 7345 7346 7347
	  }
	  else
	  {
            /* An SP local variable */
	    $$.var= NULL;
	    $$.base_name= $1;
	  }
unknown's avatar
unknown committed
7348
	}
7349 7350
	| ident '.' ident
	  {
7351
            LEX *lex= Lex;
7352 7353
            if (check_reserved_words(&$1))
            {
7354
	      yyerror(ER(ER_SYNTAX_ERROR));
7355 7356
              YYABORT;
            }
7357 7358 7359 7360 7361 7362
            if (lex->sphead && lex->sphead->m_type == TYPE_ENUM_TRIGGER &&
                (!my_strcasecmp(system_charset_info, $1.str, "NEW") || 
                 !my_strcasecmp(system_charset_info, $1.str, "OLD")))
            {
              if ($1.str[0]=='O' || $1.str[0]=='o')
              {
unknown's avatar
unknown committed
7363
                my_error(ER_TRG_CANT_CHANGE_ROW, MYF(0), "OLD", "");
7364 7365 7366 7367
                YYABORT;
              }
              if (lex->trg_chistics.event == TRG_EVENT_DELETE)
              {
unknown's avatar
unknown committed
7368 7369
                my_error(ER_TRG_NO_SUCH_ROW_IN_TRG, MYF(0),
                         "NEW", "on DELETE");
7370 7371 7372 7373
                YYABORT;
              }
              if (lex->trg_chistics.action_time == TRG_ACTION_AFTER)
              {
unknown's avatar
unknown committed
7374
                my_error(ER_TRG_CANT_CHANGE_ROW, MYF(0), "NEW", "after ");
7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386
                YYABORT;
              }
              /* This special combination will denote field of NEW row */
              $$.var= &trg_new_row_fake_var;
              $$.base_name= $3;
            }
            else
            {
              sys_var *tmp=find_sys_var($3.str, $3.length);
              if (!tmp)
                YYABORT;
              if (!tmp->is_struct())
7387
                my_error(ER_VARIABLE_IS_NOT_STRUCT, MYF(0), $3.str);
7388 7389 7390
              $$.var= tmp;
              $$.base_name= $1;
            }
7391 7392 7393 7394 7395 7396 7397
	  }
	| DEFAULT '.' ident
	  {
	    sys_var *tmp=find_sys_var($3.str, $3.length);
	    if (!tmp)
	      YYABORT;
	    if (!tmp->is_struct())
7398
	      my_error(ER_VARIABLE_IS_NOT_STRUCT, MYF(0), $3.str);
unknown's avatar
unknown committed
7399 7400 7401
	    $$.var= tmp;
	    $$.base_name.str=    (char*) "default";
	    $$.base_name.length= 7;
7402
	  }
7403
        ;
unknown's avatar
unknown committed
7404 7405 7406 7407 7408 7409 7410

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

unknown's avatar
unknown committed
7412 7413 7414 7415
text_or_password:
	TEXT_STRING { $$=$1.str;}
	| PASSWORD '(' TEXT_STRING ')'
	  {
7416
	    $$= $3.length ? YYTHD->variables.old_passwords ?
unknown's avatar
unknown committed
7417 7418 7419 7420 7421 7422 7423 7424
	        Item_func_old_password::alloc(YYTHD, $3.str) :
	        Item_func_password::alloc(YYTHD, $3.str) :
	      $3.str;
	  }
	| OLD_PASSWORD '(' TEXT_STRING ')'
	  {
	    $$= $3.length ? Item_func_old_password::alloc(YYTHD, $3.str) :
	      $3.str;
7425 7426
	  }
          ;
unknown's avatar
unknown committed
7427

unknown's avatar
unknown committed
7428

unknown's avatar
unknown committed
7429
set_expr_or_default:
unknown's avatar
unknown committed
7430 7431
	expr      { $$=$1; }
	| DEFAULT { $$=0; }
7432 7433
	| ON	  { $$=new Item_string("ON",  2, system_charset_info); }
	| ALL	  { $$=new Item_string("ALL", 3, system_charset_info); }
unknown's avatar
unknown committed
7434
	| BINARY  { $$=new Item_string("binary", 6, system_charset_info); }
unknown's avatar
unknown committed
7435
	;
unknown's avatar
unknown committed
7436 7437


unknown's avatar
unknown committed
7438 7439 7440 7441 7442
/* Lock function */

lock:
	LOCK_SYM table_or_tables
	{
7443 7444 7445 7446 7447 7448 7449 7450
	  LEX *lex= Lex;

	  if (lex->sphead)
	  {
	    my_message(ER_SP_BADSTATEMENT, ER(ER_SP_BADSTATEMENT), MYF(0));
	    YYABORT;
	  }
	  lex->sql_command= SQLCOM_LOCK_TABLES;
unknown's avatar
unknown committed
7451
	}
7452 7453
	table_lock_list
	{}
7454
	;
unknown's avatar
unknown committed
7455 7456 7457

table_or_tables:
	TABLE_SYM
unknown's avatar
unknown committed
7458
	| TABLES;
unknown's avatar
unknown committed
7459 7460 7461

table_lock_list:
	table_lock
unknown's avatar
unknown committed
7462
	| table_lock_list ',' table_lock;
unknown's avatar
unknown committed
7463 7464 7465

table_lock:
	table_ident opt_table_alias lock_option
7466
	{
unknown's avatar
unknown committed
7467
	  if (!Select->add_table_to_list(YYTHD, $1, $2, 0, (thr_lock_type) $3))
7468 7469
	   YYABORT;
	}
7470
        ;
unknown's avatar
unknown committed
7471 7472 7473

lock_option:
	READ_SYM	{ $$=TL_READ_NO_INSERT; }
7474
	| WRITE_SYM     { $$=YYTHD->update_lock_default; }
unknown's avatar
unknown committed
7475
	| LOW_PRIORITY WRITE_SYM { $$=TL_WRITE_LOW_PRIORITY; }
7476 7477
	| READ_SYM LOCAL_SYM { $$= TL_READ; }
        ;
unknown's avatar
unknown committed
7478 7479

unlock:
7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492
	UNLOCK_SYM
	{
	  LEX *lex= Lex;

	  if (lex->sphead)
	  {
	    my_message(ER_SP_BADSTATEMENT, ER(ER_SP_BADSTATEMENT), MYF(0));
	    YYABORT;
	  }
	  lex->sql_command= SQLCOM_UNLOCK_TABLES;
	}
	table_or_tables
	{}
7493
        ;
unknown's avatar
unknown committed
7494 7495


7496
/*
unknown's avatar
unknown committed
7497
** Handler: direct access to ISAM functions
7498 7499 7500 7501 7502
*/

handler:
	HANDLER_SYM table_ident OPEN_SYM opt_table_alias
	{
7503 7504
	  LEX *lex= Lex;
	  lex->sql_command = SQLCOM_HA_OPEN;
unknown's avatar
unknown committed
7505
	  if (!lex->current_select->add_table_to_list(lex->thd, $2, $4, 0))
7506 7507
	    YYABORT;
	}
unknown's avatar
unknown committed
7508
	| HANDLER_SYM table_ident_nodb CLOSE_SYM
7509
	{
7510 7511
	  LEX *lex= Lex;
	  lex->sql_command = SQLCOM_HA_CLOSE;
unknown's avatar
unknown committed
7512
	  if (!lex->current_select->add_table_to_list(lex->thd, $2, 0, 0))
7513 7514
	    YYABORT;
	}
unknown's avatar
unknown committed
7515
	| HANDLER_SYM table_ident_nodb READ_SYM
7516
	{
unknown's avatar
unknown committed
7517 7518 7519
	  LEX *lex=Lex;
	  lex->sql_command = SQLCOM_HA_READ;
	  lex->ha_rkey_mode= HA_READ_KEY_EXACT;	/* Avoid purify warnings */
7520 7521
	  lex->current_select->select_limit= 1;
	  lex->current_select->offset_limit= 0L;
unknown's avatar
unknown committed
7522
	  if (!lex->current_select->add_table_to_list(lex->thd, $2, 0, 0))
7523
	    YYABORT;
unknown's avatar
unknown committed
7524
        }
7525
        handler_read_or_scan where_clause opt_limit_clause {}
7526
        ;
7527

unknown's avatar
unknown committed
7528 7529
handler_read_or_scan:
	handler_scan_function         { Lex->backup_dir= 0; }
7530 7531
        | ident handler_rkey_function { Lex->backup_dir= $1.str; }
        ;
unknown's avatar
unknown committed
7532 7533 7534

handler_scan_function:
	FIRST_SYM  { Lex->ha_read_mode = RFIRST; }
7535 7536
	| NEXT_SYM { Lex->ha_read_mode = RNEXT;  }
        ;
unknown's avatar
unknown committed
7537 7538 7539 7540 7541 7542

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;  }
7543 7544
	| handler_rkey_mode
	{
unknown's avatar
unknown committed
7545 7546
	  LEX *lex=Lex;
	  lex->ha_read_mode = RKEY;
unknown's avatar
unknown committed
7547
	  lex->ha_rkey_mode=$1;
unknown's avatar
unknown committed
7548
	  if (!(lex->insert_list = new List_item))
7549
	    YYABORT;
7550 7551
	} '(' values ')' { }
        ;
7552 7553

handler_rkey_mode:
unknown's avatar
unknown committed
7554 7555 7556 7557
	  EQ     { $$=HA_READ_KEY_EXACT;   }
	| GE     { $$=HA_READ_KEY_OR_NEXT; }
	| LE     { $$=HA_READ_KEY_OR_PREV; }
	| GT_SYM { $$=HA_READ_AFTER_KEY;   }
7558 7559
	| LT     { $$=HA_READ_BEFORE_KEY;  }
        ;
7560

unknown's avatar
unknown committed
7561 7562 7563
/* GRANT / REVOKE */

revoke:
7564
	REVOKE clear_privileges revoke_command
7565 7566 7567 7568
	{}
        ;

revoke_command:
7569 7570 7571 7572
	grant_privileges ON opt_table FROM grant_list
	{
	  Lex->sql_command = SQLCOM_REVOKE;
        }
7573
	|
7574
	ALL opt_privileges ',' GRANT OPTION FROM grant_list
7575 7576 7577
	{
	  Lex->sql_command = SQLCOM_REVOKE_ALL;
	}
7578
	;
unknown's avatar
unknown committed
7579 7580

grant:
7581
	GRANT clear_privileges grant_privileges ON opt_table TO_SYM grant_list
7582
	require_clause grant_options
7583
	{ Lex->sql_command= SQLCOM_GRANT; }
7584
	;
unknown's avatar
unknown committed
7585 7586

grant_privileges:
7587 7588 7589 7590 7591 7592
	object_privilege_list { }
	| ALL opt_privileges
        { 
          Lex->all_privileges= 1; 
          Lex->grant= GLOBAL_ACLS;
        }
7593
        ;
unknown's avatar
unknown committed
7594

unknown's avatar
unknown committed
7595 7596 7597 7598 7599
opt_privileges:
	/* empty */
	| PRIVILEGES
	;

7600 7601 7602
object_privilege_list:
	object_privilege
	| object_privilege_list ',' object_privilege;
unknown's avatar
unknown committed
7603

7604
object_privilege:
unknown's avatar
unknown committed
7605
	SELECT_SYM	{ Lex->which_columns = SELECT_ACL;} opt_column_list {}
7606 7607 7608
	| INSERT	{ Lex->which_columns = INSERT_ACL;} opt_column_list {}
	| UPDATE_SYM	{ Lex->which_columns = UPDATE_ACL; } opt_column_list {}
	| REFERENCES	{ Lex->which_columns = REFERENCES_ACL;} opt_column_list {}
unknown's avatar
unknown committed
7609 7610
	| DELETE_SYM	{ Lex->grant |= DELETE_ACL;}
	| USAGE		{}
unknown's avatar
unknown committed
7611
	| INDEX_SYM	{ Lex->grant |= INDEX_ACL;}
unknown's avatar
unknown committed
7612 7613 7614
	| ALTER		{ Lex->grant |= ALTER_ACL;}
	| CREATE	{ Lex->grant |= CREATE_ACL;}
	| DROP		{ Lex->grant |= DROP_ACL;}
unknown's avatar
unknown committed
7615
	| EXECUTE_SYM	{ Lex->grant |= EXECUTE_ACL;}
unknown's avatar
unknown committed
7616 7617 7618 7619
	| RELOAD	{ Lex->grant |= RELOAD_ACL;}
	| SHUTDOWN	{ Lex->grant |= SHUTDOWN_ACL;}
	| PROCESS	{ Lex->grant |= PROCESS_ACL;}
	| FILE_SYM	{ Lex->grant |= FILE_ACL;}
unknown's avatar
unknown committed
7620 7621 7622 7623 7624
	| GRANT OPTION  { Lex->grant |= GRANT_ACL;}
	| SHOW DATABASES { Lex->grant |= SHOW_DB_ACL;}
	| SUPER_SYM	{ Lex->grant |= SUPER_ACL;}
	| CREATE TEMPORARY TABLES { Lex->grant |= CREATE_TMP_ACL;}
	| LOCK_SYM TABLES   { Lex->grant |= LOCK_TABLES_ACL; }
7625 7626 7627 7628
	| REPLICATION SLAVE  { Lex->grant |= REPL_SLAVE_ACL; }
	| REPLICATION CLIENT_SYM { Lex->grant |= REPL_CLIENT_ACL; }
	| CREATE VIEW_SYM { Lex->grant |= CREATE_VIEW_ACL; }
	| SHOW VIEW_SYM { Lex->grant |= SHOW_VIEW_ACL; }
7629 7630
	| CREATE ROUTINE_SYM { Lex->grant |= CREATE_PROC_ACL; }
	| ALTER ROUTINE_SYM { Lex->grant |= ALTER_PROC_ACL; }
unknown's avatar
unknown committed
7631
	;
unknown's avatar
unknown committed
7632

unknown's avatar
unknown committed
7633

7634 7635
opt_and:
	/* empty */	{}
unknown's avatar
unknown committed
7636
	| AND_SYM	{}
7637 7638 7639 7640 7641 7642 7643 7644 7645
	;

require_list:
	 require_list_element opt_and require_list
	 | require_list_element
	 ;

require_list_element:
	SUBJECT_SYM TEXT_STRING
unknown's avatar
unknown committed
7646 7647 7648 7649
	{
	  LEX *lex=Lex;
	  if (lex->x509_subject)
	  {
unknown's avatar
unknown committed
7650
	    my_error(ER_DUP_ARGUMENT, MYF(0), "SUBJECT");
unknown's avatar
unknown committed
7651 7652 7653 7654 7655 7656 7657 7658 7659
	    YYABORT;
	  }
	  lex->x509_subject=$2.str;
	}
	| ISSUER_SYM TEXT_STRING
	{
	  LEX *lex=Lex;
	  if (lex->x509_issuer)
	  {
unknown's avatar
unknown committed
7660
	    my_error(ER_DUP_ARGUMENT, MYF(0), "ISSUER");
unknown's avatar
unknown committed
7661 7662 7663 7664 7665 7666 7667 7668 7669
	    YYABORT;
	  }
	  lex->x509_issuer=$2.str;
	}
	| CIPHER_SYM TEXT_STRING
	{
	  LEX *lex=Lex;
	  if (lex->ssl_cipher)
	  {
unknown's avatar
unknown committed
7670
	    my_error(ER_DUP_ARGUMENT, MYF(0), "CIPHER");
unknown's avatar
unknown committed
7671 7672 7673 7674 7675
	    YYABORT;
	  }
	  lex->ssl_cipher=$2.str;
	}
	;
7676

unknown's avatar
unknown committed
7677 7678 7679
opt_table:
	'*'
	  {
7680
	    LEX *lex= Lex;
unknown's avatar
unknown committed
7681
	    lex->current_select->db= lex->thd->db;
unknown's avatar
unknown committed
7682
	    if (lex->grant == GLOBAL_ACLS)
unknown's avatar
unknown committed
7683 7684
	      lex->grant = DB_ACLS & ~GRANT_ACL;
	    else if (lex->columns.elements)
unknown's avatar
unknown committed
7685
	    {
unknown's avatar
unknown committed
7686 7687
	      my_message(ER_ILLEGAL_GRANT_FOR_TABLE,
                         ER(ER_ILLEGAL_GRANT_FOR_TABLE), MYF(0));
7688
	      YYABORT;
unknown's avatar
unknown committed
7689
	    }
unknown's avatar
unknown committed
7690 7691 7692
	  }
	| ident '.' '*'
	  {
7693
	    LEX *lex= Lex;
unknown's avatar
unknown committed
7694
	    lex->current_select->db = $1.str;
unknown's avatar
unknown committed
7695
	    if (lex->grant == GLOBAL_ACLS)
unknown's avatar
unknown committed
7696 7697
	      lex->grant = DB_ACLS & ~GRANT_ACL;
	    else if (lex->columns.elements)
unknown's avatar
unknown committed
7698
	    {
unknown's avatar
unknown committed
7699 7700
	      my_message(ER_ILLEGAL_GRANT_FOR_TABLE,
                         ER(ER_ILLEGAL_GRANT_FOR_TABLE), MYF(0));
unknown's avatar
unknown committed
7701 7702 7703 7704 7705
	      YYABORT;
	    }
	  }
	| '*' '.' '*'
	  {
7706
	    LEX *lex= Lex;
unknown's avatar
unknown committed
7707
	    lex->current_select->db = NULL;
unknown's avatar
unknown committed
7708 7709
	    if (lex->grant == GLOBAL_ACLS)
	      lex->grant= GLOBAL_ACLS & ~GRANT_ACL;
unknown's avatar
unknown committed
7710
	    else if (lex->columns.elements)
unknown's avatar
unknown committed
7711
	    {
unknown's avatar
unknown committed
7712 7713
	      my_message(ER_ILLEGAL_GRANT_FOR_TABLE,
                         ER(ER_ILLEGAL_GRANT_FOR_TABLE), MYF(0));
unknown's avatar
unknown committed
7714 7715 7716 7717 7718
	      YYABORT;
	    }
	  }
	| table_ident
	  {
unknown's avatar
unknown committed
7719
	    LEX *lex=Lex;
unknown's avatar
unknown committed
7720
	    if (!lex->current_select->add_table_to_list(lex->thd, $1,NULL,0))
unknown's avatar
unknown committed
7721
	      YYABORT;
unknown's avatar
unknown committed
7722
	    if (lex->grant == GLOBAL_ACLS)
unknown's avatar
unknown committed
7723
	      lex->grant =  TABLE_ACLS & ~GRANT_ACL;
7724 7725
	  }
          ;
unknown's avatar
unknown committed
7726 7727 7728


user_list:
7729 7730 7731 7732 7733 7734 7735 7736 7737 7738
	user  { if (Lex->users_list.push_back($1)) YYABORT;}
	| user_list ',' user
	  {
	    if (Lex->users_list.push_back($3))
	      YYABORT;
	  }
	;


grant_list:
7739
	grant_user  { if (Lex->users_list.push_back($1)) YYABORT;}
7740
	| grant_list ',' grant_user
7741 7742 7743 7744 7745
	  {
	    if (Lex->users_list.push_back($3))
	      YYABORT;
	  }
	;
unknown's avatar
unknown committed
7746 7747 7748 7749 7750 7751 7752 7753


grant_user:
	user IDENTIFIED_SYM BY TEXT_STRING
	{
	   $$=$1; $1->password=$4;
	   if ($4.length)
	   {
7754
             if (YYTHD->variables.old_passwords)
7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771
             {
               char *buff= 
                 (char *) YYTHD->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH_323+1);
               if (buff)
                 make_scrambled_password_323(buff, $4.str);
               $1->password.str= buff;
               $1->password.length= SCRAMBLED_PASSWORD_CHAR_LENGTH_323;
             }
             else
             {
               char *buff= 
                 (char *) YYTHD->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH+1);
               if (buff)
                 make_scrambled_password(buff, $4.str);
               $1->password.str= buff;
               $1->password.length= SCRAMBLED_PASSWORD_CHAR_LENGTH;
             }
unknown's avatar
unknown committed
7772 7773 7774 7775 7776
	  }
	}
	| user IDENTIFIED_SYM BY PASSWORD TEXT_STRING
	  { $$=$1; $1->password=$5 ; }
	| user
7777 7778
	  { $$=$1; $1->password.str=NullS; }
        ;
unknown's avatar
unknown committed
7779 7780 7781


opt_column_list:
unknown's avatar
unknown committed
7782 7783 7784 7785 7786
	/* empty */
	{
	  LEX *lex=Lex;
	  lex->grant |= lex->which_columns;
	}
unknown's avatar
unknown committed
7787
	| '(' column_list ')';
unknown's avatar
unknown committed
7788 7789 7790

column_list:
	column_list ',' column_list_id
unknown's avatar
unknown committed
7791
	| column_list_id;
unknown's avatar
unknown committed
7792 7793 7794 7795

column_list_id:
	ident
	{
unknown's avatar
unknown committed
7796
	  String *new_str = new (YYTHD->mem_root) String((const char*) $1.str,$1.length,system_charset_info);
unknown's avatar
unknown committed
7797 7798
	  List_iterator <LEX_COLUMN> iter(Lex->columns);
	  class LEX_COLUMN *point;
unknown's avatar
unknown committed
7799
	  LEX *lex=Lex;
unknown's avatar
unknown committed
7800 7801
	  while ((point=iter++))
	  {
7802 7803
	    if (!my_strcasecmp(system_charset_info,
                               point->column.ptr(), new_str->ptr()))
unknown's avatar
unknown committed
7804 7805
		break;
	  }
unknown's avatar
unknown committed
7806
	  lex->grant_tot_col|= lex->which_columns;
unknown's avatar
unknown committed
7807
	  if (point)
unknown's avatar
unknown committed
7808
	    point->rights |= lex->which_columns;
unknown's avatar
unknown committed
7809
	  else
unknown's avatar
unknown committed
7810
	    lex->columns.push_back(new LEX_COLUMN (*new_str,lex->which_columns));
7811 7812
	}
        ;
unknown's avatar
unknown committed
7813

unknown's avatar
unknown committed
7814 7815

require_clause: /* empty */
7816
        | REQUIRE_SYM require_list
7817 7818 7819
          {
            Lex->ssl_type=SSL_TYPE_SPECIFIED;
          }
7820
        | REQUIRE_SYM SSL_SYM
7821 7822 7823
          {
            Lex->ssl_type=SSL_TYPE_ANY;
          }
7824
        | REQUIRE_SYM X509_SYM
7825 7826 7827 7828 7829 7830 7831
          {
            Lex->ssl_type=SSL_TYPE_X509;
          }
	| REQUIRE_SYM NONE_SYM
	  {
	    Lex->ssl_type=SSL_TYPE_NONE;
	  }
7832
          ;
unknown's avatar
unknown committed
7833

unknown's avatar
unknown committed
7834
grant_options:
unknown's avatar
unknown committed
7835
	/* empty */ {}
unknown's avatar
unknown committed
7836
	| WITH grant_option_list;
unknown's avatar
unknown committed
7837

unknown's avatar
unknown committed
7838 7839
grant_option_list:
	grant_option_list grant_option {}
7840 7841
	| grant_option {}
        ;
unknown's avatar
unknown committed
7842 7843 7844

grant_option:
	GRANT OPTION { Lex->grant |= GRANT_ACL;}
7845
        | MAX_QUERIES_PER_HOUR ULONG_NUM
unknown's avatar
unknown committed
7846
        {
7847
	  Lex->mqh.questions=$2;
7848
	  Lex->mqh.specified_limits|= USER_RESOURCES::QUERIES_PER_HOUR;
7849
	}
7850
        | MAX_UPDATES_PER_HOUR ULONG_NUM
7851
        {
7852
	  Lex->mqh.updates=$2;
7853
	  Lex->mqh.specified_limits|= USER_RESOURCES::UPDATES_PER_HOUR;
7854
	}
7855
        | MAX_CONNECTIONS_PER_HOUR ULONG_NUM
7856
        {
7857 7858
	  Lex->mqh.conn_per_hour= $2;
	  Lex->mqh.specified_limits|= USER_RESOURCES::CONNECTIONS_PER_HOUR;
7859
	}
7860 7861 7862 7863 7864
        | MAX_USER_CONNECTIONS_SYM ULONG_NUM
        {
          Lex->mqh.user_conn= $2;
          Lex->mqh.specified_limits|= USER_RESOURCES::USER_CONNECTIONS;
        }
7865
        ;
7866

unknown's avatar
unknown committed
7867
begin:
7868
	BEGIN_SYM   { Lex->sql_command = SQLCOM_BEGIN; Lex->start_transaction_opt= 0;} opt_work {}
7869
	;
unknown's avatar
unknown committed
7870 7871 7872

opt_work:
	/* empty */ {}
7873 7874
	| WORK_SYM {;}
        ;
unknown's avatar
unknown committed
7875

unknown's avatar
unknown committed
7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896
opt_chain:
	/* empty */ { $$= (Lex->thd->variables.completion_type == 1); }
	| AND_SYM NO_SYM CHAIN_SYM	{ $$=0; }
	| AND_SYM CHAIN_SYM		{ $$=1; }
	;

opt_release:
	/* empty */ { $$= (Lex->thd->variables.completion_type == 2); }
	| RELEASE_SYM 			{ $$=1; }
	| NO_SYM RELEASE_SYM 		{ $$=0; }
	;
	
opt_work_and_chain:
	opt_work opt_chain 		{ $$=$2; }
	;

opt_savepoint:
	/* empty */	{}
	| SAVEPOINT_SYM {}
	;

unknown's avatar
unknown committed
7897
commit:
unknown's avatar
unknown committed
7898 7899 7900 7901 7902 7903 7904
	COMMIT_SYM opt_work_and_chain opt_release
	{
	  Lex->sql_command= SQLCOM_COMMIT;
	  Lex->tx_chain= $2; 
	  Lex->tx_release= $3;
	}
	;
unknown's avatar
unknown committed
7905 7906

rollback:
unknown's avatar
unknown committed
7907 7908 7909 7910 7911
	ROLLBACK_SYM opt_work_and_chain opt_release
	{ 
	  Lex->sql_command= SQLCOM_ROLLBACK;
	  Lex->tx_chain= $2; 
	  Lex->tx_release= $3;
7912
	}
unknown's avatar
unknown committed
7913 7914
	| ROLLBACK_SYM opt_work
	  TO_SYM opt_savepoint ident
7915
	{
unknown's avatar
unknown committed
7916
	  Lex->sql_command = SQLCOM_ROLLBACK_TO_SAVEPOINT;
unknown's avatar
unknown committed
7917 7918 7919 7920
	  Lex->savepoint_name = $5.str;
	}
	;

7921 7922 7923 7924 7925
savepoint:
	SAVEPOINT_SYM ident
	{
	  Lex->sql_command = SQLCOM_SAVEPOINT;
	  Lex->savepoint_name = $2.str;
unknown's avatar
unknown committed
7926 7927 7928 7929 7930 7931 7932 7933 7934 7935
	}
	;

release:
	RELEASE_SYM SAVEPOINT_SYM ident
	{
	  Lex->sql_command = SQLCOM_RELEASE_SAVEPOINT;
	  Lex->savepoint_name = $3.str;
	}
	;
7936 7937

/*
unknown's avatar
unknown committed
7938
   UNIONS : glue selects together
7939 7940 7941
*/


7942
union_clause:
7943
	/* empty */ {}
unknown's avatar
unknown committed
7944 7945
	| union_list
	;
7946 7947

union_list:
7948
	UNION_SYM union_option
7949 7950 7951 7952 7953
	{
	  LEX *lex=Lex;
	  if (lex->exchange)
	  {
	    /* Only the last SELECT can have  INTO...... */
unknown's avatar
unknown committed
7954
	    my_error(ER_WRONG_USAGE, MYF(0), "UNION", "INTO");
7955
	    YYABORT;
7956
	  }
7957
	  if (lex->current_select->linkage == GLOBAL_OPTIONS_TYPE)
7958
	  {
7959
            yyerror(ER(ER_SYNTAX_ERROR));
7960 7961
	    YYABORT;
	  }
7962
	  if (mysql_new_select(lex, 0))
7963
	    YYABORT;
unknown's avatar
unknown committed
7964
          mysql_init_select(lex);
7965
	  lex->current_select->linkage=UNION_TYPE;
7966 7967 7968
          if ($2) /* UNION DISTINCT - remember position */
            lex->current_select->master_unit()->union_distinct=
                                                      lex->current_select;
unknown's avatar
unknown committed
7969
	}
7970
	select_init {}
7971
	;
7972 7973

union_opt:
unknown's avatar
unknown committed
7974
	union_list {}
unknown's avatar
unknown committed
7975 7976
	| optional_order_or_limit {}
	;
7977 7978

optional_order_or_limit:
7979
	/* Empty */ {}
7980 7981
	|
	  {
unknown's avatar
unknown committed
7982
	    THD *thd= YYTHD;
7983
	    LEX *lex= thd->lex;
unknown's avatar
unknown committed
7984
	    DBUG_ASSERT(lex->current_select->linkage != GLOBAL_OPTIONS_TYPE);
unknown's avatar
unknown committed
7985
	    SELECT_LEX *sel= lex->current_select;
unknown's avatar
unknown committed
7986
	    SELECT_LEX_UNIT *unit= sel->master_unit();
unknown's avatar
unknown committed
7987
	    SELECT_LEX *fake= unit->fake_select_lex;
unknown's avatar
unknown committed
7988 7989 7990 7991 7992 7993
	    if (fake)
	    {
	      unit->global_parameters= fake;
	      fake->no_table_names_allowed= 1;
	      lex->current_select= fake;
	    }
unknown's avatar
unknown committed
7994
	    thd->where= "global ORDER clause";
7995
	  }
7996
	order_or_limit
unknown's avatar
unknown committed
7997 7998
          {
	    THD *thd= YYTHD;
7999
	    thd->lex->current_select->no_table_names_allowed= 0;
unknown's avatar
unknown committed
8000 8001
	    thd->where= "";
          }
8002 8003 8004
	;

order_or_limit:
8005 8006
	order_clause opt_limit_clause_init
	| limit_clause
8007
	;
unknown's avatar
unknown committed
8008 8009

union_option:
8010 8011 8012 8013
	/* empty */ { $$=1; }
	| DISTINCT  { $$=1; }
	| ALL       { $$=0; }
        ;
8014

unknown's avatar
unknown committed
8015 8016
singlerow_subselect:
	subselect_start singlerow_subselect_init
unknown's avatar
unknown committed
8017 8018 8019 8020
	subselect_end
	{
	  $$= $2;
	};
8021

unknown's avatar
unknown committed
8022
singlerow_subselect_init:
8023
	select_init2
unknown's avatar
unknown committed
8024
	{
8025 8026
	  $$= new Item_singlerow_subselect(Lex->current_select->
					   master_unit()->first_select());
unknown's avatar
unknown committed
8027
	};
unknown's avatar
unknown committed
8028 8029

exists_subselect:
unknown's avatar
unknown committed
8030 8031 8032 8033 8034
	subselect_start exists_subselect_init
	subselect_end
	{
	  $$= $2;
	};
unknown's avatar
unknown committed
8035 8036

exists_subselect_init:
8037
	select_init2
unknown's avatar
unknown committed
8038
	{
8039 8040
	  $$= new Item_exists_subselect(Lex->current_select->master_unit()->
					first_select());
unknown's avatar
unknown committed
8041
	};
8042

unknown's avatar
unknown committed
8043 8044 8045 8046 8047 8048 8049 8050
in_subselect:
  subselect_start in_subselect_init
  subselect_end
  {
    $$= $2;
  };

in_subselect_init:
8051
  select_init2
unknown's avatar
unknown committed
8052
  {
unknown's avatar
unknown committed
8053
    $$= Lex->current_select->master_unit()->first_select();
unknown's avatar
unknown committed
8054 8055
  };

8056
subselect_start:
8057
	'(' SELECT_SYM
unknown's avatar
unknown committed
8058
	{
8059
	  LEX *lex=Lex;
8060
	  if (((int)lex->sql_command >= (int)SQLCOM_HA_OPEN &&
8061 8062
	       lex->sql_command <= (int)SQLCOM_HA_READ) ||
	       lex->sql_command == (int)SQLCOM_KILL)
8063 8064
	  {
            yyerror(ER(ER_SYNTAX_ERROR));
8065 8066
	    YYABORT;
	  }
unknown's avatar
unknown committed
8067 8068 8069
	  if (mysql_new_select(Lex, 1))
	    YYABORT;
	};
8070 8071

subselect_end:
unknown's avatar
unknown committed
8072 8073 8074
	')'
	{
	  LEX *lex=Lex;
8075
	  lex->current_select = lex->current_select->return_after_parsing();
unknown's avatar
unknown committed
8076
	};
unknown's avatar
unknown committed
8077

8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121
opt_view_list:
	/* empty */ {}
	| '(' view_list ')'
	;

view_list:
	ident 
	  {
	    Lex->view_list.push_back((LEX_STRING*)
				     sql_memdup(&$1, sizeof(LEX_STRING)));
	  }
	| view_list ',' ident
	  {
	    Lex->view_list.push_back((LEX_STRING*)
				     sql_memdup(&$3, sizeof(LEX_STRING)));
	  }
	;

or_replace:
	/* empty */	 { Lex->create_view_mode= VIEW_CREATE_NEW; }
	| OR_SYM REPLACE { Lex->create_view_mode= VIEW_CREATE_OR_REPLACE; }
	;

algorithm:
	/* empty */
	  { Lex->create_view_algorithm= VIEW_ALGORITHM_UNDEFINED; }
	| ALGORITHM_SYM EQ UNDEFINED_SYM
	  { Lex->create_view_algorithm= VIEW_ALGORITHM_UNDEFINED; }
	| ALGORITHM_SYM EQ MERGE_SYM
	  { Lex->create_view_algorithm= VIEW_ALGORITHM_MERGE; }
	| ALGORITHM_SYM EQ TEMPTABLE_SYM
	  { Lex->create_view_algorithm= VIEW_ALGORITHM_TMPTABLE; }
	;
check_option:
        /* empty */
          { Lex->create_view_check= VIEW_CHECK_NONE; }
        | WITH CHECK_SYM OPTION
          { Lex->create_view_check= VIEW_CHECK_CASCADED; }
        | WITH CASCADED CHECK_SYM OPTION
          { Lex->create_view_check= VIEW_CHECK_CASCADED; }
        | WITH LOCAL_SYM CHECK_SYM OPTION
          { Lex->create_view_check= VIEW_CHECK_LOCAL; }
        ;