sql_lex.h 21.3 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 24
   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;

25 26 27 28
/*
  The following hack is needed because mysql_yacc.cc does not define
  YYSTYPE before including this file
*/
unknown's avatar
unknown committed
29

unknown's avatar
unknown committed
30 31
#include "set_var.h"

unknown's avatar
unknown committed
32 33 34 35 36 37 38 39
#ifdef MYSQL_YACC
#define LEX_YYSTYPE void *
#else
#include "lex_symbol.h"
#include "sql_yacc.h"
#define LEX_YYSTYPE YYSTYPE *
#endif

40 41 42 43 44
/*
  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
45
enum enum_sql_command {
46 47 48 49 50
  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,
unknown's avatar
unknown committed
51
  SQLCOM_SHOW_KEYS, SQLCOM_SHOW_VARIABLES, SQLCOM_SHOW_LOGS, SQLCOM_SHOW_STATUS,
unknown's avatar
unknown committed
52
  SQLCOM_SHOW_INNODB_STATUS,
53
  SQLCOM_SHOW_PROCESSLIST, SQLCOM_SHOW_MASTER_STAT, SQLCOM_SHOW_SLAVE_STAT,
54
  SQLCOM_SHOW_GRANTS, SQLCOM_SHOW_CREATE, SQLCOM_SHOW_CHARSETS,
55
  SQLCOM_SHOW_COLLATIONS, SQLCOM_SHOW_CREATE_DB,
56

unknown's avatar
unknown committed
57
  SQLCOM_LOAD,SQLCOM_SET_OPTION,SQLCOM_LOCK_TABLES,SQLCOM_UNLOCK_TABLES,
58
  SQLCOM_GRANT,
59
  SQLCOM_CHANGE_DB, SQLCOM_CREATE_DB, SQLCOM_DROP_DB, SQLCOM_ALTER_DB,
60
  SQLCOM_REPAIR, SQLCOM_REPLACE, SQLCOM_REPLACE_SELECT,
61
  SQLCOM_CREATE_FUNCTION, SQLCOM_DROP_FUNCTION,
unknown's avatar
unknown committed
62 63
  SQLCOM_REVOKE,SQLCOM_OPTIMIZE, SQLCOM_CHECK, 
  SQLCOM_ASSIGN_TO_KEYCACHE, SQLCOM_PRELOAD_KEYS,
64
  SQLCOM_FLUSH, SQLCOM_KILL, SQLCOM_ANALYZE,
unknown's avatar
unknown committed
65 66
  SQLCOM_ROLLBACK, SQLCOM_ROLLBACK_TO_SAVEPOINT,
  SQLCOM_COMMIT, SQLCOM_SAVEPOINT,
67
  SQLCOM_SLAVE_START, SQLCOM_SLAVE_STOP,
68
  SQLCOM_BEGIN, SQLCOM_LOAD_MASTER_TABLE, SQLCOM_CHANGE_MASTER,
unknown's avatar
unknown committed
69
  SQLCOM_RENAME_TABLE, SQLCOM_BACKUP_TABLE, SQLCOM_RESTORE_TABLE,
70
  SQLCOM_RESET, SQLCOM_PURGE, SQLCOM_PURGE_BEFORE, SQLCOM_SHOW_BINLOGS,
71
  SQLCOM_SHOW_OPEN_TABLES, SQLCOM_LOAD_MASTER_DATA,
72
  SQLCOM_HA_OPEN, SQLCOM_HA_CLOSE, SQLCOM_HA_READ,
73
  SQLCOM_SHOW_SLAVE_HOSTS, SQLCOM_DELETE_MULTI, SQLCOM_UPDATE_MULTI,
unknown's avatar
unknown committed
74
  SQLCOM_SHOW_BINLOG_EVENTS, SQLCOM_SHOW_NEW_MASTER, SQLCOM_DO,
unknown's avatar
unknown committed
75
  SQLCOM_SHOW_WARNS, SQLCOM_EMPTY_QUERY, SQLCOM_SHOW_ERRORS,
unknown's avatar
unknown committed
76
  SQLCOM_SHOW_COLUMN_TYPES, SQLCOM_SHOW_STORAGE_ENGINES, SQLCOM_SHOW_PRIVILEGES,
77
  SQLCOM_HELP, SQLCOM_DROP_USER, SQLCOM_REVOKE_ALL, SQLCOM_CHECKSUM,
78 79 80

  /* This should be the last !!! */
  SQLCOM_END
