sql_lex.h 37.2 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
unknown's avatar
unknown committed
2

unknown's avatar
unknown committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
unknown's avatar
unknown committed
7

unknown's avatar
unknown committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
unknown's avatar
unknown committed
12

unknown's avatar
unknown committed
13 14 15 16 17 18 19 20 21 22 23
   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 */


/* YACC and LEX Definitions */

/* These may not be declared yet */
class Table_ident;
class sql_exchange;
class LEX_COLUMN;
24
class sp_head;
25
class sp_name;
26 27
class sp_instr;
class sp_pcontext;
unknown's avatar
unknown committed
28
class st_alter_tablespace;
29
class partition_info;
unknown's avatar
unknown committed
30
class Event_timed;
unknown's avatar
unknown committed
31

32
#ifdef MYSQL_SERVER
33 34 35 36
/*
  The following hack is needed because mysql_yacc.cc does not define
  YYSTYPE before including this file
*/
unknown's avatar
unknown committed
37

unknown's avatar
unknown committed
38 39
#include "set_var.h"

unknown's avatar
unknown committed
40 41 42 43
#ifdef MYSQL_YACC
#define LEX_YYSTYPE void *
#else
#include "lex_symbol.h"
44
#if MYSQL_LEX
unknown's avatar
unknown committed
45 46
#include "sql_yacc.h"
#define LEX_YYSTYPE YYSTYPE *
47 48 49
#else
#define LEX_YYSTYPE void *
#endif
unknown's avatar
unknown committed
50
#endif
51
#endif
unknown's avatar
unknown committed
52

53 54 55 56 57
/*
  When a command is added here, be sure it's also added in mysqld.cc
  in "struct show_var_st status_vars[]= {" ...
*/

unknown's avatar
unknown committed
58
enum enum_sql_command {
59 60 61 62 63
  SQLCOM_SELECT, SQLCOM_CREATE_TABLE, SQLCOM_CREATE_INDEX, SQLCOM_ALTER_TABLE,
  SQLCOM_UPDATE, SQLCOM_INSERT, SQLCOM_INSERT_SELECT,
  SQLCOM_DELETE, SQLCOM_TRUNCATE, SQLCOM_DROP_TABLE, SQLCOM_DROP_INDEX,

  SQLCOM_SHOW_DATABASES, SQLCOM_SHOW_TABLES, SQLCOM_SHOW_FIELDS,
64 65
  SQLCOM_SHOW_KEYS, SQLCOM_SHOW_VARIABLES, SQLCOM_SHOW_STATUS,
  SQLCOM_SHOW_ENGINE_LOGS, SQLCOM_SHOW_ENGINE_STATUS, SQLCOM_SHOW_ENGINE_MUTEX,
66
  SQLCOM_SHOW_PROCESSLIST, SQLCOM_SHOW_MASTER_STAT, SQLCOM_SHOW_SLAVE_STAT,
67
  SQLCOM_SHOW_GRANTS, SQLCOM_SHOW_CREATE, SQLCOM_SHOW_CHARSETS,
68
  SQLCOM_SHOW_COLLATIONS, SQLCOM_SHOW_CREATE_DB, SQLCOM_SHOW_TABLE_STATUS,
69
  SQLCOM_SHOW_TRIGGERS,
70

unknown's avatar
unknown committed
71
  SQLCOM_LOAD,SQLCOM_SET_OPTION,SQLCOM_LOCK_TABLES,SQLCOM_UNLOCK_TABLES,
72
  SQLCOM_GRANT,
73
  SQLCOM_CHANGE_DB, SQLCOM_CREATE_DB, SQLCOM_DROP_DB, SQLCOM_ALTER_DB,
unknown's avatar
unknown committed
74
  SQLCOM_RENAME_DB,
75
  SQLCOM_REPAIR, SQLCOM_REPLACE, SQLCOM_REPLACE_SELECT,
76
  SQLCOM_CREATE_FUNCTION, SQLCOM_DROP_FUNCTION,
77
  SQLCOM_REVOKE,SQLCOM_OPTIMIZE, SQLCOM_CHECK,
unknown's avatar
unknown committed
78
  SQLCOM_ASSIGN_TO_KEYCACHE, SQLCOM_PRELOAD_KEYS,
79
  SQLCOM_FLUSH, SQLCOM_KILL, SQLCOM_ANALYZE,
unknown's avatar
unknown committed
80
  SQLCOM_ROLLBACK, SQLCOM_ROLLBACK_TO_SAVEPOINT,
unknown's avatar
WL#1967  
unknown committed
81
  SQLCOM_COMMIT, SQLCOM_SAVEPOINT, SQLCOM_RELEASE_SAVEPOINT,
82
  SQLCOM_SLAVE_START, SQLCOM_SLAVE_STOP,
83
  SQLCOM_BEGIN, SQLCOM_LOAD_MASTER_TABLE, SQLCOM_CHANGE_MASTER,
unknown's avatar
unknown committed
84
  SQLCOM_RENAME_TABLE, SQLCOM_BACKUP_TABLE, SQLCOM_RESTORE_TABLE,
85
  SQLCOM_RESET, SQLCOM_PURGE, SQLCOM_PURGE_BEFORE, SQLCOM_SHOW_BINLOGS,
86
  SQLCOM_SHOW_OPEN_TABLES, SQLCOM_LOAD_MASTER_DATA,
87
  SQLCOM_HA_OPEN, SQLCOM_HA_CLOSE, SQLCOM_HA_READ,
88
  SQLCOM_SHOW_SLAVE_HOSTS, SQLCOM_DELETE_MULTI, SQLCOM_UPDATE_MULTI,
unknown's avatar
unknown committed
89
  SQLCOM_SHOW_BINLOG_EVENTS, SQLCOM_SHOW_NEW_MASTER, SQLCOM_DO,
unknown's avatar
unknown committed
90
  SQLCOM_SHOW_WARNS, SQLCOM_EMPTY_QUERY, SQLCOM_SHOW_ERRORS,
unknown's avatar
unknown committed
91
  SQLCOM_SHOW_COLUMN_TYPES, SQLCOM_SHOW_STORAGE_ENGINES, SQLCOM_SHOW_PRIVILEGES,
92 93
  SQLCOM_HELP, SQLCOM_CREATE_USER, SQLCOM_DROP_USER, SQLCOM_RENAME_USER,
  SQLCOM_REVOKE_ALL, SQLCOM_CHECKSUM,
94
  SQLCOM_CREATE_PROCEDURE, SQLCOM_CREATE_SPFUNCTION, SQLCOM_CALL,
95
  SQLCOM_DROP_PROCEDURE, SQLCOM_ALTER_PROCEDURE,SQLCOM_ALTER_FUNCTION,
unknown's avatar
unknown committed
96 97
  SQLCOM_SHOW_CREATE_PROC, SQLCOM_SHOW_CREATE_FUNC,
  SQLCOM_SHOW_STATUS_PROC, SQLCOM_SHOW_STATUS_FUNC,
unknown's avatar
unknown committed
98
  SQLCOM_PREPARE, SQLCOM_EXECUTE, SQLCOM_DEALLOCATE_PREPARE,
unknown's avatar
VIEW  
unknown committed
99
  SQLCOM_CREATE_VIEW, SQLCOM_DROP_VIEW,
100
  SQLCOM_CREATE_TRIGGER, SQLCOM_DROP_TRIGGER,
unknown's avatar
unknown committed
101 102
  SQLCOM_XA_START, SQLCOM_XA_END, SQLCOM_XA_PREPARE,
  SQLCOM_XA_COMMIT, SQLCOM_XA_ROLLBACK, SQLCOM_XA_RECOVER,
unknown's avatar
unknown committed
103
  SQLCOM_SHOW_PROC_CODE, SQLCOM_SHOW_FUNC_CODE,
unknown's avatar
unknown committed
104
  SQLCOM_ALTER_TABLESPACE,
105
  SQLCOM_INSTALL_PLUGIN, SQLCOM_UNINSTALL_PLUGIN,
106 107
  SQLCOM_SHOW_AUTHORS, SQLCOM_BINLOG_BASE64_EVENT,
  SQLCOM_SHOW_PLUGINS,
unknown's avatar
unknown committed
108
  SQLCOM_CREATE_EVENT, SQLCOM_ALTER_EVENT, SQLCOM_DROP_EVENT,
109
  SQLCOM_SHOW_CREATE_EVENT, SQLCOM_SHOW_EVENTS,
unknown's avatar
unknown committed
110

111
  /* This should be the last !!! */
112

113
  SQLCOM_END
unknown's avatar
unknown committed
114 115
};