unknown's avatar
unknown committed
81 82
};

unknown's avatar
unknown committed
83 84 85 86
// describe/explain types
#define DESCRIBE_NORMAL		1
#define DESCRIBE_EXTENDED	2

87

unknown's avatar
unknown committed
88 89 90 91
typedef List<Item> List_item;

typedef struct st_lex_master_info
{
92
  char *host, *user, *password, *log_file_name;
unknown's avatar
unknown committed
93 94
  uint port, connect_retry;
  ulonglong pos;
unknown's avatar
unknown committed
95
  ulong server_id;
unknown's avatar
unknown committed
96 97 98 99 100 101 102
  /* 
     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;
103
  char *relay_log_name;
104
  ulong relay_log_pos;
unknown's avatar
unknown committed
105 106
} LEX_MASTER_INFO;

107

108 109
enum sub_select_type
{
unknown's avatar
unknown committed
110 111
  UNSPECIFIED_TYPE,UNION_TYPE, INTERSECT_TYPE,
  EXCEPT_TYPE, GLOBAL_OPTIONS_TYPE, DERIVED_TABLE_TYPE, OLAP_TYPE
112 113 114 115
};

enum olap_type 
{
116
  UNSPECIFIED_OLAP_TYPE, CUBE_TYPE, ROLLUP_TYPE
117
};
118

unknown's avatar
unknown committed
119 120 121 122 123
enum tablespace_op_type
{
  NO_TABLESPACE_OP, DISCARD_TABLESPACE, IMPORT_TABLESPACE
};

unknown's avatar
unknown committed
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
/* 
  The state of the lex parsing for selects 
   
   All select describing structures linked with following pointers:
   - list of neighbors (next/prev) (prev of first element point to slave 
     pointer of upper structure)
     - one level units for unit (union) structure
     - member of one union(unit) for ordinary select_lex
   - pointer to master
     - outer select_lex for unit (union)
     - unit structure for ordinary select_lex
   - pointer to slave
     - first list element of select_lex belonged to this unit for unit
     - first unit in list of units that belong to this select_lex (as
       subselects or derived tables) for ordinary select_lex
   - list of all select_lex (for group operation like correcting list of opened
     tables)
unknown's avatar
(SCRUM)  
unknown committed
141 142 143 144 145 146
   - if unit contain several selects (union) then it have special 
     select_lex called fake_select_lex. It used for storing global parameters
     and executing union. subqueries of global ORDER BY clause will be
     attached to this fake_select_lex, which will allow them correctly
     resolve fields of 'upper' union and other more outer selects. 

unknown's avatar
unknown committed
147
   for example for following query:
148

unknown's avatar
unknown committed
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
   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:


     main unit
unknown's avatar
(SCRUM)  
unknown committed
167
     fake0
unknown's avatar
unknown committed
168 169 170 171 172 173 174 175
     select1 select2 select3
     |^^     |^
    s|||     ||master
    l|||     |+---------------------------------+
    a|||     +---------------------------------+|
    v|||master                         slave   ||
    e||+-------------------------+             ||
     V|            neighbor      |             V|
unknown's avatar
(SCRUM)  
unknown committed
176 177
     unit1.1<+==================>unit1.2       unit2.1
     fake1.1                                   fake2.1
unknown's avatar
unknown committed
178 179 180 181 182 183 184 185 186 187 188
     select1.1.1 select 1.1.2    select1.2.1   select2.1.1 select2.1.2
                                               |^
                                               ||
                                               V|
                                               unit2.1.1.1
                                               select2.1.1.1.1


   relation in main unit will be following:
                          
         main unit
unknown's avatar
(SCRUM)  
unknown committed
189 190 191 192 193 194 195 196
         |^^^^|fake_select_lex
         |||||+--------------------------------------------+
         ||||+--------------------------------------------+|
         |||+------------------------------+              ||
         ||+--------------+                |              ||
    slave||master         |                |              ||
         V|      neighbor |       neighbor |        master|V
         select1<========>select2<========>select3        fake0
unknown's avatar
unknown committed
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212

    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
213
struct st_lex;
214 215
class st_select_lex;
class st_select_lex_unit;
216 217
class st_select_lex_node {
protected:
unknown's avatar
unknown committed
218 219 220
  st_select_lex_node *next, **prev,   /* neighbor list */
    *master, *slave,                  /* vertical links */
    *link_next, **link_prev;          /* list of whole SELECT_LEX */
221
public:
unknown's avatar
unknown committed
222 223 224 225 226 227 228
  enum enum_parsing_place
  {
    NO_MATTER,
    IN_HAVING,
    SELECT_LIST
  };

229
  ulong options;
230 231 232 233
  /*
    result of this query can't be cached, bit field, can be :
      UNCACHEABLE_DEPENDENT
      UNCACHEABLE_RAND
234
      UNCACHEABLE_SIDEEFFECT
235
      UNCACHEABLE_EXPLAIN
236 237
  */
  uint8 uncacheable;
238
  enum sub_select_type linkage;
unknown's avatar
unknown committed
239
  bool no_table_names_allowed; /* used for global order by */
240
  bool no_error; /* suppress error message (convert it to warnings) */
241 242 243

  static void *operator new(size_t size)
  {
244
    return (void*) sql_alloc((uint) size);
245
  }
unknown's avatar
unknown committed
246 247
  static void *operator new(size_t size, MEM_ROOT *mem_root)
  { return (void*) alloc_root(mem_root, (uint) size); }
248
  static void operator delete(void *ptr,size_t size) {}
249
  st_select_lex_node(): linkage(UNSPECIFIED_TYPE) {}
250 251 252 253
  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
254 255
  void include_down(st_select_lex_node *upper);
  void include_neighbour(st_select_lex_node *before);
unknown's avatar
(SCRUM)  
unknown committed
256
  void include_standalone(st_select_lex_node *sel, st_select_lex_node **ref);
unknown's avatar
unknown committed
257 258
  void include_global(st_select_lex_node **plink);
  void exclude();
259 260 261

  virtual st_select_lex_unit* master_unit()= 0;
  virtual st_select_lex* outer_select()= 0;
unknown's avatar
(SCRUM)  
unknown committed
262
  virtual st_select_lex* return_after_parsing()= 0;
263 264 265 266 267 268 269 270

  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
271
  virtual ulong get_table_join_options();
unknown's avatar
unknown committed
272
  virtual TABLE_LIST *add_table_to_list(THD *thd, Table_ident *table,
273
					LEX_STRING *alias,
unknown's avatar
unknown committed
274
					ulong table_options,
275 276
					thr_lock_type flags= TL_UNLOCK,
					List<String> *use_index= 0,
unknown's avatar
unknown committed
277 278
					List<String> *ignore_index= 0,
                                        LEX_STRING *option= 0);
unknown's avatar
unknown committed
279
  virtual void set_lock_for_tables(thr_lock_type lock_type) {}
unknown's avatar
unknown committed
280

unknown's avatar
unknown committed
281
  friend class st_select_lex_unit;
unknown's avatar
unknown committed
282
  friend bool mysql_new_select(struct st_lex *lex, bool move_down);
unknown's avatar
unknown committed
283 284 285
private:
  void fast_exclude();
};
286
typedef class st_select_lex_node SELECT_LEX_NODE;
unknown's avatar
unknown committed
287 288 289 290 291