unknown's avatar
unknown committed
116 117 118
// describe/explain types
#define DESCRIBE_NORMAL		1
#define DESCRIBE_EXTENDED	2
unknown's avatar
unknown committed
119
/*
120
  This is not within #ifdef because we want "EXPLAIN PARTITIONS ..." to produce
unknown's avatar
unknown committed
121 122 123
  additional "partitions" column even if partitioning is not compiled in.
*/
#define DESCRIBE_PARTITIONS	4
unknown's avatar
unknown committed
124

125 126
#ifdef MYSQL_SERVER

127
enum enum_sp_suid_behaviour
unknown's avatar
unknown committed
128
{
129 130 131
  SP_IS_DEFAULT_SUID= 0,
  SP_IS_NOT_SUID,
  SP_IS_SUID
unknown's avatar
unknown committed
132
};
133

134 135 136 137 138 139 140 141 142
enum enum_sp_data_access
{
  SP_DEFAULT_ACCESS= 0,
  SP_CONTAINS_SQL,
  SP_NO_SQL,
  SP_READS_SQL_DATA,
  SP_MODIFIES_SQL_DATA
};

143 144 145 146 147 148 149 150
const LEX_STRING sp_data_access_name[]=
{
  { (char*) STRING_WITH_LEN("") },
  { (char*) STRING_WITH_LEN("CONTAINS SQL") },
  { (char*) STRING_WITH_LEN("NO SQL") },
  { (char*) STRING_WITH_LEN("READS SQL DATA") },
  { (char*) STRING_WITH_LEN("MODIFIES SQL DATA") }
};
151

unknown's avatar
VIEW  
unknown committed
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
#define DERIVED_SUBQUERY	1
#define DERIVED_VIEW		2

enum enum_view_create_mode
{
  VIEW_CREATE_NEW,		// check that there are not such VIEW/table
  VIEW_ALTER,			// check that VIEW .frm with such name exists
  VIEW_CREATE_OR_REPLACE	// check only that there are not such table
};

enum enum_drop_mode
{
  DROP_DEFAULT, // mode is not specified
  DROP_CASCADE, // CASCADE option
  DROP_RESTRICT // RESTRICT option
};

unknown's avatar
unknown committed
169 170 171 172
typedef List<Item> List_item;

typedef struct st_lex_master_info
{
173
  char *host, *user, *password, *log_file_name;
unknown's avatar
unknown committed
174 175
  uint port, connect_retry;
  ulonglong pos;
unknown's avatar
unknown committed
176
  ulong server_id;
unknown's avatar
unknown committed
177 178 179 180 181 182 183
  /* 
     Variable for MASTER_SSL option.
     MASTER_SSL=0 in CHANGE MASTER TO corresponds to SSL_DISABLE
     MASTER_SSL=1 corresponds to SSL_ENABLE
  */
  enum {SSL_UNCHANGED=0, SSL_DISABLE, SSL_ENABLE} ssl; 
  char *ssl_key, *ssl_cert, *ssl_ca, *ssl_capath, *ssl_cipher;
184
  char *relay_log_name;
185
  ulong relay_log_pos;
unknown's avatar
unknown committed
186 187
} LEX_MASTER_INFO;

188

189 190
enum sub_select_type
{
unknown's avatar
unknown committed
191 192
  UNSPECIFIED_TYPE,UNION_TYPE, INTERSECT_TYPE,
  EXCEPT_TYPE, GLOBAL_OPTIONS_TYPE, DERIVED_TABLE_TYPE, OLAP_TYPE
193 194 195 196
};

enum olap_type 
{
197
  UNSPECIFIED_OLAP_TYPE, CUBE_TYPE, ROLLUP_TYPE
198
};
199

unknown's avatar
unknown committed
200 201 202 203 204
enum tablespace_op_type
{
  NO_TABLESPACE_OP, DISCARD_TABLESPACE, IMPORT_TABLESPACE
};

unknown's avatar
unknown committed
205 206 207
/* 
  The state of the lex parsing for selects 
   
208 209 210 211 212 213 214 215 216 217
   master and slaves are pointers to select_lex.
   master is pointer to upper level node.
   slave is pointer to lower level node
   select_lex is a SELECT without union
   unit is container of either
     - One SELECT
     - UNION of selects
   select_lex and unit are both inherited form select_lex_node
   neighbors are two select_lex or units on the same level

unknown's avatar
unknown committed
218
   All select describing structures linked with following pointers:
219
   - list of neighbors (next/prev) (prev of first element point to slave
unknown's avatar
unknown committed
220
     pointer of upper structure)
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
     - For select this is a list of UNION's (or one element list)
     - For units this is a list of sub queries for the upper level select

   - pointer to master (master), which is
     If this is a unit
       - pointer to outer select_lex
     If this is a select_lex
       - pointer to outer unit structure for select

   - pointer to slave (slave), which is either:
     If this is a unit:
       - first SELECT that belong to this unit
     If this is a select_lex
       - first unit that belong to this SELECT (subquries or derived tables)

   - list of all select_lex (link_next/link_prev)
     This is to be used for things like derived tables creation, where we
     go through this list and create the derived tables.

   If unit contain several selects (UNION now, INTERSECT etc later)
   then it have special select_lex called fake_select_lex. It used for
   storing global parameters (like ORDER BY, LIMIT) and executing union.
   Subqueries used in global ORDER BY clause will be attached to this
   fake_select_lex, which will allow them correctly resolve fields of
   'upper' UNION and outer selects.

   For example for following query:
248

unknown's avatar
unknown committed
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
   select *
     from table1
     where table1.field IN (select * from table1_1_1 union
                            select * from table1_1_2)
     union
   select *
     from table2
     where table2.field=(select (select f1 from table2_1_1_1_1
                                   where table2_1_1_1_1.f2=table2_1_1.f3)
                           from table2_1_1
                           where table2_1_1.f1=table2.f2)
     union
   select * from table3;

   we will have following structure:

265 266 267 268 269
   select1: (select * from table1 ...)
   select2: (select * from table2 ...)
   select3: (select * from table3)
   select1.1.1: (select * from table1_1_1)
   ...
unknown's avatar
unknown committed
270 271

     main unit
unknown's avatar
(SCRUM)  
unknown committed
272
     fake0
unknown's avatar
unknown committed
273 274 275 276 277 278 279 280
     select1 select2 select3
     |^^     |^
    s|||     ||master
    l|||     |+---------------------------------+
    a|||     +---------------------------------+|
    v|||master                         slave   ||
    e||+-------------------------+             ||
     V|            neighbor      |             V|
unknown's avatar
(SCRUM)  
unknown committed
281
     unit1.1<+==================>unit1.2       unit2.1
unknown's avatar
unknown committed
282 283
     fake1.1
     select1.1.1 select 1.1.2    select1.2.1   select2.1.1
unknown's avatar
unknown committed
284 285 286 287 288 289 290 291
                                               |^
                                               ||
                                               V|
                                               unit2.1.1.1
                                               select2.1.1.1.1


   relation in main unit will be following:
292 293 294 295 296 297
   (bigger picture for:
      main unit
      fake0
      select1 select2 select3
   in the above picture)

unknown's avatar
unknown committed
298
         main unit
unknown's avatar
(SCRUM)  
unknown committed
299 300 301 302 303 304 305 306
         |^^^^|fake_select_lex
         |||||+--------------------------------------------+
         ||||+--------------------------------------------+|
         |||+------------------------------+              ||
         ||+--------------+                |              ||
    slave||master         |                |              ||
         V|      neighbor |       neighbor |        master|V
         select1<========>select2<========>select3        fake0
unknown's avatar
unknown committed
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322

    list of all select_lex will be following (as it will be constructed by
    parser):

    select1->select2->select3->select2.1.1->select 2.1.2->select2.1.1.1.1-+
                                                                          |
    +---------------------------------------------------------------------+
    |
    +->select1.1.1->select1.1.2

*/

/* 
    Base class for st_select_lex (SELECT_LEX) & 
    st_select_lex_unit (SELECT_LEX_UNIT)
*/
unknown's avatar
unknown committed
323
struct st_lex;
324 325
class st_select_lex;
class st_select_lex_unit;
326 327
class st_select_lex_node {
protected:
unknown's avatar
unknown committed
328 329 330
  st_select_lex_node *next, **prev,   /* neighbor list */
    *master, *slave,                  /* vertical links */
    *link_next, **link_prev;          /* list of whole SELECT_LEX */
331
public:
unknown's avatar
unknown committed
332

333
  ulonglong options;
334 335 336 337
  /*
    result of this query can't be cached, bit field, can be :
      UNCACHEABLE_DEPENDENT
      UNCACHEABLE_RAND
338
      UNCACHEABLE_SIDEEFFECT
339
      UNCACHEABLE_EXPLAIN
340
      UNCACHEABLE_PREPARE
341 342
  */
  uint8 uncacheable;
343
  enum sub_select_type linkage;
unknown's avatar
unknown committed
344
  bool no_table_names_allowed; /* used for global order by */
345
  bool no_error; /* suppress error message (convert it to warnings) */
346 347 348

  static void *operator new(size_t size)
  {
349
    return (void*) sql_alloc((uint) size);
350
  }
unknown's avatar
unknown committed
351 352
  static void *operator new(size_t size, MEM_ROOT *mem_root)
  { return (void*) alloc_root(mem_root, (uint) size); }
unknown's avatar
unknown committed
353
  static void operator delete(void *ptr,size_t size) { TRASH(ptr, size); }
354
  static void operator delete(void *ptr, MEM_ROOT *mem_root) {}
355
  st_select_lex_node(): linkage(UNSPECIFIED_TYPE) {}
356 357 358 359
  virtual ~st_select_lex_node() {}
  inline st_select_lex_node* get_master() { return master; }
  virtual void init_query();
  virtual void init_select();
unknown's avatar
unknown committed
360 361
  void include_down(st_select_lex_node *upper);
  void include_neighbour(st_select_lex_node *before);
unknown's avatar
(SCRUM)  
unknown committed
362
  void include_standalone(st_select_lex_node *sel, st_select_lex_node **ref);
unknown's avatar
unknown committed
363 364
  void include_global(st_select_lex_node **plink);
  void exclude();
365 366 367

  virtual st_select_lex_unit* master_unit()= 0;
  virtual st_select_lex* outer_select()= 0;
unknown's avatar
(SCRUM)  
unknown committed
368
  virtual st_select_lex* return_after_parsing()= 0;
369 370 371 372 373 374 375 376

  virtual bool set_braces(bool value);
  virtual bool inc_in_sum_expr();
  virtual uint get_in_sum_expr();
  virtual TABLE_LIST* get_table_list();
  virtual List<Item>* get_item_list();
  virtual List<String>* get_use_index();
  virtual List<String>* get_ignore_index();
unknown's avatar
unknown committed
377
  virtual ulong get_table_join_options();
unknown's avatar
unknown committed
378
  virtual TABLE_LIST *add_table_to_list(THD *thd, Table_ident *table,
379
					LEX_STRING *alias,
unknown's avatar
unknown committed
380
					ulong table_options,
381 382
					thr_lock_type flags= TL_UNLOCK,
					List<String> *use_index= 0,
unknown's avatar
unknown committed
383 384
					List<String> *ignore_index= 0,
                                        LEX_STRING *option= 0);
unknown's avatar
unknown committed
385
  virtual void set_lock_for_tables(thr_lock_type lock_type) {}
unknown's avatar
unknown committed
386

unknown's avatar
unknown committed
387
  friend class st_select_lex_unit;
unknown's avatar
unknown committed
388
  friend bool mysql_new_select(struct st_lex *lex, bool move_down);
389 390
  friend bool mysql_make_view(THD *thd, File_parser *parser,
                              TABLE_LIST *table);
unknown's avatar
unknown committed
391 392 393
private:
  void fast_exclude();
};
394
typedef class st_select_lex_node SELECT_LEX_NODE;
unknown's avatar
unknown committed
395 396 397 398 399

/* 
   SELECT_LEX_UNIT - unit of selects (UNION, INTERSECT, ...) group 
   SELECT_LEXs
*/
unknown's avatar
unknown committed
400 401 402 403
class THD;
class select_result;
class JOIN;
class select_union;
404
class Procedure;
405
class st_select_lex_unit: public st_select_lex_node {
unknown's avatar
unknown committed
406 407 408 409
protected:
  TABLE_LIST result_table_list;
  select_union *union_result;
  TABLE *table; /* temporary table using for appending UNION results */
410

unknown's avatar
unknown committed
411
  select_result *result;
unknown's avatar
unknown committed
412
  ulong found_rows_for_union;
unknown's avatar
unknown committed
413
  bool res;
414
public:
unknown's avatar
unknown committed
415
  bool  prepared, // prepare phase already performed for UNION (unit)
unknown's avatar
unknown committed
416
    optimized, // optimize phase already performed for UNION (unit)
417 418
    executed, // already executed
    cleaned;
419 420 421