/* 
   SELECT_LEX_UNIT - unit of selects (UNION, INTERSECT, ...) group 
   SELECT_LEXs
*/
292
struct st_lex;
unknown's avatar
unknown committed
293 294 295 296
class THD;
class select_result;
class JOIN;
class select_union;
297
class st_select_lex_unit: public st_select_lex_node {
unknown's avatar
unknown committed
298 299 300 301
protected:
  TABLE_LIST result_table_list;
  select_union *union_result;
  TABLE *table; /* temporary table using for appending UNION results */
302

unknown's avatar
unknown committed
303 304
  select_result *result;
  int res;
unknown's avatar
unknown committed
305
  ulong found_rows_for_union;
unknown's avatar
unknown committed
306
  bool  prepared, // prepare phase already performed for UNION (unit)
unknown's avatar
unknown committed
307
    optimized, // optimize phase already performed for UNION (unit)
308 309
    executed, // already executed
    cleaned;
310

311
public:
312 313
  // list of fields which points to temporary table for union
  List<Item> item_list;
unknown's avatar
unknown committed
314 315 316 317 318 319 320
  /*
    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
  */
321
  List<Item> types;
unknown's avatar
unknown committed
322 323 324 325
  /*
    Pointer to 'last' select or pointer to unit where stored
    global parameters for union
  */
unknown's avatar
(SCRUM)  
unknown committed
326
  st_select_lex *global_parameters;
327
  //node on wich we should return current_select pointer after parsing subquery
unknown's avatar
(SCRUM)  
unknown committed
328
  st_select_lex *return_to;
unknown's avatar
unknown committed
329 330
  /* LIMIT clause runtime counters */
  ha_rows select_limit_cnt, offset_limit_cnt;
331
  /* not NULL if unit used in subselect, point to subselect item */
unknown's avatar
unknown committed
332
  Item_subselect *item;
unknown's avatar
(SCRUM)  
unknown committed
333
  /* thread handler */
334
  THD *thd;
unknown's avatar
unknown committed
335 336 337 338
  /*
    SELECT_LEX for hidden SELECT in onion which process global
    ORDER BY and LIMIT
  */
unknown's avatar
(SCRUM)  
unknown committed
339
  st_select_lex *fake_select_lex;
340

341
  st_select_lex *union_distinct; /* pointer to the last UNION DISTINCT */
342
  bool describe; /* union exec() called for EXPLAIN */
unknown's avatar
unknown committed
343

unknown's avatar
unknown committed
344
  void init_query();
345
  bool create_total_list(THD *thd, st_lex *lex, TABLE_LIST **result);
346 347
  st_select_lex_unit* master_unit();
  st_select_lex* outer_select();
348 349 350 351
  st_select_lex* first_select()
  {
    return my_reinterpret_cast(st_select_lex*)(slave);
  }
352 353
  st_select_lex* first_select_in_union() 
  { 
354 355 356 357 358
    return my_reinterpret_cast(st_select_lex*)(slave);
  }
  st_select_lex_unit* next_unit()
  {
    return my_reinterpret_cast(st_select_lex_unit*)(next);
359
  }
unknown's avatar
(SCRUM)  
unknown committed
360
  st_select_lex* return_after_parsing() { return return_to; }
unknown's avatar
unknown committed
361
  void exclude_level();
362
  void exclude_tree();
363

unknown's avatar
unknown committed
364
  /* UNION methods */
365
  int prepare(THD *thd, select_result *result, ulong additional_options);
unknown's avatar
unknown committed
366 367
  int exec();
  int cleanup();
368
  inline void unclean() { cleaned= 0; }
unknown's avatar
unknown committed
369
  void reinit_exec_mechanism();
unknown's avatar
unknown committed
370

371
  bool check_updateable(char *db, char *table);
unknown's avatar
unknown committed
372
  void print(String *str);
373 374