  // list of fields which points to temporary table for union
  List<Item> item_list;
unknown's avatar
unknown committed
422 423 424 425 426 427 428
  /*
    list of types of items inside union (used for union & derived tables)
    
    Item_type_holders from which this list consist may have pointers to Field,
    pointers is valid only after preparing SELECTS of this unit and before
    any SELECT of this unit execution
  */
429
  List<Item> types;
unknown's avatar
unknown committed
430 431 432 433
  /*
    Pointer to 'last' select or pointer to unit where stored
    global parameters for union
  */
unknown's avatar
(SCRUM)  
unknown committed
434
  st_select_lex *global_parameters;
435
  //node on wich we should return current_select pointer after parsing subquery
unknown's avatar
(SCRUM)  
unknown committed
436
  st_select_lex *return_to;
unknown's avatar
unknown committed
437 438
  /* LIMIT clause runtime counters */
  ha_rows select_limit_cnt, offset_limit_cnt;
439
  /* not NULL if unit used in subselect, point to subselect item */
unknown's avatar
unknown committed
440
  Item_subselect *item;
unknown's avatar
(SCRUM)  
unknown committed
441
  /* thread handler */
442
  THD *thd;
unknown's avatar
unknown committed
443 444 445 446
  /*
    SELECT_LEX for hidden SELECT in onion which process global
    ORDER BY and LIMIT
  */
unknown's avatar
(SCRUM)  
unknown committed
447
  st_select_lex *fake_select_lex;
448

449
  st_select_lex *union_distinct; /* pointer to the last UNION DISTINCT */
450
  bool describe; /* union exec() called for EXPLAIN */
451
  Procedure *last_procedure;	 /* Pointer to procedure, if such exists */
unknown's avatar
unknown committed
452

unknown's avatar
unknown committed
453
  void init_query();
454 455
  st_select_lex_unit* master_unit();
  st_select_lex* outer_select();
456 457 458 459 460 461 462
  st_select_lex* first_select()
  {
    return my_reinterpret_cast(st_select_lex*)(slave);
  }
  st_select_lex_unit* next_unit()
  {
    return my_reinterpret_cast(st_select_lex_unit*)(next);
463
  }
unknown's avatar
(SCRUM)  
unknown committed
464
  st_select_lex* return_after_parsing() { return return_to; }
unknown's avatar
unknown committed
465
  void exclude_level();
466
  void exclude_tree();
467

unknown's avatar
unknown committed
468
  /* UNION methods */
469
  bool prepare(THD *thd, select_result *result, ulong additional_options);
unknown's avatar
unknown committed
470 471
  bool exec();
  bool cleanup();
472
  inline void unclean() { cleaned= 0; }
unknown's avatar
unknown committed
473
  void reinit_exec_mechanism();
unknown's avatar
unknown committed
474 475

  void print(String *str);
476

477
  void init_prepare_fake_select_lex(THD *thd);
478
  inline bool is_prepared() { return prepared; }
unknown's avatar
unknown committed
479
  bool change_result(select_subselect *result, select_subselect *old_result);
480
  void set_limit(st_select_lex *values);
481
  void set_thd(THD *thd_arg) { thd= thd_arg; }
unknown's avatar
unknown committed
482

unknown's avatar
unknown committed
483
  friend void lex_start(THD *thd, const uchar *buf, uint length);
484
  friend int subselect_union_engine::exec();
485 486

  List<Item> *get_unit_column_types();
unknown's avatar
unknown committed
487
};
488

unknown's avatar
cleanup  
unknown committed
489
typedef class st_select_lex_unit SELECT_LEX_UNIT;
unknown's avatar
unknown committed
490 491

/*
492
  SELECT_LEX - store information of parsed SELECT statment
unknown's avatar
unknown committed
493
*/
494 495
class st_select_lex: public st_select_lex_node
{
496
public:
497
  Name_resolution_context context;
unknown's avatar
unknown committed
498
  char *db;
unknown's avatar
unknown committed
499
  Item *where, *having;                         /* WHERE & HAVING clauses */
500
  Item *prep_where; /* saved WHERE clause for prepared statement processing */
unknown's avatar
unknown committed
501
  Item *prep_having;/* saved HAVING clause for prepared statement processing */
unknown's avatar
VIEW  
unknown committed
502 503
  /* point on lex in which it was created, used in view subquery detection */
  st_lex *parent_lex;
504
  enum olap_type olap;
unknown's avatar
unknown committed
505 506 507 508
  /* FROM clause - points to the beginning of the TABLE_LIST::next_local list. */
  SQL_LIST	      table_list;
  SQL_LIST	      group_list; /* GROUP BY clause. */
  List<Item>          item_list;  /* list of fields & expressions */
unknown's avatar
unknown committed
509
  List<String>        interval_list, use_index, *use_index_ptr,
unknown's avatar
unknown committed
510
		      ignore_index, *ignore_index_ptr;
unknown's avatar
unknown committed
511
  bool	              is_item_list_lookup;
unknown's avatar
unknown committed
512 513 514 515 516 517
  /* 
    Usualy it is pointer to ftfunc_list_alloc, but in union used to create fake
    select_lex for calling mysql_select under results of union
  */
  List<Item_func_match> *ftfunc_list;
  List<Item_func_match> ftfunc_list_alloc;
unknown's avatar
unknown committed
518
  JOIN *join; /* after JOIN::prepare it is pointer to corresponding JOIN */
519
  List<TABLE_LIST> top_join_list; /* join list of the top level          */
520
  List<TABLE_LIST> *join_list;    /* list for the currently parsed join  */
521
  TABLE_LIST *embedding;          /* table embedding to the above list   */
unknown's avatar
unknown committed
522 523 524 525 526 527
  /*
    Beginning of the list of leaves in a FROM clause, where the leaves
    inlcude all base tables including view tables. The tables are connected
    by TABLE_LIST::next_leaf, so leaf_tables points to the left-most leaf.
  */
  TABLE_LIST *leaf_tables;
528
  const char *type;               /* type of select for EXPLAIN          */
unknown's avatar
(SCRUM)  
unknown committed
529 530 531 532

  SQL_LIST order_list;                /* ORDER clause */
  List<List_item>     expr_list;
  List<List_item>     when_list;      /* WHEN clause (expression) */
unknown's avatar
unknown committed
533
  SQL_LIST *gorder_list;
534
  Item *select_limit, *offset_limit;  /* LIMIT clause parameters */
unknown's avatar
(SCRUM)  
unknown committed
535 536 537
  // Arrays of pointers to top elements of all_fields list
  Item **ref_pointer_array;

unknown's avatar
merge  
unknown committed
538 539 540 541 542 543
  /*
    number of items in select_list and HAVING clause used to get number
    bigger then can be number of entries that will be added to all item
    list during split_sum_func
  */
  uint select_n_having_items;
unknown's avatar
(SCRUM)  
unknown committed
544 545 546
  uint cond_count;      /* number of arguments of and/or/xor in where/having */
  enum_parsing_place parsing_place; /* where we are parsing expression */
  bool with_sum_func;   /* sum function indicator */
547 548 549 550 551
  /* 
    PS or SP cond natural joins was alredy processed with permanent
    arena and all additional items which we need alredy stored in it
  */
  bool conds_processed_with_permanent_arena;
unknown's avatar
(SCRUM)  
unknown committed
552

unknown's avatar
unknown committed
553
  ulong table_join_options;
554
  uint in_sum_expr;
unknown's avatar
unknown committed
555
  uint select_number; /* number of select (used for EXPLAIN) */
unknown's avatar
unknown committed
556 557
  int nest_level;     /* nesting level of select */
  Item_sum *inner_sum_func_list; /* list of sum func in nested selects */ 
558
  uint with_wild; /* item list contain '*' */
unknown's avatar
unknown committed
559 560 561
  bool  braces;   	/* SELECT ... UNION (SELECT ... ) <- this braces */
  /* TRUE when having fix field called in processing of this SELECT */
  bool having_fix_field;
562 563
  /* explicit LIMIT clause was used */
  bool explicit_limit;
564 565 566 567 568
  /*
    there are subquery in HAVING clause => we can't close tables before
    query processing end even if we use temporary table
  */
  bool subquery_in_having;
569 570 571 572 573 574 575 576 577 578 579 580 581
  /*
    This variable is required to ensure proper work of subqueries and
    stored procedures. Generally, one should use the states of
    Query_arena to determine if it's a statement prepare or first
    execution of a stored procedure. However, in case when there was an
    error during the first execution of a stored procedure, the SP body
    is not expelled from the SP cache. Therefore, a deeply nested
    subquery might be left unoptimized. So we need this per-subquery
    variable to inidicate the optimization/execution state of every
    subquery. Prepared statements work OK in that regard, as in
    case of an error during prepare the PS is not created.
  */
  bool first_execution;
unknown's avatar
unknown committed
582
  bool first_cond_optimization;
unknown's avatar
unknown committed
583 584
  /* do not wrap view fields with Item_ref */
  bool no_wrap_view_item;
585 586
  /* exclude this select from check of unique_table() */
  bool exclude_from_table_unique_test;
587

unknown's avatar
unknown committed
588 589
  void init_query();
  void init_select();
590
  st_select_lex_unit* master_unit();
591 592 593 594
  st_select_lex_unit* first_inner_unit() 
  { 
    return (st_select_lex_unit*) slave; 
  }
595
  st_select_lex* outer_select();
unknown's avatar
unknown committed
596
  st_select_lex* next_select() { return (st_select_lex*) next; }
597
  st_select_lex* next_select_in_list() 
598 599 600 601 602 603 604
  {
    return (st_select_lex*) link_next;
  }
  st_select_lex_node** next_select_in_list_addr()
  {
    return &link_next;
  }
unknown's avatar
(SCRUM)  
unknown committed
605
  st_select_lex* return_after_parsing()
606 607 608
  {
    return master_unit()->return_after_parsing();
  }
609

unknown's avatar
(SCRUM)  
unknown committed
610 611
  void mark_as_dependent(st_select_lex *last);

612 613 614
  bool set_braces(bool value);
  bool inc_in_sum_expr();
  uint get_in_sum_expr();
unknown's avatar
unknown committed
615

unknown's avatar
unknown committed
616 617
  bool add_item_to_list(THD *thd, Item *item);
  bool add_group_to_list(THD *thd, Item *item, bool asc);
618
  bool add_ftfunc_to_list(Item_func_match *func);
unknown's avatar
(SCRUM)  
unknown committed
619
  bool add_order_to_list(THD *thd, Item *item, bool asc);
unknown's avatar
unknown committed
620
  TABLE_LIST* add_table_to_list(THD *thd, Table_ident *table,
621
				LEX_STRING *alias,
unknown's avatar
unknown committed
622
				ulong table_options,
623 624
				thr_lock_type flags= TL_UNLOCK,
				List<String> *use_index= 0,
625 626
				List<String> *ignore_index= 0,
                                LEX_STRING *option= 0);
unknown's avatar
(SCRUM)  
unknown committed
627
  TABLE_LIST* get_table_list();
628 629 630 631 632
  bool init_nested_join(THD *thd);
  TABLE_LIST *end_nested_join(THD *thd);
  TABLE_LIST *nest_last_join(THD *thd);
  void add_joined_table(TABLE_LIST *table);
  TABLE_LIST *convert_right_join();
unknown's avatar
(SCRUM)  
unknown committed
633 634 635 636
  List<Item>* get_item_list();
  List<String>* get_use_index();
  List<String>* get_ignore_index();
  ulong get_table_join_options();
unknown's avatar
unknown committed
637
  void set_lock_for_tables(thr_lock_type lock_type);
unknown's avatar
unknown committed
638 639 640 641 642 643
  inline void init_order()
  {
    order_list.elements= 0;
    order_list.first= 0;
    order_list.next= (byte**) &order_list.first;
  }
644 645 646 647 648 649 650
  /*
    This method created for reiniting LEX in mysql_admin_table() and can be
    used only if you are going remove all SELECT_LEX & units except belonger
    to LEX (LEX::unit & LEX::select, for other purposes there are
    SELECT_LEX_UNIT::exclude_level & SELECT_LEX_UNIT::exclude_tree
  */
  void cut_subtree() { slave= 0; }
unknown's avatar
(SCRUM)  
unknown committed
651 652
  bool test_limit();

unknown's avatar
unknown committed
653
  friend void lex_start(THD *thd, const uchar *buf, uint length);
unknown's avatar
(SCRUM)  
unknown committed
654 655
  st_select_lex() {}
  void make_empty_select()
656 657 658 659
  {
    init_query();
    init_select();
  }
unknown's avatar
unknown committed
660
  bool setup_ref_array(THD *thd, uint order_group_num);
unknown's avatar
unknown committed
661 662 663
  void print(THD *thd, String *str);
  static void print_order(String *str, ORDER *order);
  void print_limit(THD *thd, String *str);
unknown's avatar
VIEW  
unknown committed
664
  void fix_prepare_information(THD *thd, Item **conds);
665 666 667 668 669
  /*
    Destroy the used execution plan (JOIN) of this subtree (this
    SELECT_LEX and all nested SELECT_LEXes and SELECT_LEX_UNITs).
  */
  bool cleanup();
670 671 672 673 674
  /*
    Recursively cleanup the join of this select lex and of all nested
    select lexes.
  */
  void cleanup_all_joins(bool full);
unknown's avatar
unknown committed
675
};
unknown's avatar
cleanup  
unknown committed
676
typedef class st_select_lex SELECT_LEX;
677