  ulong init_prepare_fake_select_lex(THD *thd);
375
  int change_result(select_subselect *result, select_subselect *old_result);
unknown's avatar
unknown committed
376

377
  friend void mysql_init_query(THD *thd);
378
  friend int subselect_union_engine::exec();
379 380
private:
  bool create_total_list_n_last_return(THD *thd, st_lex *lex,
381
				       TABLE_LIST ***result);
unknown's avatar
unknown committed
382
};
unknown's avatar
cleanup  
unknown committed
383
typedef class st_select_lex_unit SELECT_LEX_UNIT;
unknown's avatar
unknown committed
384 385 386 387

/*
  SELECT_LEX - store information of parsed SELECT_LEX statment
*/
388 389
class st_select_lex: public st_select_lex_node
{
390
public:
unknown's avatar
unknown committed
391 392
  char *db, *db1, *table1, *db2, *table2;      	/* For outer join using .. */
  Item *where, *having;                         /* WHERE & HAVING clauses */
393
  Item *prep_where; /* saved WHERE clause for prepared statement processing */
394
  enum olap_type olap;
unknown's avatar
unknown committed
395 396 397
  SQL_LIST	      table_list, group_list;   /* FROM & GROUP BY clauses */
  List<Item>          item_list; /* list of fields & expressions */
  List<String>        interval_list, use_index, *use_index_ptr,
unknown's avatar
unknown committed
398
		      ignore_index, *ignore_index_ptr;
unknown's avatar
unknown committed
399 400 401 402 403 404
  /* 
    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
405
  JOIN *join; /* after JOIN::prepare it is pointer to corresponding JOIN */
unknown's avatar
unknown committed
406
  const char *type; /* type of select for EXPLAIN */
unknown's avatar
(SCRUM)  
unknown committed
407 408 409 410