unknown's avatar
unknown committed
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
#define ALTER_ADD_COLUMN	(1L << 0)
#define ALTER_DROP_COLUMN	(1L << 1)
#define ALTER_CHANGE_COLUMN	(1L << 2)
#define ALTER_ADD_INDEX		(1L << 3)
#define ALTER_DROP_INDEX	(1L << 4)
#define ALTER_RENAME		(1L << 5)
#define ALTER_ORDER		(1L << 6)
#define ALTER_OPTIONS		(1L << 7)
#define ALTER_CHANGE_COLUMN_DEFAULT (1L << 8)
#define ALTER_KEYS_ONOFF        (1L << 9)
#define ALTER_CONVERT           (1L << 10)
#define ALTER_FORCE		(1L << 11)
#define ALTER_RECREATE          (1L << 12)
#define ALTER_ADD_PARTITION     (1L << 13)
#define ALTER_DROP_PARTITION    (1L << 14)
#define ALTER_COALESCE_PARTITION (1L << 15)
#define ALTER_REORGANIZE_PARTITION (1L << 16) 
#define ALTER_PARTITION          (1L << 17)
#define ALTER_OPTIMIZE_PARTITION (1L << 18)
#define ALTER_TABLE_REORG        (1L << 19)
#define ALTER_REBUILD_PARTITION  (1L << 20)
#define ALTER_ALL_PARTITION      (1L << 21)
#define ALTER_ANALYZE_PARTITION  (1L << 22)
#define ALTER_CHECK_PARTITION    (1L << 23)
#define ALTER_REPAIR_PARTITION   (1L << 24)
703

704 705 706 707 708 709 710
typedef struct st_alter_info
{
  List<Alter_drop>            drop_list;
  List<Alter_column>          alter_list;
  uint                        flags;
  enum enum_enable_or_disable keys_onoff;
  enum tablespace_op_type     tablespace_op;
unknown's avatar
unknown committed
711 712
  List<char>                  partition_names;
  uint                        no_parts;
713 714

  st_alter_info(){clear();}
unknown's avatar
unknown committed
715 716 717 718 719 720 721
  void clear()
  {
    keys_onoff= LEAVE_AS_IS;
    tablespace_op= NO_TABLESPACE_OP;
    no_parts= 0;
    partition_names.empty();
  }
722 723 724
  void reset(){drop_list.empty();alter_list.empty();clear();}
} ALTER_INFO;

725 726 727
struct st_sp_chistics
{
  LEX_STRING comment;
728
  enum enum_sp_suid_behaviour suid;
729
  bool detistic;
730
  enum enum_sp_data_access daccess;
731 732
};

733 734 735 736 737 738 739

struct st_trg_chistics
{
  enum trg_action_time_type action_time;
  enum trg_event_type event;
};

unknown's avatar
unknown committed
740
extern sys_var *trg_new_row_fake_var;
741

unknown's avatar
unknown committed
742 743 744
enum xa_option_words {XA_NONE, XA_JOIN, XA_RESUME, XA_ONE_PHASE,
                      XA_SUSPEND, XA_FOR_MIGRATE};

unknown's avatar
unknown committed
745 746
/* The state of the lex parsing. This is saved in the THD struct */

747 748
typedef struct st_lex
{
unknown's avatar
unknown committed
749 750
  uint	 yylineno,yytoklen;			/* Simulate lex */
  LEX_YYSTYPE yylval;
unknown's avatar
unknown committed
751
  SELECT_LEX_UNIT unit;                         /* most upper unit */
752 753
  SELECT_LEX select_lex;                        /* first SELECT_LEX */
  /* current SELECT_LEX in parsing */
unknown's avatar
(SCRUM)  
unknown committed
754
  SELECT_LEX *current_select;
755 756
  /* list of all SELECT_LEX */
  SELECT_LEX *all_selects_list;
unknown's avatar
unknown committed
757 758
  const uchar *buf;		/* The beginning of string, used by SPs */
  const uchar *ptr,*tok_start,*tok_end,*end_of_query;
759
  
760
  /* The values of tok_start/tok_end as they were one call of MYSQLlex before */
unknown's avatar
unknown committed
761
  const uchar *tok_start_prev, *tok_end_prev;
762

unknown's avatar
unknown committed
763
  char *length,*dec,*change,*name;
unknown's avatar
unknown committed
764
  char *help_arg;
765
  char *backup_dir;				/* For RESTORE/BACKUP */
unknown's avatar
unknown committed
766
  char* to_log;                                 /* For PURGE MASTER LOGS TO */
767
  char* x509_subject,*x509_issuer,*ssl_cipher;
unknown's avatar
unknown committed
768
  char* found_semicolon;                        /* For multi queries - next query */
unknown's avatar
unknown committed
769 770
  String *wild;
  sql_exchange *exchange;
unknown's avatar
unknown committed
771
  select_result *result;
772
  Item *default_value, *on_update_value;
unknown's avatar
unknown committed
773
  LEX_STRING comment, ident;
unknown's avatar
unknown committed
774
  LEX_USER *grant_user;
unknown's avatar
unknown committed
775
  XID *xid;
unknown's avatar
unknown committed
776 777 778
  gptr yacc_yyss,yacc_yyvs;
  THD *thd;
  CHARSET_INFO *charset;
unknown's avatar
VIEW  
unknown committed
779
  TABLE_LIST *query_tables;	/* global list of all tables in this query */
780 781
  /*
    last element next_global of previous list (used only for list building
782 783 784
    during parsing and VIEW processing. This pointer could be invalid during
    processing of information schema tables(see get_schema_tables_result
    function)
785
  */
unknown's avatar
VIEW  
unknown committed
786
  TABLE_LIST **query_tables_last;
787 788
  /* store original leaf_tables for INSERT SELECT and PS/SP */
  TABLE_LIST *leaf_tables_insert;
789 790
  /* Position (first character index) of SELECT of CREATE VIEW statement */
  uint create_view_select_start;
791 792
  /* Partition info structure filled in by PARTITION BY parse part */
  partition_info *part_info;
unknown's avatar
unknown committed
793

794 795 796 797 798 799
  /*
    The definer of the object being created (view, trigger, stored routine).
    I.e. the value of DEFINER clause.
  */
  LEX_USER *definer;

unknown's avatar
unknown committed
800
  List<key_part_spec> col_list;
801
  List<key_part_spec> ref_list;
802
  List<String>	      interval_list;
unknown's avatar
unknown committed
803
  List<LEX_USER>      users_list;
unknown's avatar
unknown committed
804 805 806
  List<LEX_COLUMN>    columns;
  List<Key>	      key_list;
  List<create_field>  create_list;
unknown's avatar
unknown committed
807
  List<Item>	      *insert_list,field_list,value_list,update_list;
808
  List<List_item>     many_values;
unknown's avatar
unknown committed
809
  List<set_var_base>  var_list;
810
  List<Item_param>    param_list;
unknown's avatar
VIEW  
unknown committed
811
  List<LEX_STRING>    view_list; // view list (list of field names in view)
unknown's avatar
unknown committed
812 813 814 815 816 817 818 819 820 821 822 823 824 825
  /*
    A stack of name resolution contexts for the query. This stack is used
    at parse time to set local name resolution contexts for various parts
    of a query. For example, in a JOIN ... ON (some_condition) clause the
    Items in 'some_condition' must be resolved only against the operands
    of the the join, and not against the whole clause. Similarly, Items in
    subqueries should be resolved against the subqueries (and outer queries).
    The stack is used in the following way: when the parser detects that
    all Items in some clause need a local context, it creates a new context
    and pushes it on the stack. All newly created Items always store the
    top-most context in the stack. Once the parser leaves the clause that
    required a local context, the parser pops the top-most context.
  */
  List<Name_resolution_context> context_stack;
unknown's avatar
unknown committed
826
  List<LEX_STRING>     db_list;
unknown's avatar
unknown committed
827

828
  SQL_LIST	      proc_list, auxilliary_table_list, save_list;
unknown's avatar
unknown committed
829
  create_field	      *last_field;
unknown's avatar
unknown committed
830
  Item_sum *in_sum_func;
unknown's avatar
unknown committed
831
  udf_func udf;
832 833
  HA_CHECK_OPT   check_opt;			// check/repair options
  HA_CREATE_INFO create_info;
unknown's avatar
unknown committed
834
  LEX_MASTER_INFO mi;				// used by CHANGE MASTER
835
  USER_RESOURCES mqh;
836
  ulong type;
unknown's avatar
unknown committed
837 838 839 840 841 842 843 844 845 846
  /*
    This variable is used in post-parse stage to declare that sum-functions,
    or functions which have sense only if GROUP BY is present, are allowed.
    For example in a query
    SELECT ... FROM ...WHERE MIN(i) == 1 GROUP BY ... HAVING MIN(i) > 2
    MIN(i) in the WHERE clause is not allowed in the opposite to MIN(i)
    in the HAVING clause. Due to possible nesting of select construct
    the variable can contain 0 or 1 for each nest level.
  */
  nesting_map allow_sum_func;
847
  enum_sql_command sql_command, orig_sql_command;
848
  thr_lock_type lock_option;
unknown's avatar
unknown committed
849
  enum SSL_type ssl_type;			/* defined in violite.h */
850
  enum my_lex_states next_state;
851
  enum enum_duplicates duplicates;
unknown's avatar
unknown committed
852
  enum enum_tx_isolation tx_isolation;
853
  enum enum_ha_read_modes ha_read_mode;
unknown's avatar
unknown committed
854
  union {
unknown's avatar
unknown committed
855
    enum ha_rkey_function ha_rkey_mode;
unknown's avatar
unknown committed
856 857
    enum xa_option_words xa_opt;
  };
unknown's avatar
unknown committed
858
  enum enum_var_type option_type;
unknown's avatar
VIEW  
unknown committed
859 860
  enum enum_view_create_mode create_view_mode;
  enum enum_drop_mode drop_mode;
unknown's avatar
unknown committed
861
  uint uint_geom_type;
unknown's avatar
unknown committed
862
  uint grant, grant_tot_col, which_columns;
863
  uint fk_delete_opt, fk_update_opt, fk_match_option;
864
  uint slave_thd_opt, start_transaction_opt;
unknown's avatar
unknown committed
865
  int nest_level;
866 867 868 869 870 871
  /*
    In LEX representing update which were transformed to multi-update
    stores total number of tables. For LEX representing multi-delete
    holds number of tables from which we will delete records.
  */
  uint table_count;
unknown's avatar
unknown committed
872
  uint8 describe;
873 874 875
  /*
    A flag that indicates what kinds of derived tables are present in the
    query (0 if no derived tables, otherwise a combination of flags
unknown's avatar
unknown committed
876
    DERIVED_SUBQUERY and DERIVED_VIEW).
877
  */
unknown's avatar
VIEW  
unknown committed
878 879
  uint8 derived_tables;
  uint8 create_view_algorithm;
unknown's avatar
unknown committed
880
  uint8 create_view_check;
881
  bool drop_if_exists, drop_temporary, local_file, one_shot_set;
882
  bool in_comment, ignore_space, verbose, no_write_to_binlog;
unknown's avatar
WL#1967  
unknown committed
883
  bool tx_chain, tx_release;
unknown's avatar
unknown committed
884 885 886 887 888 889 890
  /*
    Special JOIN::prepare mode: changing of query is prohibited.
    When creating a view, we need to just check its syntax omitting
    any optimizations: afterwards definition of the view will be
    reconstructed by means of ::print() methods and written to
    to an .frm file. We need this definition to stay untouched.
  */
unknown's avatar
VIEW  
unknown committed
891
  bool view_prepare_mode;
892 893 894 895 896
  /*
    TRUE if we're parsing a prepared statement: in this mode
    we should allow placeholders and disallow multistatements.
  */
  bool stmt_prepare_mode;
897
  bool safe_to_cache_query;
898
  bool subqueries, ignore;
unknown's avatar
VIEW  
unknown committed
899
  bool variables_used;
900
  ALTER_INFO alter_info;
unknown's avatar
unknown committed
901 902
  /* Prepared statements SQL syntax:*/
  LEX_STRING prepared_stmt_name; /* Statement name (in all queries) */
unknown's avatar
unknown committed
903
  /*
904 905 906
    Prepared statement query text or name of variable that holds the
    prepared statement (in PREPARE ... queries)
  */
unknown's avatar
unknown committed
907
  LEX_STRING prepared_stmt_code;
908 909
  /* If true, prepared_stmt_code is a name of variable that holds the query */
  bool prepared_stmt_code_is_varref;
unknown's avatar
unknown committed
910
  /* Names of user variables holding parameters (in EXECUTE) */
unknown's avatar
unknown committed
911
  List<LEX_STRING> prepared_stmt_params;
912
  /*
913 914
    Points to part of global table list which contains time zone tables
    implicitly used by the statement.
915 916
  */
  TABLE_LIST *time_zone_tables_used;
917
  sp_head *sphead;
918
  sp_name *spname;
919
  bool sp_lex_in_use;	/* Keep track on lex usage in SPs for error handling */
920
  bool all_privileges;
921
  sp_pcontext *spcont;
922 923 924 925 926
  /* Set of stored routines called by statement. */
  HASH sroutines;
  /*
    List linking elements of 'sroutines' set. Allows you to add new elements
    to this set as you iterate through the list of existing elements.
927 928 929 930 931
    'sroutines_list_own_last' is pointer to ::next member of last element of
    this list which represents routine which is explicitly used by query.
    'sroutines_list_own_elements' number of explicitly used routines.
    We use these two members for restoring of 'sroutines_list' to the state
    in which it was right after query parsing.
932 933
  */
  SQL_LIST sroutines_list;
934 935
  byte     **sroutines_list_own_last;
  uint     sroutines_list_own_elements;
936

937
  st_sp_chistics sp_chistics;
unknown's avatar
unknown committed
938

unknown's avatar
unknown committed
939
  Event_timed *et;
unknown's avatar
unknown committed
940 941
  bool et_compile_phase;

unknown's avatar
VIEW  
unknown committed
942 943 944 945 946 947
  bool only_view;       /* used for SHOW CREATE TABLE/VIEW */
  /*
    field_list was created for view and should be removed before PS/SP
    rexecuton
  */
  bool empty_field_list_on_rset;
948 949 950 951
  /*
    view created to be run from definer (standard behaviour)
  */
  bool create_view_suid;
952 953 954
  /* Characterstics of trigger being created */
  st_trg_chistics trg_chistics;
  /*
955 956 957 958 959
    List of all items (Item_trigger_field objects) representing fields in
    old/new version of row in trigger. We use this list for checking whenever
    all such fields are valid at trigger creation time and for binding these
    fields to TABLE object at table open (altough for latter pointer to table
    being opened is probably enough).
960
  */
961
  SQL_LIST trg_table_fields;
962

963
  /*
964 965 966 967 968 969 970 971
    stmt_definition_begin is intended to point to the next word after
    DEFINER-clause in the following statements:
      - CREATE TRIGGER (points to "TRIGGER");
      - CREATE PROCEDURE (points to "PROCEDURE");
      - CREATE FUNCTION (points to "FUNCTION" or "AGGREGATE");

    This pointer is required to add possibly omitted DEFINER-clause to the
    DDL-statement before dumping it to the binlog. 
972
  */
973
  const char *stmt_definition_begin;
974

975 976 977 978 979 980 981 982
  /*
    If non-0 then indicates that query requires prelocking and points to
    next_global member of last own element in query table list (i.e. last
    table which was not added to it as part of preparation to prelocking).
    0 - indicates that this query does not need prelocking.
  */
  TABLE_LIST **query_tables_own_last;

unknown's avatar
unknown committed
983 984 985 986
  /*
    Pointers to part of LOAD DATA statement that should be rewritten
    during replication ("LOCAL 'filename' REPLACE INTO" part).
  */
unknown's avatar
unknown committed
987
  const uchar *fname_start, *fname_end;
unknown's avatar
unknown committed
988 989 990 991 992 993

  /*
    Reference to a struct that contains information in various commands
    to add/create/drop/change table spaces.
  */
  st_alter_tablespace *alter_tablespace_info;
994 995
  
  bool escape_used;
unknown's avatar
unknown committed
996

997
  st_lex();
998 999

  virtual ~st_lex()
1000
  {
1001
    hash_free(&sroutines);
1002
  }
1003

1004
  inline void uncacheable(uint8 cause)
1005 1006
  {
    safe_to_cache_query= 0;
1007 1008 1009 1010 1011 1012

    /*
      There are no sense to mark select_lex and union fields of LEX,
      but we should merk all subselects as uncacheable from current till
      most upper
    */
unknown's avatar
(SCRUM)  
unknown committed
1013
    SELECT_LEX *sl;
unknown's avatar
unknown committed
1014 1015 1016 1017
    SELECT_LEX_UNIT *un;
    for (sl= current_select, un= sl->master_unit();
	 un != &unit;
	 sl= sl->outer_select(), un= sl->master_unit())
1018
    {
1019 1020
      sl->uncacheable|= cause;
      un->uncacheable|= cause;
1021
    }
1022
  }
unknown's avatar
VIEW  
unknown committed
1023 1024 1025
  TABLE_LIST *unlink_first_table(bool *link_to_local);
  void link_first_table_back(TABLE_LIST *first, bool link_to_local);
  void first_lists_tables_same();
1026 1027 1028 1029 1030
  inline void add_to_query_tables(TABLE_LIST *table)
  {
    *(table->prev_global= query_tables_last)= table;
    query_tables_last= &table->next_global;
  }
1031
  bool add_time_zone_tables_to_query_tables(THD *thd);
unknown's avatar
VIEW  
unknown committed
1032 1033 1034

  bool can_be_merged();
  bool can_use_merged();
1035
  bool can_not_use_merged();
unknown's avatar
VIEW  
unknown committed
1036
  bool only_view_structure();
unknown's avatar
unknown committed
1037
  bool need_correct_ident();
1038 1039 1040
  uint8 get_effective_with_check(st_table_list *view);
  /*
    Is this update command where 'WHITH CHECK OPTION' clause is important
1041

1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
    SYNOPSIS
      st_lex::which_check_option_applicable()

    RETURN
      TRUE   have to take 'WHITH CHECK OPTION' clause into account
      FALSE  'WHITH CHECK OPTION' clause do not need
  */
  inline bool which_check_option_applicable()
  {
    switch (sql_command) {
    case SQLCOM_UPDATE:
    case SQLCOM_UPDATE_MULTI:
    case SQLCOM_INSERT:
    case SQLCOM_INSERT_SELECT:
    case SQLCOM_LOAD:
      return TRUE;
    default:
      return FALSE;
    }
  }
1062 1063
  inline bool requires_prelocking()
  {
unknown's avatar
unknown committed
1064
    return test(query_tables_own_last);
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
  }
  inline void mark_as_requiring_prelocking(TABLE_LIST **tables_own_last)
  {
    query_tables_own_last= tables_own_last;
  }
  /* Return pointer to first not-own table in query-tables or 0 */
  TABLE_LIST* first_not_own_table()
  {
    return ( query_tables_own_last ? *query_tables_own_last : 0);
  }
1075 1076 1077 1078 1079 1080 1081 1082 1083
  void chop_off_not_own_tables()
  {
    if (query_tables_own_last)
    {
      *query_tables_own_last= 0;
      query_tables_last= query_tables_own_last;
      query_tables_own_last= 0;
    }
  }
1084
  void cleanup_after_one_table_open();
unknown's avatar
unknown committed
1085

1086
  bool push_context(Name_resolution_context *context)
unknown's avatar
unknown committed
1087
  {
1088
    return context_stack.push_front(context);
unknown's avatar
unknown committed
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
  }

  void pop_context()
  {
    context_stack.pop();
  }

  Name_resolution_context *current_context()
  {
    return context_stack.head();
  }
unknown's avatar
unknown committed
1100 1101
} LEX;

unknown's avatar
unknown committed
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
struct st_lex_local: public st_lex
{
  static void *operator new(size_t size)
  {
    return (void*) sql_alloc((uint) size);
  }
  static void *operator new(size_t size, MEM_ROOT *mem_root)
  {
    return (void*) alloc_root(mem_root, (uint) size);
  }
unknown's avatar
unknown committed
1112 1113
  static void operator delete(void *ptr,size_t size)
  { TRASH(ptr, size); }
1114 1115
  static void operator delete(void *ptr, MEM_ROOT *mem_root)
  { /* Never called */ }
unknown's avatar
unknown committed
1116
};
unknown's avatar
unknown committed
1117

unknown's avatar
unknown committed
1118 1119
extern void lex_init(void);
extern void lex_free(void);
unknown's avatar
unknown committed
1120
extern void lex_start(THD *thd, const uchar *buf, uint length);
unknown's avatar
unknown committed
1121
extern void lex_end(LEX *lex);
1122
extern int MYSQLlex(void *arg, void *yythd);
unknown's avatar
unknown committed
1123 1124 1125

extern pthread_key(LEX*,THR_LEX);

unknown's avatar
unknown committed
1126
#define current_lex (current_thd->lex)
1127 1128

#endif