  SQL_LIST order_list;                /* ORDER clause */
  List<List_item>     expr_list;
  List<List_item>     when_list;      /* WHEN clause (expression) */
unknown's avatar
unknown committed
411
  SQL_LIST *gorder_list;
unknown's avatar
(SCRUM)  
unknown committed
412 413 414 415
  ha_rows select_limit, offset_limit; /* LIMIT clause parameters */
  // Arrays of pointers to top elements of all_fields list
  Item **ref_pointer_array;

unknown's avatar
merge  
unknown committed
416 417 418 419 420 421
  /*
    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
422 423 424 425
  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 */

unknown's avatar
unknown committed
426
  ulong table_join_options;
427
  uint in_sum_expr;
unknown's avatar
unknown committed
428
  uint select_number; /* number of select (used for EXPLAIN) */
429
  uint with_wild; /* item list contain '*' */
unknown's avatar
unknown committed
430 431 432
  bool  braces;   	/* SELECT ... UNION (SELECT ... ) <- this braces */
  /* TRUE when having fix field called in processing of this SELECT */
  bool having_fix_field;
433 434
  /* explicit LIMIT clause was used */
  bool explicit_limit;
435

436
  /* 
437 438 439 440 441 442 443 444 445 446
     SELECT for SELECT command st_select_lex. Used to privent scaning
     item_list of non-SELECT st_select_lex (no sense find to finding
     reference in it (all should be in tables, it is dangerouse due
     to order of fix_fields calling for non-SELECTs commands (item list
     can be not fix_fieldsd)). This value will be assigned for
     primary select (sql_yac.yy) and for any subquery and
     UNION SELECT (sql_parse.cc mysql_new_select())


     INSERT for primary st_select_lex structure of simple INSERT/REPLACE
447 448 449 450
     (used for name resolution, see Item_fiels & Item_ref fix_fields,
     FALSE for INSERT/REPLACE ... SELECT, because it's
     st_select_lex->table_list will be preprocessed (first table removed)
     before passing to handle_select)
451 452

     NOMATTER for other
453
  */
454 455
  enum {NOMATTER_MODE, SELECT_MODE, INSERT_MODE} resolve_mode;

unknown's avatar
unknown committed
456

unknown's avatar
unknown committed
457 458
  void init_query();
  void init_select();
459
  st_select_lex_unit* master_unit();
460 461 462 463
  st_select_lex_unit* first_inner_unit() 
  { 
    return (st_select_lex_unit*) slave; 
  }
464
  st_select_lex* outer_select();
unknown's avatar
unknown committed
465
  st_select_lex* next_select() { return (st_select_lex*) next; }
466
  st_select_lex* next_select_in_list() 
467 468 469 470 471 472 473
  {
    return (st_select_lex*) link_next;
  }
  st_select_lex_node** next_select_in_list_addr()
  {
    return &link_next;
  }
unknown's avatar
(SCRUM)  
unknown committed
474
  st_select_lex* return_after_parsing()
475 476 477
  {
    return master_unit()->return_after_parsing();
  }
478

unknown's avatar
(SCRUM)  
unknown committed
479 480
  void mark_as_dependent(st_select_lex *last);

481 482 483
  bool set_braces(bool value);
  bool inc_in_sum_expr();
  uint get_in_sum_expr();
unknown's avatar
unknown committed
484

unknown's avatar
unknown committed
485 486
  bool add_item_to_list(THD *thd, Item *item);
  bool add_group_to_list(THD *thd, Item *item, bool asc);
487
  bool add_ftfunc_to_list(Item_func_match *func);
unknown's avatar
(SCRUM)  
unknown committed
488
  bool add_order_to_list(THD *thd, Item *item, bool asc);
unknown's avatar
unknown committed
489
  TABLE_LIST* add_table_to_list(THD *thd, Table_ident *table,
490
				LEX_STRING *alias,
unknown's avatar
unknown committed
491
				ulong table_options,
492 493
				thr_lock_type flags= TL_UNLOCK,
				List<String> *use_index= 0,
494 495
				List<String> *ignore_index= 0,
                                LEX_STRING *option= 0);
unknown's avatar
(SCRUM)  
unknown committed
496 497 498 499 500
  TABLE_LIST* get_table_list();
  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
501
  void set_lock_for_tables(thr_lock_type lock_type);
unknown's avatar
unknown committed
502 503 504 505 506 507
  inline void init_order()
  {
    order_list.elements= 0;
    order_list.first= 0;
    order_list.next= (byte**) &order_list.first;
  }
508
  
unknown's avatar
(SCRUM)  
unknown committed
509 510
  bool test_limit();

511
  friend void mysql_init_query(THD *thd);
unknown's avatar
(SCRUM)  
unknown committed
512 513
  st_select_lex() {}
  void make_empty_select()
514 515 516 517
  {
    init_query();
    init_select();
  }
unknown's avatar
unknown committed
518
  bool setup_ref_array(THD *thd, uint order_group_num);
519
  bool check_updateable(char *db, char *table);
unknown's avatar
unknown committed
520 521 522
  void print(THD *thd, String *str);
  static void print_order(String *str, ORDER *order);
  void print_limit(THD *thd, String *str);
unknown's avatar
unknown committed
523
};
unknown's avatar
cleanup  
unknown committed
524
typedef class st_select_lex SELECT_LEX;
525

526 527 528 529 530 531 532 533
#define ALTER_ADD_COLUMN	1
#define ALTER_DROP_COLUMN	2
#define ALTER_CHANGE_COLUMN	4
#define ALTER_ADD_INDEX		8
#define ALTER_DROP_INDEX	16
#define ALTER_RENAME		32
#define ALTER_ORDER		64
#define ALTER_OPTIONS		128
534

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

537 538
typedef struct st_lex
{
unknown's avatar
unknown committed
539 540
  uint	 yylineno,yytoklen;			/* Simulate lex */
  LEX_YYSTYPE yylval;
unknown's avatar
unknown committed
541
  SELECT_LEX_UNIT unit;                         /* most upper unit */
542 543
  SELECT_LEX select_lex;                        /* first SELECT_LEX */
  /* current SELECT_LEX in parsing */
unknown's avatar
(SCRUM)  
unknown committed
544
  SELECT_LEX *current_select;
545 546
  /* list of all SELECT_LEX */
  SELECT_LEX *all_selects_list;
unknown's avatar
unknown committed
547 548
  uchar *ptr,*tok_start,*tok_end,*end_of_query;
  char *length,*dec,*change,*name;
unknown's avatar
unknown committed
549
  char *help_arg;
550
  char *backup_dir;				/* For RESTORE/BACKUP */
unknown's avatar
unknown committed
551
  char* to_log;                                 /* For PURGE MASTER LOGS TO */
552
  time_t purge_time;                            /* For PURGE MASTER LOGS BEFORE */
553
  char* x509_subject,*x509_issuer,*ssl_cipher;
554
  char* found_colon;                            /* For multi queries - next query */
unknown's avatar
unknown committed
555 556
  String *wild;
  sql_exchange *exchange;
unknown's avatar
unknown committed
557
  select_result *result;
558
  Item *default_value, *on_update_value;
559
  LEX_STRING *comment, name_and_length;
unknown's avatar
unknown committed
560 561 562 563
  LEX_USER *grant_user;
  gptr yacc_yyss,yacc_yyvs;
  THD *thd;
  CHARSET_INFO *charset;
unknown's avatar
unknown committed
564 565

  List<key_part_spec> col_list;
566
  List<key_part_spec> ref_list;
unknown's avatar
unknown committed
567 568
  List<Alter_drop>    drop_list;
  List<Alter_column>  alter_list;
569
  List<String>	      interval_list;
unknown's avatar
unknown committed
570
  List<LEX_USER>      users_list;
unknown's avatar
unknown committed
571 572 573
  List<LEX_COLUMN>    columns;
  List<Key>	      key_list;
  List<create_field>  create_list;
574 575
  List<Item>	      *insert_list,field_list,value_list;
  List<List_item>     many_values;
unknown's avatar
unknown committed
576
  List<set_var_base>  var_list;
577
  List<Item_param>    param_list;
578
  SQL_LIST	      proc_list, auxilliary_table_list, save_list;
unknown's avatar
unknown committed
579 580
  TYPELIB	      *interval;
  create_field	      *last_field;
unknown's avatar
unknown committed
581
  char		      *savepoint_name;		// Transaction savepoint id
unknown's avatar
unknown committed
582
  udf_func udf;
583 584
  HA_CHECK_OPT   check_opt;			// check/repair options
  HA_CREATE_INFO create_info;
unknown's avatar
unknown committed
585
  LEX_MASTER_INFO mi;				// used by CHANGE MASTER
586
  USER_RESOURCES mqh;
587 588
  ulong thread_id,type;
  enum_sql_command sql_command;
589
  thr_lock_type lock_option;
unknown's avatar
unknown committed
590
  enum SSL_type ssl_type;			/* defined in violite.h */
591
  enum my_lex_states next_state;
592
  enum enum_duplicates duplicates;
unknown's avatar
unknown committed
593
  enum enum_tx_isolation tx_isolation;
594 595
  enum enum_ha_read_modes ha_read_mode;
  enum ha_rkey_function ha_rkey_mode;
596
  enum enum_enable_or_disable alter_keys_onoff;
unknown's avatar
unknown committed
597
  enum enum_var_type option_type;
unknown's avatar
unknown committed
598
  enum tablespace_op_type tablespace_op;
unknown's avatar
unknown committed
599
  uint uint_geom_type;
unknown's avatar
unknown committed
600
  uint grant, grant_tot_col, which_columns;
601
  uint fk_delete_opt, fk_update_opt, fk_match_option;
unknown's avatar
unknown committed
602
  uint slave_thd_opt;
603
  uint alter_flags;
unknown's avatar
unknown committed
604
  uint8 describe;
605
  bool drop_if_exists, drop_temporary, local_file;
606
  bool in_comment, ignore_space, verbose, simple_alter, no_write_to_binlog;
unknown's avatar
unknown committed
607
  bool derived_tables;
608
  bool safe_to_cache_query;
609
  st_lex() {}
610
  inline void uncacheable(uint8 cause)
611 612
  {
    safe_to_cache_query= 0;
613 614 615 616 617 618

    /*
      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
619
    SELECT_LEX *sl;
unknown's avatar
unknown committed
620 621 622 623
    SELECT_LEX_UNIT *un;
    for (sl= current_select, un= sl->master_unit();
	 un != &unit;
	 sl= sl->outer_select(), un= sl->master_unit())
624
    {
625 626
      sl->uncacheable|= cause;
      un->uncacheable|= cause;
627
    }
628
  }
629 630 631 632 633 634
  TABLE_LIST *unlink_first_table(TABLE_LIST *tables,
				 TABLE_LIST **global_first,
				 TABLE_LIST **local_first);
  TABLE_LIST *link_first_table_back(TABLE_LIST *tables,
				    TABLE_LIST *global_first,
				    TABLE_LIST *local_first);
unknown's avatar
unknown committed
635 636 637 638 639 640 641 642 643 644 645 646
} LEX;


void lex_init(void);
void lex_free(void);
LEX *lex_start(THD *thd, uchar *buf,uint length);
void lex_end(LEX *lex);

extern pthread_key(LEX*,THR_LEX);

extern LEX_STRING tmp_table_alias;

647
#define current_lex (current_thd->lex)