sql_class.h 58.3 KB
Newer Older
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com 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.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com 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.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

bk@work.mysql.com's avatar
bk@work.mysql.com 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 */


/* Classes in mysql */

#ifdef __GNUC__
#pragma interface			/* gcc class implementation */
#endif

24 25
// TODO: create log.h and move all the log header stuff there

bk@work.mysql.com's avatar
bk@work.mysql.com committed
26 27
class Query_log_event;
class Load_log_event;
28
class Slave_log_event;
29
class Format_description_log_event;
30
class sp_rcontext;
31
class sp_cache;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
32

33
enum enum_enable_or_disable { LEAVE_AS_IS, ENABLE, DISABLE };
34
enum enum_ha_read_modes { RFIRST, RNEXT, RPREV, RLAST, RKEY, RNEXT_SAME };
35
enum enum_duplicates { DUP_ERROR, DUP_REPLACE, DUP_UPDATE };
36
enum enum_log_type { LOG_CLOSED, LOG_TO_BE_OPENED, LOG_NORMAL, LOG_NEW, LOG_BIN};
37 38
enum enum_delay_key_write { DELAY_KEY_WRITE_NONE, DELAY_KEY_WRITE_ON,
			    DELAY_KEY_WRITE_ALL };
bk@work.mysql.com's avatar
bk@work.mysql.com committed
39

40 41 42
enum enum_check_fields { CHECK_FIELD_IGNORE, CHECK_FIELD_WARN,
			 CHECK_FIELD_ERROR_FOR_NULL };

43
extern char internal_table_name[2];
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
44
extern const char **errmesg;
45

46 47
#define TC_LOG_PAGE_SIZE   8192
#define TC_LOG_MIN_SIZE    (3*TC_LOG_PAGE_SIZE)
48
extern ulong opt_tc_log_size;
49 50 51
extern ulong tc_log_max_pages_used;
extern ulong tc_log_page_size;
extern ulong tc_log_page_waits;
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82

#define TC_HEURISTIC_RECOVER_COMMIT   1
#define TC_HEURISTIC_RECOVER_ROLLBACK 2
extern uint tc_heuristic_recover;

/*
  Transaction Coordinator log - a base abstract class
  for two different implementations
*/
class TC_LOG
{
  public:
  int using_heuristic_recover();
  TC_LOG() {}
  virtual ~TC_LOG() {}

  virtual int open(const char *opt_name)=0;
  virtual void close()=0;
  virtual int log(THD *thd, my_xid xid)=0;
  virtual void unlog(ulong cookie, my_xid xid)=0;
};

class TC_LOG_DUMMY: public TC_LOG // use it to disable the logging
{
  public:
  int open(const char *opt_name)        { return 0; }
  void close()                          { }
  int log(THD *thd, my_xid xid)         { return 1; }
  void unlog(ulong cookie, my_xid xid)  { }
};

serg@serg.mylan's avatar
serg@serg.mylan committed
83
#ifdef HAVE_MMAP
84 85
class TC_LOG_MMAP: public TC_LOG
{
86
  public:                // only to keep Sun Forte on sol9x86 happy
87 88 89 90 91 92
  typedef enum {
    POOL,                 // page is in pool
    ERROR,                // last sync failed
    DIRTY                 // new xids added since last sync
  } PAGE_STATE;

93
  private:
94 95 96 97 98 99 100 101 102 103 104 105 106
  typedef struct st_page {
    struct st_page *next; // page a linked in a fifo queue
    my_xid *start, *end;  // usable area of a page
    my_xid *ptr;          // next xid will be written here
    int size, free;       // max and current number of free xid slots on the page
    int waiters;          // number of waiters on condition
    PAGE_STATE state;     // see above
    pthread_mutex_t lock; // to access page data or control structure
    pthread_cond_t  cond; // to wait for a sync
  } PAGE;

  char logname[FN_REFLEN];
  File fd;
serg@serg.mylan's avatar
serg@serg.mylan committed
107 108
  my_off_t file_length;
  uint npages, inited;
109
  uchar *data;
110 111 112 113 114 115 116
  struct st_page *pages, *syncing, *active, *pool, *pool_last;
  /*
    note that, e.g. LOCK_active is only used to protect
    'active' pointer, to protect the content of the active page
    one has to use active->lock.
    Same for LOCK_pool and LOCK_sync
  */
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
  pthread_mutex_t LOCK_active, LOCK_pool, LOCK_sync;
  pthread_cond_t COND_pool, COND_active;

  public:
  TC_LOG_MMAP(): inited(0) {}
  int open(const char *opt_name);
  void close();
  int log(THD *thd, my_xid xid);
  void unlog(ulong cookie, my_xid xid);
  int recover();

  private:
  void get_active_from_pool();
  int sync();
  int overflow();
};
serg@serg.mylan's avatar
serg@serg.mylan committed
133 134 135
#else
#define TC_LOG_MMAP TC_LOG_DUMMY
#endif
136 137 138 139 140

extern TC_LOG *tc_log;
extern TC_LOG_MMAP tc_log_mmap;
extern TC_LOG_DUMMY tc_log_dummy;

141
/* log info errors */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
142 143 144 145
#define LOG_INFO_EOF -1
#define LOG_INFO_IO  -2
#define LOG_INFO_INVALID -3
#define LOG_INFO_SEEK -4
146 147 148
#define LOG_INFO_MEM -6
#define LOG_INFO_FATAL -7
#define LOG_INFO_IN_USE -8
bk@work.mysql.com's avatar
bk@work.mysql.com committed
149

150 151 152 153 154
/* bitmap to SQL_LOG::close() */
#define LOG_CLOSE_INDEX		1
#define LOG_CLOSE_TO_BE_OPENED	2
#define LOG_CLOSE_STOP_EVENT	4

155 156
struct st_relay_log_info;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
157 158 159
typedef struct st_log_info
{
  char log_file_name[FN_REFLEN];
160
  my_off_t index_file_offset, index_file_start_offset;
161 162 163
  my_off_t pos;
  bool fatal; // if the purge happens to give us a negative offset
  pthread_mutex_t lock;
164
  st_log_info():fatal(0) { pthread_mutex_init(&lock, MY_MUTEX_INIT_FAST);}
165
  ~st_log_info() { pthread_mutex_destroy(&lock);}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
166 167
} LOG_INFO;

168 169 170 171 172 173 174 175 176
typedef struct st_user_var_events
{
  user_var_entry *user_var_event;
  char *value;
  ulong length;
  Item_result type;
  uint charset_number;
} BINLOG_USER_VAR_EVENT;

177 178 179
#define RP_LOCK_LOG_IS_ALREADY_LOCKED 1
#define RP_FORCE_ROTATE               2

monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
180
class Log_event;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
181

182 183 184 185 186 187 188 189 190 191 192 193
/*
  TODO split MYSQL_LOG into base MYSQL_LOG and
  MYSQL_QUERY_LOG, MYSQL_SLOW_LOG, MYSQL_BIN_LOG
  most of the code from MYSQL_LOG should be in the MYSQL_BIN_LOG
  only (TC_LOG included)

  TODO use mmap instead of IO_CACHE for binlog
  (mmap+fsync is two times faster than write+fsync)
*/

class MYSQL_LOG: public TC_LOG
{
bk@work.mysql.com's avatar
bk@work.mysql.com committed
194
 private:
195
  /* LOCK_log and LOCK_index are inited by init_pthread_objects() */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
196
  pthread_mutex_t LOCK_log, LOCK_index;
197 198
  pthread_cond_t update_cond;
  ulonglong bytes_written;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
199
  time_t last_time,query_start;
200
  IO_CACHE log_file;
201
  IO_CACHE index_file;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
202 203 204
  char *name;
  char time_buff[20],db[NAME_LEN+1];
  char log_file_name[FN_REFLEN],index_file_name[FN_REFLEN];
205 206 207
  // current file sequence number for load data infile binary logging
  uint file_id;
  uint open_count;				// For replication
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
208 209
  volatile enum_log_type log_type;
  enum cache_type io_cache_type;
210
  bool write_error, inited;
211
  bool need_start_event;
212 213 214 215 216 217 218
  /*
    no_auto_events means we don't want any of these automatic events :
    Start/Rotate/Stop. That is, in 4.x when we rotate a relay log, we don't want
    a Rotate_log event to be written to the relay log. When we start a relay log
    etc. So in 4.x this is 1 for relay logs, 0 for binlogs.
    In 5.0 it's 0 for relay logs too!
  */
219 220
  bool no_auto_events;
  /*
221 222 223 224 225 226 227
     The max size before rotation (usable only if log_type == LOG_BIN: binary
     logs and relay logs).
     For a binlog, max_size should be max_binlog_size.
     For a relay log, it should be max_relay_log_size if this is non-zero,
     max_binlog_size otherwise.
     max_size is set in init(), and dynamically changed (when one does SET
     GLOBAL MAX_BINLOG_SIZE|MAX_RELAY_LOG_SIZE) by fix_max_binlog_size and
228
     fix_max_relay_log_size).
229 230
  */
  ulong max_size;
231 232 233 234

  ulong prepared_xids; /* for tc log - number of xids to remember */
  pthread_mutex_t LOCK_prep_xids;
  pthread_cond_t  COND_prep_xids;
235 236
  friend class Log_event;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
237 238
public:
  MYSQL_LOG();
239 240 241 242 243
  /*
    note that there's no destructor ~MYSQL_LOG() !
    The reason is that we don't want it to be automatically called
    on exit() - but only during the correct shutdown process
  */
244

245 246 247 248 249 250 251
  int open(const char *opt_name);
  void close();
  int log(THD *thd, my_xid xid);
  void unlog(ulong cookie, my_xid xid);
  int recover(IO_CACHE *log, Format_description_log_event *fdle);

  /*
252 253 254 255 256 257 258 259 260 261
     These describe the log's format. This is used only for relay logs.
     _for_exec is used by the SQL thread, _for_queue by the I/O thread. It's
     necessary to have 2 distinct objects, because the I/O thread may be reading
     events in a different format from what the SQL thread is reading (consider
     the case of a master which has been upgraded from 5.0 to 5.1 without doing
     RESET MASTER, or from 4.x to 5.0).
  */
  Format_description_log_event *description_event_for_exec,
    *description_event_for_queue;

262
  void reset_bytes_written()
263 264 265
  {
    bytes_written = 0;
  }
266
  void harvest_bytes_written(ulonglong* counter)
267
  {
268
#ifndef DBUG_OFF
269
    char buf1[22],buf2[22];
270
#endif
271 272 273 274 275 276 277
    DBUG_ENTER("harvest_bytes_written");
    (*counter)+=bytes_written;
    DBUG_PRINT("info",("counter: %s  bytes_written: %s", llstr(*counter,buf1),
		       llstr(bytes_written,buf2)));
    bytes_written=0;
    DBUG_VOID_RETURN;
  }
278
  void set_max_size(ulong max_size_arg);
monty@mysql.com's avatar
monty@mysql.com committed
279
  void signal_update();
280
  void wait_for_update(THD* thd, bool master_or_slave);
281 282
  void set_need_start_event() { need_start_event = 1; }
  void init(enum_log_type log_type_arg,
283 284
	    enum cache_type io_cache_type_arg,
	    bool no_auto_events_arg, ulong max_size);
guilhem@mysql.com's avatar
guilhem@mysql.com committed
285
  void init_pthread_objects();
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
286
  void cleanup();
287 288 289
  bool open(const char *log_name,
            enum_log_type log_type,
            const char *new_name,
290
	    enum cache_type io_cache_type_arg,
291 292
	    bool no_auto_events_arg, ulong max_size,
            bool null_created);
293 294 295 296 297 298 299
  const char *generate_name(const char *log_name, const char *suffix,
                            bool strip_ext, char *buff);
  /* simplified open_xxx wrappers for the gigantic open above */
  bool open_query_log(const char *log_name)
  {
    char buf[FN_REFLEN];
    return open(generate_name(log_name, ".log", 0, buf),
300
                LOG_NORMAL, 0, WRITE_CACHE, 0, 0, 0);
301 302 303 304 305
  }
  bool open_slow_log(const char *log_name)
  {
    char buf[FN_REFLEN];
    return open(generate_name(log_name, "-slow.log", 0, buf),
306
                LOG_NORMAL, 0, WRITE_CACHE, 0, 0, 0);
307 308 309
  }
  bool open_index_file(const char *index_file_name_arg,
                       const char *log_name);
310
  void new_file(bool need_lock);
311 312
  bool write(THD *thd, enum enum_server_command command,
	     const char *format,...);
313
  bool write(THD *thd, const char *query, uint query_length,
314
	     time_t query_start=0);
315
  bool write(Log_event* event_info); // binary log write
316
  bool write(THD *thd, IO_CACHE *cache, Log_event *commit_event);
317

318 319 320 321
  /*
    v stands for vector
    invoked as appendv(buf1,len1,buf2,len2,...,bufn,lenn,0)
  */
322
  bool appendv(const char* buf,uint len,...);
323
  bool append(Log_event* ev);
324

bk@work.mysql.com's avatar
bk@work.mysql.com committed
325 326 327
  int generate_new_name(char *new_name,const char *old_name);
  void make_log_name(char* buf, const char* log_ident);
  bool is_active(const char* log_file_name);
328
  int update_log_index(LOG_INFO* linfo, bool need_update_threads);
329
  void rotate_and_purge(uint flags);
330
  int purge_logs(const char *to_log, bool included,
331 332 333
                 bool need_mutex, bool need_update_threads,
                 ulonglong *decrease_log_space);
  int purge_logs_before_date(time_t purge_time);
334
  int purge_first_log(struct st_relay_log_info* rli, bool included);
335
  bool reset_logs(THD* thd);
336
  void close(uint exiting);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
337 338

  // iterating through the log index file
339
  int find_log_pos(LOG_INFO* linfo, const char* log_name,
340 341
		   bool need_mutex);
  int find_next_log(LOG_INFO* linfo, bool need_mutex);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
342
  int get_current_log(LOG_INFO* linfo);
343
  uint next_file_id();
344
  inline bool is_open() { return log_type != LOG_CLOSED; }
345 346
  inline char* get_index_fname() { return index_file_name;}
  inline char* get_log_fname() { return log_file_name; }
347
  inline char* get_name() { return name; }
348 349 350 351 352
  inline pthread_mutex_t* get_log_lock() { return &LOCK_log; }
  inline IO_CACHE* get_log_file() { return &log_file; }

  inline void lock_index() { pthread_mutex_lock(&LOCK_index);}
  inline void unlock_index() { pthread_mutex_unlock(&LOCK_index);}
353
  inline IO_CACHE *get_index_file() { return &index_file;}
354
  inline uint32 get_open_count() { return open_count; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
355 356 357 358 359 360 361 362
};

/* character conversion tables */


typedef struct st_copy_info {
  ha_rows records;
  ha_rows deleted;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
363
  ha_rows updated;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
364
  ha_rows copied;
365
  ha_rows error_count;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
366
  enum enum_duplicates handle_duplicates;
367
  int escape_char, last_errno;
368 369
  bool ignore;
  /* for INSERT ... UPDATE */
370 371
  List<Item> *update_fields;
  List<Item> *update_values;
monty@mysql.com's avatar
monty@mysql.com committed
372
  /* for VIEW ... WITH CHECK OPTION */
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
373
  TABLE_LIST *view;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
374 375 376 377 378 379 380 381
} COPY_INFO;


class key_part_spec :public Sql_alloc {
public:
  const char *field_name;
  uint length;
  key_part_spec(const char *name,uint len=0) :field_name(name), length(len) {}
382
  bool operator==(const key_part_spec& other) const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
};


class Alter_drop :public Sql_alloc {
public:
  enum drop_type {KEY, COLUMN };
  const char *name;
  enum drop_type type;
  Alter_drop(enum drop_type par_type,const char *par_name)
    :name(par_name), type(par_type) {}
};


class Alter_column :public Sql_alloc {
public:
  const char *name;
  Item *def;
  Alter_column(const char *par_name,Item *literal)
    :name(par_name), def(literal) {}
};


class Key :public Sql_alloc {
public:
407
  enum Keytype { PRIMARY, UNIQUE, MULTIPLE, FULLTEXT, SPATIAL, FOREIGN_KEY};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
408
  enum Keytype type;
409
  enum ha_key_alg algorithm;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
410
  List<key_part_spec> columns;
411
  const char *name;
412
  bool generated;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
413

414
  Key(enum Keytype type_par, const char *name_arg, enum ha_key_alg alg_par,
415 416 417
      bool generated_arg, List<key_part_spec> &cols)
    :type(type_par), algorithm(alg_par), columns(cols), name(name_arg),
    generated(generated_arg)
418
  {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
419
  ~Key() {}
420
  /* Equality comparison of keys (ignoring name) */
421
  friend bool foreign_key_prefix(Key *a, Key *b);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
422 423
};

424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
class Table_ident;

class foreign_key: public Key {
public:
  enum fk_match_opt { FK_MATCH_UNDEF, FK_MATCH_FULL,
		      FK_MATCH_PARTIAL, FK_MATCH_SIMPLE};
  enum fk_option { FK_OPTION_UNDEF, FK_OPTION_RESTRICT, FK_OPTION_CASCADE,
		   FK_OPTION_SET_NULL, FK_OPTION_NO_ACTION, FK_OPTION_DEFAULT};

  Table_ident *ref_table;
  List<key_part_spec> ref_columns;
  uint delete_opt, update_opt, match_opt;
  foreign_key(const char *name_arg, List<key_part_spec> &cols,
	      Table_ident *table,   List<key_part_spec> &ref_cols,
	      uint delete_opt_arg, uint update_opt_arg, uint match_opt_arg)
439
    :Key(FOREIGN_KEY, name_arg, HA_KEY_ALG_UNDEF, 0, cols),
440 441 442 443 444
    ref_table(table), ref_columns(cols),
    delete_opt(delete_opt_arg), update_opt(update_opt_arg),
    match_opt(match_opt_arg)
  {}
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463

typedef struct st_mysql_lock
{
  TABLE **table;
  uint table_count,lock_count;
  THR_LOCK_DATA **locks;
} MYSQL_LOCK;


class LEX_COLUMN : public Sql_alloc
{
public:
  String column;
  uint rights;
  LEX_COLUMN (const String& x,const  uint& y ): column (x),rights (y) {}
};

#include "sql_lex.h"				/* Must be here */

464 465
/* Needed to be able to have an I_List of char* strings in mysqld.cc. */

bk@work.mysql.com's avatar
bk@work.mysql.com committed
466 467 468 469 470 471 472 473
class i_string: public ilink
{
public:
  char* ptr;
  i_string():ptr(0) { }
  i_string(char* s) : ptr(s) {}
};

474
/* needed for linked list of two strings for replicate-rewrite-db */
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
475 476 477 478 479 480
class i_string_pair: public ilink
{
public:
  char* key;
  char* val;
  i_string_pair():key(0),val(0) { }
481
  i_string_pair(char* key_arg, char* val_arg) : key(key_arg),val(val_arg) {}
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
482 483 484
};


bk@work.mysql.com's avatar
bk@work.mysql.com committed
485
class delayed_insert;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
486
class select_result;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
487

488 489 490 491 492
#define THD_SENTRY_MAGIC 0xfeedd1ff
#define THD_SENTRY_GONE  0xdeadbeef

#define THD_CHECK_SENTRY(thd) DBUG_ASSERT(thd->dbug_sentry == THD_SENTRY_MAGIC)

493 494
struct system_variables
{
495 496
  ulonglong myisam_max_extra_sort_file_size;
  ulonglong myisam_max_sort_file_size;
497 498
  ha_rows select_limit;
  ha_rows max_join_size;
499
  ulong auto_increment_increment, auto_increment_offset;
500
  ulong bulk_insert_buff_size;
501 502
  ulong join_buff_size;
  ulong long_query_time;
503
  ulong max_allowed_packet;
504
  ulong max_error_count;
505
  ulong max_heap_table_size;
igor@hundin.mysql.fi's avatar
igor@hundin.mysql.fi committed
506
  ulong max_length_for_sort_data;
507
  ulong max_sort_length;
508
  ulong max_tmp_tables;
509
  ulong max_insert_delayed_threads;
ingo@mysql.com's avatar
ingo@mysql.com committed
510
  ulong multi_range_count;
511
  ulong myisam_repair_threads;
512 513
  ulong myisam_sort_buff_size;
  ulong net_buffer_length;
514
  ulong net_interactive_timeout;
515
  ulong net_read_timeout;
516
  ulong net_retry_count;
517
  ulong net_wait_timeout;
518
  ulong net_write_timeout;
519 520
  ulong optimizer_prune_level;
  ulong optimizer_search_depth;
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
521
  ulong preload_buff_size;
522 523 524
  ulong query_cache_type;
  ulong read_buff_size;
  ulong read_rnd_buff_size;
525
  ulong sortbuff_size;
526
  ulong table_type;
527
  ulong tmp_table_size;
528
  ulong tx_isolation;
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
529
  ulong completion_type;
530
  /* Determines which non-standard SQL behaviour should be enabled */
531
  ulong sql_mode;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
532
  /* check of key presence in updatable view */
533
  ulong updatable_views_with_limit;
534
  ulong default_week_format;
535
  ulong max_seeks_for_key;
536 537 538 539 540
  ulong range_alloc_block_size;
  ulong query_alloc_block_size;
  ulong query_prealloc_size;
  ulong trans_alloc_block_size;
  ulong trans_prealloc_size;
541
  ulong log_warnings;
542
  ulong group_concat_max_len;
543 544 545 546 547 548
  /*
    In slave thread we need to know in behalf of which
    thread the query is being run to replicate temp tables properly
  */
  ulong pseudo_thread_id;

549 550
  my_bool low_priority_updates;
  my_bool new_mode;
551
  my_bool query_cache_wlock_invalidate;
mskold@mysql.com's avatar
mskold@mysql.com committed
552
  my_bool engine_condition_pushdown;
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
553 554 555 556 557
#ifdef HAVE_REPLICATION
  ulong sync_replication;
  ulong sync_replication_slave_id;
  ulong sync_replication_timeout;
#endif /* HAVE_REPLICATION */
558
#ifdef HAVE_INNOBASE_DB
559
  my_bool innodb_table_locks;
560
  my_bool innodb_support_xa;
561
#endif /* HAVE_INNOBASE_DB */
562 563 564 565 566 567
#ifdef HAVE_NDBCLUSTER_DB
  ulong ndb_autoincrement_prefetch_sz;
  my_bool ndb_force_send;
  my_bool ndb_use_exact_count;
  my_bool ndb_use_transactions;
#endif /* HAVE_NDBCLUSTER_DB */
568
  my_bool old_passwords;
569
  
570
  /* Only charset part of these variables is sensible */
571 572
  CHARSET_INFO 	*character_set_client;
  CHARSET_INFO  *character_set_results;
573 574 575 576
  
  /* Both charset and collation parts of these variables are important */
  CHARSET_INFO	*collation_server;
  CHARSET_INFO	*collation_database;
577
  CHARSET_INFO  *collation_connection;
578

579 580
  Time_zone *time_zone;

581 582 583 584
  /* DATE, DATETIME and TIME formats */
  DATE_TIME_FORMAT *date_format;
  DATE_TIME_FORMAT *datetime_format;
  DATE_TIME_FORMAT *time_format;
585 586
};

587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609

/* per thread status variables */

typedef struct system_status_var
{
  ulong bytes_received;
  ulong bytes_sent;
  ulong com_other;
  ulong com_stat[(uint) SQLCOM_END];
  ulong created_tmp_disk_tables;
  ulong created_tmp_tables;
  ulong ha_commit_count;
  ulong ha_delete_count;
  ulong ha_read_first_count;
  ulong ha_read_last_count;
  ulong ha_read_key_count;
  ulong ha_read_next_count;
  ulong ha_read_prev_count;
  ulong ha_read_rnd_count;
  ulong ha_read_rnd_next_count;
  ulong ha_rollback_count;
  ulong ha_update_count;
  ulong ha_write_count;
610 611 612 613
  ulong ha_prepare_count;
  ulong ha_discover_count;
  ulong ha_savepoint_count;
  ulong ha_savepoint_rollback_count;
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645

  /* KEY_CACHE parts. These are copies of the original */
  ulong key_blocks_changed;
  ulong key_blocks_used;
  ulong key_cache_r_requests;
  ulong key_cache_read;
  ulong key_cache_w_requests;
  ulong key_cache_write;
  /* END OF KEY_CACHE parts */

  ulong net_big_packet_count;
  ulong opened_tables;
  ulong select_full_join_count;
  ulong select_full_range_join_count;
  ulong select_range_count;
  ulong select_range_check_count;
  ulong select_scan_count;
  ulong long_query_count;
  ulong filesort_merge_passes;
  ulong filesort_range_count;
  ulong filesort_rows;
  ulong filesort_scan_count;
} STATUS_VAR;

/*
  This is used for 'show status'. It must be updated to the last ulong
  variable in system_status_var
*/

#define last_system_status_var filesort_scan_count


646
void free_tmp_table(THD *thd, TABLE *entry);
647 648


649 650 651 652 653 654 655 656
class Item_arena
{
public:
  /*
    List of items created in the parser for this query. Every item puts
    itself to the list on creation (see Item::Item() for details))
  */
  Item *free_list;
657 658
  MEM_ROOT main_mem_root;
  MEM_ROOT *mem_root;                   // Pointer to current memroot
monty@mysql.com's avatar
monty@mysql.com committed
659 660 661
#ifndef DBUG_OFF
  bool backup_arena;
#endif
662
  enum enum_state 
663 664 665 666
  {
    INITIALIZED= 0, PREPARED= 1, EXECUTED= 3, CONVENTIONAL_EXECUTION= 2, 
    ERROR= -1
  };
667
  
668
  enum_state state;
669 670 671 672 673 674 675

  /* We build without RTTI, so dynamic_cast can't be used. */
  enum Type
  {
    STATEMENT, PREPARED_STATEMENT, STORED_PROCEDURE
  };

676 677 678 679 680 681 682 683 684
  /*
    This constructor is used only when Item_arena is created as
    backup storage for another instance of Item_arena.
  */
  Item_arena() {};
  /*
    Create arena for already constructed THD using its variables as
    parameters for memory root initialization.
  */
685
  Item_arena(THD *thd);
686 687 688 689
  /*
    Create arena and optionally init memory root with minimal values.
    Particularly used if Item_arena is part of Statement.
  */
690
  Item_arena(bool init_mem_root);
691
  virtual Type type() const;
692
  virtual ~Item_arena() {};
693

694 695
  inline bool is_stmt_prepare() const { return (int)state < (int)PREPARED; }
  inline bool is_first_stmt_execute() const { return state == PREPARED; }
696 697
  inline bool is_stmt_execute() const
  { return state == PREPARED || state == EXECUTED; }
monty@mysql.com's avatar
monty@mysql.com committed
698
  inline bool is_conventional() const
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
699
  { return state == CONVENTIONAL_EXECUTION; }
700
  inline gptr alloc(unsigned int size) { return alloc_root(mem_root,size); }
701 702 703
  inline gptr calloc(unsigned int size)
  {
    gptr ptr;
704
    if ((ptr=alloc_root(mem_root,size)))
705 706 707 708
      bzero((char*) ptr,size);
    return ptr;
  }
  inline char *strdup(const char *str)
709
  { return strdup_root(mem_root,str); }
710
  inline char *strmake(const char *str, uint size)
711
  { return strmake_root(mem_root,str,size); }
712
  inline char *memdup(const char *str, uint size)
713
  { return memdup_root(mem_root,str,size); }
714 715 716
  inline char *memdup_w_gap(const char *str, uint size, uint gap)
  {
    gptr ptr;
717
    if ((ptr=alloc_root(mem_root,size+gap)))
718 719 720 721 722 723 724 725 726
      memcpy(ptr,str,size);
    return ptr;
  }

  void set_n_backup_item_arena(Item_arena *set, Item_arena *backup);
  void restore_backup_item_arena(Item_arena *set, Item_arena *backup);
  void set_item_arena(Item_arena *set);
};

727 728 729

class Cursor;

730 731 732 733 734 735 736 737 738 739 740 741 742 743
/*
  State of a single command executed against this connection.
  One connection can contain a lot of simultaneously running statements,
  some of which could be:
   - prepared, that is, contain placeholders,
   - opened as cursors. We maintain 1 to 1 relationship between
     statement and cursor - if user wants to create another cursor for his
     query, we create another statement for it. 
  To perform some action with statement we reset THD part to the state  of
  that statement, do the action, and then save back modified state from THD
  to the statement. It will be changed in near future, and Statement will
  be used explicitly.
*/

744
class Statement: public Item_arena
745
{
746 747
  Statement(const Statement &rhs);              /* not implemented: */
  Statement &operator=(const Statement &rhs);   /* non-copyable */
748 749 750
public:
  /* FIXME: must be private */
  LEX     main_lex;
751

752
  /*
konstantin@oak.local's avatar
konstantin@oak.local committed
753
    Uniquely identifies each statement object in thread scope; change during
754
    statement lifetime. FIXME: must be const
755
  */
konstantin@oak.local's avatar
konstantin@oak.local committed
756
   ulong id;
757 758

  /*
759
    - if set_query_id=1, we set field->query_id for all fields. In that case 
760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776
    field list can not contain duplicates.
  */
  bool set_query_id;
  /*
    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 queries
    SELECT MIN(i) FROM foo
    SELECT GROUP_CONCAT(a, b, MIN(i)) FROM ... GROUP BY ...
    MIN(i) have no sense.
    Though it's grammar-related issue, it's hard to catch it out during the
    parse stage because GROUP BY clause goes in the end of query. This
    variable is mainly used in setup_fields/fix_fields.
    See item_sum.cc for details.
  */
  bool allow_sum_func;

777
  LEX_STRING name; /* name for named prepared statements */
778 779 780 781 782
  LEX *lex;                                     // parse tree descriptor
  /*
    Points to the query associated with this statement. It's const, but
    we need to declare it char * because all table handlers are written
    in C and need to point to it.
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799

    Note that (A) if we set query = NULL, we must at the same time set
    query_length = 0, and protect the whole operation with the
    LOCK_thread_count mutex. And (B) we are ONLY allowed to set query to a
    non-NULL value if its previous value is NULL. We do not need to protect
    operation (B) with any mutex. To avoid crashes in races, if we do not
    know that thd->query cannot change at the moment, one should print
    thd->query like this:
      (1) reserve the LOCK_thread_count mutex;
      (2) check if thd->query is NULL;
      (3) if not NULL, then print at most thd->query_length characters from
      it. We will see the query_length field as either 0, or the right value
      for it.
    Assuming that the write and read of an n-bit memory field in an n-bit
    computer is atomic, we can avoid races in the above way. 
    This printing is needed at least in SHOW PROCESSLIST and SHOW INNODB
    STATUS.
800 801 802
  */
  char *query;
  uint32 query_length;                          // current query length
803
  Cursor *cursor;
804

805 806
public:

konstantin@oak.local's avatar
konstantin@oak.local committed
807 808 809 810
  /*
    This constructor is called when statement is a subobject of THD:
    some variables are initialized in THD::init due to locking problems
  */
811
  Statement();
812

813 814
  Statement(THD *thd);
  virtual ~Statement();
815 816 817

  /* Assign execution context (note: not all members) of given stmt to self */
  void set_statement(Statement *stmt);
818 819
  void set_n_backup_statement(Statement *stmt, Statement *backup);
  void restore_backup_statement(Statement *stmt, Statement *backup);
820 821
  /* return class type */
  virtual Type type() const;
822 823 824 825
};


/*
826 827 828 829 830
  Container for all statements created/used in a connection.
  Statements in Statement_map have unique Statement::id (guaranteed by id
  assignment in Statement::Statement)
  Non-empty statement names are unique too: attempt to insert a new statement
  with duplicate name causes older statement to be deleted
831

832 833
  Statements are auto-deleted when they are removed from the map and when the
  map is deleted.
834 835 836 837 838 839
*/

class Statement_map
{
public:
  Statement_map();
840

841 842 843
  int insert(Statement *statement);

  Statement *find_by_name(LEX_STRING *name)
844
  {
845 846 847 848
    Statement *stmt;
    stmt= (Statement*)hash_search(&names_hash, (byte*)name->str,
                                  name->length);
    return stmt;
849
  }
850 851

  Statement *find(ulong id)
852
  {
853
    if (last_found_statement == 0 || id != last_found_statement->id)
854 855 856
    {
      Statement *stmt;
      stmt= (Statement *) hash_search(&st_hash, (byte *) &id, sizeof(id));
857
      if (stmt && stmt->name.str)
858 859 860
        return NULL;
      last_found_statement= stmt;
    }
861
    return last_found_statement;
862 863 864
  }
  void erase(Statement *statement)
  {
865 866
    if (statement == last_found_statement)
      last_found_statement= 0;
867 868 869 870
    if (statement->name.str)
    {
      hash_delete(&names_hash, (byte *) statement);  
    }
871 872
    hash_delete(&st_hash, (byte *) statement);
  }
873 874 875
  /* Erase all statements (calls Statement destructor) */
  void reset()
  {
876 877
    my_hash_reset(&names_hash);
    my_hash_reset(&st_hash);
878 879
    last_found_statement= 0;
  }
880

881 882
  ~Statement_map()
  {
883
    hash_free(&names_hash);
884
    hash_free(&st_hash);
885
  }
886 887
private:
  HASH st_hash;
888
  HASH names_hash;
889
  Statement *last_found_statement;
890 891
};

892 893 894 895 896 897 898
struct st_savepoint {
  struct st_savepoint *prev;
  char                *name;
  uint                 length, nht;
};

enum xa_states {XA_NOTR=0, XA_ACTIVE, XA_IDLE, XA_PREPARED};
899
extern const char *xa_state_names[];
900

901 902 903 904 905 906 907 908 909 910 911
/*
  A registry for item tree transformations performed during
  query optimization. We register only those changes which require
  a rollback to re-execute a prepared statement or stored procedure
  yet another time.
*/

struct Item_change_record;
typedef I_List<Item_change_record> Item_change_list;


912 913 914 915 916 917 918 919 920
/*
  Type of prelocked mode.
  See comment for THD::prelocked_mode for complete description.
*/

enum prelocked_mode_type {NON_PRELOCKED= 0, PRELOCKED= 1,
                          PRELOCKED_UNDER_LOCK_TABLES= 2};


921 922 923 924
/*
  For each client connection we create a separate thread with THD serving as
  a thread/connection descriptor
*/
925

bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
926
class THD :public ilink,
927
           public Statement
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
928
{
bk@work.mysql.com's avatar
bk@work.mysql.com committed
929
public:
930 931
#ifdef EMBEDDED_LIBRARY
  struct st_mysql  *mysql;
hf@deer.(none)'s avatar
SCRUM  
hf@deer.(none) committed
932 933 934
  struct st_mysql_data *data;
  unsigned long	 client_stmt_id;
  unsigned long  client_param_count;
hf@deer.(none)'s avatar
hf@deer.(none) committed
935
  struct st_mysql_bind *client_params;
hf@deer.(none)'s avatar
hf@deer.(none) committed
936 937
  char *extra_data;
  ulong extra_length;
hf@deer.(none)'s avatar
hf@deer.(none) committed
938
  String query_rest;
939
#endif
940
  NET	  net;				// client connection descriptor
941
  MEM_ROOT warn_root;			// For warnings and errors
942 943 944
  Protocol *protocol;			// Current protocol
  Protocol_simple protocol_simple;	// Normal protocol
  Protocol_prep protocol_prep;		// Binary protocol
945 946
  HASH    user_vars;			// hash for user variables
  String  packet;			// dynamic buffer for network I/O
947
  String  convert_buffer;               // buffer for charset conversions
948 949 950
  struct  sockaddr_in remote;		// client socket address
  struct  rand_struct rand;		// used for authentication
  struct  system_variables variables;	// Changeable local variables
951
  struct  system_status_var status_var; // Per thread statistic vars
952
  pthread_mutex_t LOCK_delete;		// Locked before thd is deleted
953 954 955 956
  /* all prepared statements and cursors of this connection */
  Statement_map stmt_map; 
  /*
    keeps THD state while it is used for active statement
957
    Note: we perform special cleanup for it in THD destructor.
958 959
  */
  Statement stmt_backup;
960 961 962 963 964 965
  /*
    A pointer to the stack frame of handle_one_connection(),
    which is called first in the thread for handling a client
  */
  char	  *thread_stack;

966 967 968 969
  /*
    host - host of the client
    user - user of the client, set to NULL until the user has been read from
     the connection
970
    priv_user - The user privilege we are using. May be '' for anonymous user.
971
    db - currently selected database
972
    catalog - currently selected catalog
973
    ip - client IP
974 975 976 977 978 979 980
    WARNING: some members of THD (currently 'db', 'catalog' and 'query')  are
    set and alloced by the slave SQL thread (for the THD of that thread); that
    thread is (and must remain, for now) the only responsible for freeing these
    3 members. If you add members here, and you add code to set them in
    replication, don't forget to free_them_and_set_them_to_0 in replication
    properly. For details see the 'err:' label of the pthread_handler_decl of
    the slave SQL thread, in sql/slave.cc.
981
   */
982
  char	  *host,*user,*priv_user,*db,*catalog,*ip;
983
  char	  priv_host[MAX_HOSTNAME];
984 985
  /* remote (peer) port */
  uint16 peer_port;
986 987 988 989 990
  /*
    Points to info-string that we show in SHOW PROCESSLIST
    You are supposed to update thd->proc_info only if you have coded
    a time-consuming piece that MySQL can get stuck in for a long time.
  */
991 992 993
  const char *proc_info;
  /* points to host if host is available, otherwise points to ip */
  const char *host_or_ip;
994

995
  ulong client_capabilities;		/* What the client supports */
996
  ulong max_client_packet_length;
997 998
  ulong master_access;			/* Global privileges from mysql.user */
  ulong db_access;			/* Privileges for current db */
999 1000 1001 1002 1003 1004

  /*
    open_tables - list of regular tables in use by this thread
    temporary_tables - list of temp tables in use by this thread
    handler_tables - list of tables that were opened with HANDLER OPEN
     and are still in use by this thread
1005
  */
1006
  TABLE   *open_tables,*temporary_tables, *handler_tables, *derived_tables;
1007 1008 1009
  /*
    During a MySQL session, one can lock tables in two modes: automatic
    or manual. In automatic mode all necessary tables are locked just before
1010
    statement execution, and all acquired locks are stored in 'lock'
1011 1012 1013 1014 1015
    member. Unlocking takes place automatically as well, when the
    statement ends.
    Manual mode comes into play when a user issues a 'LOCK TABLES'
    statement. In this mode the user can only use the locked tables.
    Trying to use any other tables will give an error. The locked tables are
1016
    stored in 'locked_tables' member.  Manual locking is described in
1017 1018 1019
    the 'LOCK_TABLES' chapter of the MySQL manual.
    See also lock_tables() for details.
  */
1020
  MYSQL_LOCK	*lock;				/* Current locks */
1021 1022 1023 1024 1025 1026 1027
  /*
    Tables that were locked with explicit or implicit LOCK TABLES.
    (Implicit LOCK TABLES happens when we are prelocking tables for
     execution of statement which uses stored routines. See description
     THD::prelocked_mode for more info.)
  */
  MYSQL_LOCK	*locked_tables;
1028
  HASH		handler_tables_hash;
1029 1030 1031 1032 1033
  /*
    One thread can hold up to one named user-level lock. This variable
    points to a lock object if the lock is present. See item_func.cc and
    chapter 'Miscellaneous functions', for functions GET_LOCK, RELEASE_LOCK. 
  */
1034
  User_level_lock *ull;
1035 1036
#ifndef DBUG_OFF
  uint dbug_sentry; // watch out for memory corruption
1037
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1038
  struct st_my_thread_var *mysys_var;
1039 1040 1041 1042 1043
  /*
    Type of current query: COM_PREPARE, COM_QUERY, etc. Set from 
    first byte of the packet in do_command()
  */
  enum enum_server_command command;
1044
  uint32     server_id;
1045
  uint32     file_id;			// for LOAD DATA INFILE
1046 1047 1048 1049 1050
  /*
    Used in error messages to tell user in what part of MySQL we found an
    error. E. g. when where= "having clause", if fix_fields() fails, user
    will know that the error was in having clause.
  */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1051
  const char *where;
1052 1053
  time_t     start_time,time_after_lock,user_time;
  time_t     connect_time,thr_create_time; // track down slow pthread_create
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1054 1055
  thr_lock_type update_lock_default;
  delayed_insert *di;
heikki@hundin.mysql.fi's avatar
heikki@hundin.mysql.fi committed
1056
  my_bool    tablespace_op;	/* This is TRUE in DISCARD/IMPORT TABLESPACE */
1057 1058
  /* container for handler's private per-connection data */
  void *ha_data[MAX_HA];
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1059
  struct st_transactions {
1060
    SAVEPOINT *savepoints;
1061 1062
    THD_TRANS all;			// Trans since BEGIN WORK
    THD_TRANS stmt;			// Trans for current statement
1063 1064 1065
    bool on;                            // see ha_enable_transaction()
    XID  xid;                           // transaction identifier
    enum xa_states xa_state;            // used by external XA only
1066
    /*
1067
       Tables changed in transaction (that must be invalidated in query cache).
1068
       List contain only transactional tables, that not invalidated in query
1069 1070 1071 1072 1073 1074
       cache (instead of full list of changed in transaction tables).
    */
    CHANGED_TABLE_LIST* changed_tables;
    MEM_ROOT mem_root; // Transaction-life memory allocation pool
    void cleanup()
    {
1075 1076
      changed_tables= 0;
      savepoints= 0;
1077
#ifdef USING_TRANSACTIONS
1078
      free_root(&mem_root,MYF(MY_KEEP_PREALLOC));
1079
#endif
1080
    }
1081 1082 1083 1084 1085 1086 1087 1088
#ifdef USING_TRANSACTIONS
    st_transactions()
    {
      bzero((char*)this, sizeof(*this));
      xid.null();
      init_sql_alloc(&mem_root, ALLOC_ROOT_MIN_BLOCK_SIZE, 0);
    }
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1089 1090 1091 1092 1093
  } transaction;
  Field      *dupp_field;
#ifndef __WIN__
  sigset_t signals,block_signals;
#endif
1094 1095
#ifdef SIGNAL_WITH_VIO_CLOSE
  Vio* active_vio;
1096
#endif
1097 1098 1099 1100 1101 1102 1103 1104
  /*
    This is to track items changed during execution of a prepared
    statement/stored procedure. It's created by
    register_item_tree_change() in memory root of THD, and freed in
    rollback_item_tree_changes(). For conventional execution it's always 0.
  */
  Item_change_list change_list;

1105
  /*
1106
    Current prepared Item_arena if there one, or 0
1107
  */
1108
  Item_arena *current_arena;
1109 1110 1111 1112 1113
  /*
    next_insert_id is set on SET INSERT_ID= #. This is used as the next
    generated auto_increment value in handler.cc
  */
  ulonglong  next_insert_id;
1114 1115
  /* Remember last next_insert_id to reset it if something went wrong */
  ulonglong  prev_insert_id;
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127
  /*
    The insert_id used for the last statement or set by SET LAST_INSERT_ID=#
    or SELECT LAST_INSERT_ID(#).  Used for binary log and returned by
    LAST_INSERT_ID()
  */
  ulonglong  last_insert_id;
  /*
    Set to the first value that LAST_INSERT_ID() returned for the last
    statement.  When this is set, last_insert_id_used is set to true.
  */
  ulonglong  current_insert_id;
  ulonglong  limit_found_rows;
1128
  ha_rows    cuted_fields,
1129
             sent_row_count, examined_row_count;
1130
  table_map  used_tables;
1131
  USER_CONN *user_connect;
1132
  CHARSET_INFO *db_charset;
konstantin@oak.local's avatar
konstantin@oak.local committed
1133 1134 1135
  /*
    FIXME: this, and some other variables like 'count_cuted_fields'
    maybe should be statement/cursor local, that is, moved to Statement
1136 1137
    class. With current implementation warnings produced in each prepared
    statement/cursor settle here.
konstantin@oak.local's avatar
konstantin@oak.local committed
1138
  */
1139
  List	     <MYSQL_ERROR> warn_list;
1140
  uint	     warn_count[(uint) MYSQL_ERROR::WARN_LEVEL_END];
1141
  uint	     total_warn_count;
1142 1143 1144 1145 1146 1147 1148 1149
  /*
    Id of current query. Statement can be reused to execute several queries
    query_id is global in context of the whole MySQL server.
    ID is automatically generated from mutex-protected counter.
    It's used in handler code for various purposes: to check which columns
    from table are necessary for this select, to check if it's necessary to
    update auto-updatable fields (like auto_increment and timestamp).
  */
1150 1151
  query_id_t query_id, warn_id;
  ulong	     version, options, thread_id, col_access;
1152 1153 1154

  /* Statement id is thread-wide. This counter is used to generate ids */
  ulong      statement_id_counter;
1155
  ulong	     rand_saved_seed1, rand_saved_seed2;
1156
  ulong      row_count;  // Row counter, mainly for errors and warnings
1157
  long	     dbug_thread_id;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1158
  pthread_t  real_id;
serg@serg.mylan's avatar
serg@serg.mylan committed
1159
  uint	     current_tablenr,tmp_table,global_read_lock;
1160
  uint	     server_status,open_options,system_thread;
1161
  uint32     db_length;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1162
  uint       select_number;             //number of select (used for EXPLAIN)
1163 1164
  /* variables.transaction_isolation is reset to this after each commit */
  enum_tx_isolation session_tx_isolation;
1165
  enum_check_fields count_cuted_fields;
1166 1167
  /* for user variables replication*/
  DYNAMIC_ARRAY user_var_events;
1168

1169
  enum killed_state { NOT_KILLED=0, KILL_BAD_DATA=1, KILL_CONNECTION=ER_SERVER_SHUTDOWN, KILL_QUERY=ER_QUERY_INTERRUPTED };
1170 1171
  killed_state volatile killed;

1172
  /* scramble - random string sent to client on handshake */
1173
  char	     scramble[SCRAMBLE_LENGTH+1];
1174

1175
  bool       slave_thread, one_shot_set;
1176
  bool	     locked, some_tables_deleted;
1177
  bool       last_cuted_field;
1178
  bool	     no_errors, password, is_fatal_error;
1179 1180
  bool	     query_start_used, rand_used, time_zone_used;
  bool	     last_insert_id_used,insert_id_used, clear_next_insert_id;
1181
  bool	     in_lock_tables;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1182
  bool       query_error, bootstrap, cleanup_done;
1183
  bool	     tmp_table_used;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1184
  bool	     charset_is_system_charset, charset_is_collation_connection;
1185
  bool       slow_command;
1186
  bool	     no_trans_update, abort_on_warning;
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
1187
  bool 	     got_warning;       /* Set on call to push_warning() */
1188
  bool	     no_warnings_for_error; /* no warnings on call to my_error() */
1189 1190
  /* set during loop of derived table processing */
  bool       derived_tables_processing;
1191
  longlong   row_count_func;	/* For the ROW_COUNT() function */
1192
  sp_rcontext *spcont;		// SP runtime context
1193 1194
  sp_cache   *sp_proc_cache;
  sp_cache   *sp_func_cache;
1195

1196 1197 1198 1199 1200
  /*
    If we do a purge of binary logs, log index info of the threads
    that are currently reading it needs to be adjusted. To do that
    each thread that is using LOG_INFO needs to adjust the pointer to it
  */
1201
  LOG_INFO*  current_linfo;
1202
  NET*       slave_net;			// network connection from slave -> m.
1203 1204 1205 1206 1207 1208 1209
  /* Used by the sys_var class to store temporary values */
  union
  {
    my_bool my_bool_value;
    long    long_value;
  } sys_var_tmp;

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
  /*
    prelocked_mode_type enum and prelocked_mode member are used for
    indicating whenever "prelocked mode" is on, and what type of
    "prelocked mode" is it.

    Prelocked mode is used for execution of queries which explicitly
    or implicitly (via views or triggers) use functions, thus may need
    some additional tables (mentioned in query table list) for their
    execution.

    First open_tables() call for such query will analyse all functions
    used by it and add all additional tables to table its list. It will
    also mark this query as requiring prelocking. After that lock_tables()
    will issue implicit LOCK TABLES for the whole table list and change
    thd::prelocked_mode to non-0. All queries called in functions invoked
    by the main query will use prelocked tables. Non-0 prelocked_mode
    will also surpress mentioned analysys in those queries thus saving
    cycles. Prelocked mode will be turned off once close_thread_tables()
    for the main query will be called.

    Note: Since not all "tables" present in table list are really locked
    thd::relocked_mode does not imply thd::locked_tables.
  */
  prelocked_mode_type prelocked_mode;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1235 1236
  THD();
  ~THD();
1237

1238
  void init(void);
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
  /*
    Initialize memory roots necessary for query processing and (!)
    pre-allocate memory for it. We can't do that in THD constructor because
    there are use cases (acl_init, delayed inserts, watcher threads,
    killing mysqld) where it's vital to not allocate excessive and not used
    memory. Note, that we still don't return error from init_for_queries():
    if preallocation fails, we should notice that at the first call to
    alloc_root. 
  */
  void init_for_queries();
1249
  void change_user(void);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1250
  void cleanup(void);
1251
  void cleanup_after_query();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1252
  bool store_globals();
1253 1254
#ifdef SIGNAL_WITH_VIO_CLOSE
  inline void set_active_vio(Vio* vio)
1255
  {
1256
    pthread_mutex_lock(&LOCK_delete);
1257
    active_vio = vio;
1258
    pthread_mutex_unlock(&LOCK_delete);
1259
  }
1260
  inline void clear_active_vio()
1261
  {
1262
    pthread_mutex_lock(&LOCK_delete);
1263
    active_vio = 0;
1264
    pthread_mutex_unlock(&LOCK_delete);
1265
  }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1266
  void close_active_vio();
1267
#endif  
hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
1268
  void awake(THD::killed_state state_to_set);
1269 1270
  /*
    For enter_cond() / exit_cond() to work the mutex must be got before
guilhem@mysql.com's avatar
guilhem@mysql.com committed
1271 1272 1273
    enter_cond() (in 4.1 an assertion will soon ensure this); this mutex is
    then released by exit_cond(). Use must be:
    lock mutex; enter_cond(); your code; exit_cond().
1274
  */
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
  inline const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex,
			  const char* msg)
  {
    const char* old_msg = proc_info;
    mysys_var->current_mutex = mutex;
    mysys_var->current_cond = cond;
    proc_info = msg;
    return old_msg;
  }
  inline void exit_cond(const char* old_msg)
  {
guilhem@mysql.com's avatar
guilhem@mysql.com committed
1286 1287 1288 1289 1290 1291 1292
    /*
      Putting the mutex unlock in exit_cond() ensures that
      mysys_var->current_mutex is always unlocked _before_ mysys_var->mutex is
      locked (if that would not be the case, you'll get a deadlock if someone
      does a THD::awake() on you).
    */
    pthread_mutex_unlock(mysys_var->current_mutex);
1293 1294 1295 1296 1297 1298
    pthread_mutex_lock(&mysys_var->mutex);
    mysys_var->current_mutex = 0;
    mysys_var->current_cond = 0;
    proc_info = old_msg;
    pthread_mutex_unlock(&mysys_var->mutex);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1299
  inline time_t query_start() { query_start_used=1; return start_time; }
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
1300
  inline void	set_time()    { if (user_time) start_time=time_after_lock=user_time; else time_after_lock=time(&start_time); }
1301
  inline void	end_time()    { time(&start_time); }
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
1302
  inline void	set_time(time_t t) { time_after_lock=start_time=user_time=t; }
1303
  inline void	lock_time()   { time(&time_after_lock); }
1304 1305 1306 1307 1308
  inline void	insert_id(ulonglong id_arg)
  {
    last_insert_id= id_arg;
    insert_id_used=1;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1309 1310 1311
  inline ulonglong insert_id(void)
  {
    if (!last_insert_id_used)
1312
    {
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1313 1314 1315 1316 1317
      last_insert_id_used=1;
      current_insert_id=last_insert_id;
    }
    return last_insert_id;
  }
1318 1319 1320
  inline ulonglong found_rows(void)
  {
    return limit_found_rows;
1321
  }
1322 1323
  inline bool active_transaction()
  {
1324 1325
#ifdef USING_TRANSACTIONS
    return server_status & SERVER_STATUS_IN_TRANS;
1326 1327 1328
#else
    return 0;
#endif
1329
  }
1330 1331 1332 1333
  inline bool only_prepare()
  {
    return command == COM_PREPARE;
  }
1334 1335 1336 1337 1338 1339
  inline bool fill_derived_tables()
  {
    return !only_prepare() && !lex->only_view_structure();
  }
  inline gptr trans_alloc(unsigned int size)
  {
1340 1341
    return alloc_root(&transaction.mem_root,size);
  }
1342 1343 1344 1345

  bool convert_string(LEX_STRING *to, CHARSET_INFO *to_cs,
		      const char *from, uint from_length,
		      CHARSET_INFO *from_cs);
1346 1347 1348

  bool convert_string(String *s, CHARSET_INFO *from_cs, CHARSET_INFO *to_cs);

1349
  void add_changed_table(TABLE *table);
1350 1351
  void add_changed_table(const char *key, long key_length);
  CHANGED_TABLE_LIST * changed_table_dup(const char *key, long key_length);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1352
  int send_explain_fields(select_result *result);
1353
#ifndef EMBEDDED_LIBRARY
1354 1355 1356 1357 1358
  inline void clear_error()
  {
    net.last_error[0]= 0;
    net.last_errno= 0;
    net.report_error= 0;
1359
    query_error= 0;
1360
  }
1361
  inline bool vio_ok() const { return net.vio != 0; }
1362 1363
#else
  void clear_error();
1364
  inline bool vio_ok() const { return true; }
1365
#endif
1366 1367 1368 1369
  inline void fatal_error()
  {
    is_fatal_error= 1;
    net.report_error= 1; 
1370
    DBUG_PRINT("error",("Fatal error set"));
1371
  }
1372
  inline CHARSET_INFO *charset() { return variables.character_set_client; }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1373
  void update_charset();
1374

1375 1376 1377 1378 1379 1380
  inline Item_arena *change_arena_if_needed(Item_arena *backup)
  {
    /*
      use new arena if we are in a prepared statements and we have not
      already changed to use this arena.
    */
monty@mysql.com's avatar
monty@mysql.com committed
1381
    if (!current_arena->is_conventional() &&
1382 1383 1384 1385 1386 1387 1388 1389
        mem_root != &current_arena->main_mem_root)
    {
      set_n_backup_item_arena(current_arena, backup);
      return current_arena;
    }
    return 0;
  }

1390
  void change_item_tree(Item **place, Item *new_value)
1391
  {
1392
    /* TODO: check for OOM condition here */
monty@mysql.com's avatar
monty@mysql.com committed
1393
    if (!current_arena->is_conventional())
1394
      nocheck_register_item_tree_change(place, *place, mem_root);
1395
    *place= new_value;
1396 1397
  }
  void nocheck_register_item_tree_change(Item **place, Item *old_value,
1398
                                         MEM_ROOT *runtime_memroot);
1399
  void rollback_item_tree_changes();
1400 1401 1402 1403 1404 1405

  /*
    Cleanup statement parse state (parse tree, lex) and execution
    state after execution of a non-prepared SQL statement.
  */
  void end_statement();
1406 1407
  inline int killed_errno() const
  {
1408
    return killed != KILL_BAD_DATA ? killed : 0;
1409 1410 1411
  }
  inline void send_kill_message() const
  {
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1412 1413
    int err= killed_errno();
    my_message(err, ER(err), MYF(0));
1414
  }
1415 1416 1417 1418 1419 1420 1421
  /* return TRUE if we will abort query if we make a warning now */
  inline bool really_abort_on_warning()
  {
    return (abort_on_warning &&
            (!no_trans_update ||
             (variables.sql_mode & MODE_STRICT_ALL_TABLES)));
  }
1422
  void set_status_var_init();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1423 1424
};

1425 1426 1427 1428 1429
#define tmp_disable_binlog(A)       \
  ulong save_options= (A)->options; \
  (A)->options&= ~OPTION_BIN_LOG;

#define reenable_binlog(A)          (A)->options= save_options;
1430

1431 1432 1433 1434 1435
/* Flags for the THD::system_thread (bitmap) variable */
#define SYSTEM_THREAD_DELAYED_INSERT 1
#define SYSTEM_THREAD_SLAVE_IO 2
#define SYSTEM_THREAD_SLAVE_SQL 4

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1436 1437 1438
/*
  Used to hold information about file and file structure in exchainge 
  via non-DB file (...INTO OUTFILE..., ...LOAD DATA...)
1439
  XXX: We never call destructor for objects of this class.
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1440
*/
1441

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1442 1443 1444 1445 1446 1447 1448
class sql_exchange :public Sql_alloc
{
public:
  char *file_name;
  String *field_term,*enclosed,*line_term,*line_start,*escaped;
  bool opt_enclosed;
  bool dumpfile;
1449
  ulong skip_lines;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1450 1451 1452 1453 1454 1455
  sql_exchange(char *name,bool dumpfile_flag);
};

#include "log_event.h"

/*
1456
  This is used to get result from a select
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1457 1458
*/

1459 1460
class JOIN;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1461 1462 1463
class select_result :public Sql_alloc {
protected:
  THD *thd;
1464
  SELECT_LEX_UNIT *unit;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1465 1466 1467
public:
  select_result();
  virtual ~select_result() {};
1468 1469 1470 1471 1472
  virtual int prepare(List<Item> &list, SELECT_LEX_UNIT *u)
  {
    unit= u;
    return 0;
  }
1473
  virtual int prepare2(void) { return 0; }
1474 1475 1476 1477 1478 1479 1480
  /*
    Because of peculiarities of prepared statements protocol
    we need to know number of columns in the result set (if
    there is a result set) apart from sending columns metadata.
  */
  virtual uint field_count(List<Item> &fields) const
  { return fields.elements; }
1481
  virtual bool send_fields(List<Item> &list, uint flags)=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1482
  virtual bool send_data(List<Item> &items)=0;
1483
  virtual bool initialize_tables (JOIN *join=0) { return 0; }
1484
  virtual void send_error(uint errcode,const char *err);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1485
  virtual bool send_eof()=0;
monty@mysql.com's avatar
monty@mysql.com committed
1486
  virtual bool simple_select() { return 0; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1487
  virtual void abort() {}
1488 1489 1490 1491 1492
  /*
    Cleanup instance of this class for next execution of a prepared
    statement/stored procedure.
  */
  virtual void cleanup();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1493 1494 1495
};


1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
/*
  Base class for select_result descendands which intercept and
  transform result set rows. As the rows are not sent to the client,
  sending of result set metadata should be suppressed as well.
*/

class select_result_interceptor: public select_result
{
public:
  uint field_count(List<Item> &fields) const { return 0; }
  bool send_fields(List<Item> &fields, uint flag) { return FALSE; }
};


bk@work.mysql.com's avatar
bk@work.mysql.com committed
1510 1511 1512
class select_send :public select_result {
public:
  select_send() {}
1513
  bool send_fields(List<Item> &list, uint flags);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1514 1515
  bool send_data(List<Item> &items);
  bool send_eof();
monty@mysql.com's avatar
monty@mysql.com committed
1516
  bool simple_select() { return 1; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1517 1518 1519
};


1520
class select_to_file :public select_result_interceptor {
1521
protected:
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1522 1523 1524 1525
  sql_exchange *exchange;
  File file;
  IO_CACHE cache;
  ha_rows row_count;
1526 1527 1528 1529 1530 1531 1532
  char path[FN_REFLEN];

public:
  select_to_file(sql_exchange *ex) :exchange(ex), file(-1),row_count(0L)
  { path[0]=0; }
  ~select_to_file();
  void send_error(uint errcode,const char *err);
1533 1534
  bool send_eof();
  void cleanup();
1535 1536 1537 1538
};


class select_export :public select_to_file {
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1539 1540 1541 1542
  uint field_term_length;
  int field_sep_char,escape_char,line_sep_char;
  bool fixed_row_size;
public:
1543
  select_export(sql_exchange *ex) :select_to_file(ex) {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1544
  ~select_export();
1545
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1546 1547 1548
  bool send_data(List<Item> &items);
};

monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
1549

1550
class select_dump :public select_to_file {
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1551
public:
1552
  select_dump(sql_exchange *ex) :select_to_file(ex) {}
1553
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1554 1555
  bool send_data(List<Item> &items);
};
monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
1556 1557


1558
class select_insert :public select_result_interceptor {
1559
 public:
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1560
  TABLE_LIST *table_list;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1561 1562 1563 1564
  TABLE *table;
  List<Item> *fields;
  ulonglong last_insert_id;
  COPY_INFO info;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1565
  bool insert_into_view;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1566

monty@mishka.local's avatar
monty@mishka.local committed
1567 1568
  select_insert(TABLE_LIST *table_list_par,
		TABLE *table_par, List<Item> *fields_par,
1569
		List<Item> *update_fields, List<Item> *update_values,
1570
		enum_duplicates duplic, bool ignore);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1571
  ~select_insert();
1572
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
1573
  int prepare2(void);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1574
  bool send_data(List<Item> &items);
serg@serg.mylan's avatar
serg@serg.mylan committed
1575
  virtual void store_values(List<Item> &values);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1576 1577
  void send_error(uint errcode,const char *err);
  bool send_eof();
1578 1579
  /* not implemented: select_insert is never re-used in prepared statements */
  void cleanup();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1580 1581
};

monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
1582

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1583 1584
class select_create: public select_insert {
  ORDER *group;
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1585
  TABLE_LIST *create_table;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1586 1587 1588 1589 1590 1591
  List<create_field> *extra_fields;
  List<Key> *keys;
  HA_CREATE_INFO *create_info;
  MYSQL_LOCK *lock;
  Field **field;
public:
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1592 1593 1594 1595
  select_create (TABLE_LIST *table,
		 HA_CREATE_INFO *create_info_par,
		 List<create_field> &fields_par,
		 List<Key> &keys_par,
1596 1597
		 List<Item> &select_fields,enum_duplicates duplic, bool ignore)
    :select_insert (NULL, NULL, &select_fields, 0, 0, duplic, ignore), create_table(table),
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1598 1599
    extra_fields(&fields_par),keys(&keys_par), create_info(create_info_par),
    lock(0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1600
    {}
1601
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
serg@serg.mylan's avatar
serg@serg.mylan committed
1602
  void store_values(List<Item> &values);
1603
  void send_error(uint errcode,const char *err);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1604 1605 1606 1607
  bool send_eof();
  void abort();
};

1608 1609
#include <myisam.h>

sergefp@mysql.com's avatar
sergefp@mysql.com committed
1610 1611 1612 1613 1614
/* 
  Param to create temporary tables when doing SELECT:s 
  NOTE
    This structure is copied using memcpy as a part of JOIN.
*/
1615 1616 1617

class TMP_TABLE_PARAM :public Sql_alloc
{
1618 1619 1620 1621 1622 1623
private:
  /* Prevent use of these (not safe because of lists and copy_field) */
  TMP_TABLE_PARAM(const TMP_TABLE_PARAM &);
  void operator=(TMP_TABLE_PARAM &);

public:
1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637
  List<Item> copy_funcs;
  List<Item> save_copy_funcs;
  Copy_field *copy_field, *copy_field_end;
  Copy_field *save_copy_field, *save_copy_field_end;
  byte	    *group_buff;
  Item	    **items_to_copy;			/* Fields in tmp table */
  MI_COLUMNDEF *recinfo,*start_recinfo;
  KEY *keyinfo;
  ha_rows end_write_records;
  uint	field_count,sum_func_count,func_count;
  uint  hidden_field_count;
  uint	group_parts,group_length,group_null_parts;
  uint	quick_group;
  bool  using_indirect_summary_function;
1638 1639
  /* If >0 convert all blob fields to varchar(convert_blob_length) */
  uint  convert_blob_length; 
1640
  CHARSET_INFO *table_charset; 
1641
  bool schema_table;
1642 1643

  TMP_TABLE_PARAM()
sergefp@mysql.com's avatar
sergefp@mysql.com committed
1644
    :copy_field(0), group_parts(0),
1645 1646
    group_length(0), group_null_parts(0), convert_blob_length(0),
    schema_table(0)
1647 1648 1649 1650 1651
  {}
  ~TMP_TABLE_PARAM()
  {
    cleanup();
  }
1652
  void init(void);
1653 1654 1655 1656 1657
  inline void cleanup(void)
  {
    if (copy_field)				/* Fix for Intel compiler */
    {
      delete [] copy_field;
1658
      save_copy_field= copy_field= 0;
1659 1660 1661 1662
    }
  }
};

1663
class select_union :public select_result_interceptor {
monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
1664 1665
 public:
  TABLE *table;
1666
  TMP_TABLE_PARAM tmp_table_param;
monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
1667 1668 1669

  select_union(TABLE *table_par);
  ~select_union();
1670
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
1671 1672 1673
  bool send_data(List<Item> &items);
  bool send_eof();
  bool flush();
1674
  void set_table(TABLE *tbl) { table= tbl; }
monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
1675 1676
};

1677
/* Base subselect interface class */
1678
class select_subselect :public select_result_interceptor
1679
{
1680
protected:
1681 1682 1683
  Item_subselect *item;
public:
  select_subselect(Item_subselect *item);
1684
  bool send_data(List<Item> &items)=0;
1685 1686 1687
  bool send_eof() { return 0; };
};

1688
/* Single value subselect interface class */
1689
class select_singlerow_subselect :public select_subselect
1690 1691
{
public:
1692
  select_singlerow_subselect(Item_subselect *item):select_subselect(item){}
1693 1694 1695
  bool send_data(List<Item> &items);
};

1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
/* used in independent ALL/ANY optimisation */
class select_max_min_finder_subselect :public select_subselect
{
  Item_cache *cache;
  bool (select_max_min_finder_subselect::*op)();
  bool fmax;
public:
  select_max_min_finder_subselect(Item_subselect *item, bool mx)
    :select_subselect(item), cache(0), fmax(mx)
  {}
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
1706
  void cleanup();
1707 1708 1709
  bool send_data(List<Item> &items);
  bool cmp_real();
  bool cmp_int();
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
1710
  bool cmp_decimal();
1711 1712 1713
  bool cmp_str();
};

1714 1715 1716 1717 1718 1719 1720 1721
/* EXISTS subselect interface class */
class select_exists_subselect :public select_subselect
{
public:
  select_exists_subselect(Item_subselect *item):select_subselect(item){}
  bool send_data(List<Item> &items);
};

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1722 1723 1724 1725 1726 1727 1728
/* Structs used when sorting */

typedef struct st_sort_field {
  Field *field;				/* Field to sort */
  Item	*item;				/* Item if not sorting fields */
  uint	 length;			/* Length of sort field */
  Item_result result_type;		/* Type of item */
1729 1730
  bool reverse;				/* if descending sort */
  bool need_strxnfrm;			/* If we have to use strxnfrm() */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743
} SORT_FIELD;


typedef struct st_sort_buffer {
  uint index;					/* 0 or 1 */
  uint sort_orders;
  uint change_pos;				/* If sort-fields changed */
  char **buff;
  SORT_FIELD *sortorder;
} SORT_BUFFER;

/* Structure for db & table in sql_yacc */

1744 1745
class Table_ident :public Sql_alloc
{
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1746 1747 1748
 public:
  LEX_STRING db;
  LEX_STRING table;
1749
  SELECT_LEX_UNIT *sel;
1750 1751
  inline Table_ident(THD *thd, LEX_STRING db_arg, LEX_STRING table_arg,
		     bool force)
1752
    :table(table_arg), sel((SELECT_LEX_UNIT *)0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1753
  {
1754
    if (!force && (thd->client_capabilities & CLIENT_NO_SCHEMA))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1755 1756 1757 1758
      db.str=0;
    else
      db= db_arg;
  }
1759 1760 1761 1762 1763 1764 1765
  inline Table_ident(LEX_STRING table_arg) 
    :table(table_arg), sel((SELECT_LEX_UNIT *)0)
  {
    db.str=0;
  }
  inline Table_ident(SELECT_LEX_UNIT *s) : sel(s) 
  {
1766 1767
    /* We must have a table name here as this is used with add_table_to_list */
    db.str=0; table.str= internal_table_name; table.length=1;
1768
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1769
  inline void change_db(char *db_name)
1770 1771 1772
  {
    db.str= db_name; db.length= (uint) strlen(db_name);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1773 1774 1775 1776 1777 1778 1779 1780
};

// this is needed for user_vars hash
class user_var_entry
{
 public:
  LEX_STRING name;
  char *value;
1781 1782
  ulong length;
  query_id_t update_query_id, used_query_id;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1783
  Item_result type;
1784

mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
1785
  double val_real(my_bool *null_value);
1786 1787
  longlong val_int(my_bool *null_value);
  String *val_str(my_bool *null_value, String *str, uint decimals);
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
1788
  my_decimal *val_decimal(my_bool *null_value, my_decimal *result);
1789
  DTCollation collation;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1790 1791
};

1792 1793 1794 1795 1796 1797 1798
/*
   Unique -- class for unique (removing of duplicates). 
   Puts all values to the TREE. If the tree becomes too big,
   it's dumped to the file. User can request sorted values, or
   just iterate through them. In the last case tree merging is performed in
   memory simultaneously with iteration, so it should be ~2-3x faster.
 */
1799 1800 1801 1802 1803 1804 1805

class Unique :public Sql_alloc
{
  DYNAMIC_ARRAY file_ptrs;
  ulong max_elements, max_in_memory_size;
  IO_CACHE file;
  TREE tree;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1806
  byte *record_pointers;
1807
  bool flush();
1808
  uint size;
1809 1810 1811

public:
  ulong elements;
1812
  Unique(qsort_cmp2 comp_func, void *comp_func_fixed_arg,
1813
	 uint size_arg, ulong max_in_memory_size_arg);
1814
  ~Unique();
1815
  ulong elements_in_tree() { return tree.elements_in_tree; }
1816
  inline bool unique_add(void *ptr)
1817
  {
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
1818 1819
    DBUG_ENTER("unique_add");
    DBUG_PRINT("info", ("tree %u - %u", tree.elements_in_tree, max_elements));
1820
    if (tree.elements_in_tree > max_elements && flush())
mskold@mysql.com's avatar
Merge  
mskold@mysql.com committed
1821 1822
      DBUG_RETURN(1);
    DBUG_RETURN(!tree_insert(&tree, ptr, 0, tree.custom_arg));
1823 1824 1825
  }

  bool get(TABLE *table);
1826
  static double get_use_cost(uint *buffer, uint nkeys, uint key_size, 
1827
                             ulong max_in_memory_size);
1828 1829 1830 1831 1832 1833 1834 1835
  inline static int get_cost_calc_buff_size(ulong nkeys, uint key_size, 
                                            ulong max_in_memory_size)
  {
    register ulong max_elems_in_tree= 
      (1 + max_in_memory_size / ALIGN_SIZE(sizeof(TREE_ELEMENT)+key_size));
    return sizeof(uint)*(1 + nkeys/max_elems_in_tree);
  }

1836 1837 1838
  void reset();
  bool walk(tree_walk_action action, void *walk_action_arg);

1839 1840
  friend int unique_write_to_file(gptr key, element_count count, Unique *unique);
  friend int unique_write_to_ptrs(gptr key, element_count count, Unique *unique);
1841
};
1842

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1843

1844
class multi_delete :public select_result_interceptor
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1845 1846
{
  TABLE_LIST *delete_tables, *table_being_deleted;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1847
  Unique **tempfiles;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1848
  THD *thd;
1849
  ha_rows deleted, found;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1850 1851
  uint num_of_tables;
  int error;
1852
  bool do_delete, transactional_tables, normal_tables;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
public:
  multi_delete(THD *thd, TABLE_LIST *dt, uint num_of_tables);
  ~multi_delete();
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
  bool send_data(List<Item> &items);
  bool initialize_tables (JOIN *join);
  void send_error(uint errcode,const char *err);
  int  do_deletes (bool from_send_error);
  bool send_eof();
};

1864

1865
class multi_update :public select_result_interceptor
1866
{
1867 1868 1869
  TABLE_LIST *all_tables; /* query/update command tables */
  TABLE_LIST *leaves;     /* list of leves of join table tree */
  TABLE_LIST *update_tables, *table_being_updated;
1870
  THD *thd;
1871
  TABLE **tmp_tables, *main_table, *table_to_update;
1872 1873 1874 1875 1876 1877 1878
  TMP_TABLE_PARAM *tmp_table_param;
  ha_rows updated, found;
  List <Item> *fields, *values;
  List <Item> **fields_for_table, **values_for_table;
  uint table_count;
  Copy_field *copy_field;
  enum enum_duplicates handle_duplicates;
serg@serg.mylan's avatar
serg@serg.mylan committed
1879
  bool do_update, trans_safe, transactional_tables, ignore;
1880 1881

public:
1882 1883
  multi_update(THD *thd_arg, TABLE_LIST *ut, TABLE_LIST *leaves_list,
	       List<Item> *fields, List<Item> *values,
1884
	       enum_duplicates handle_duplicates, bool ignore);
1885
  ~multi_update();
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1886
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
1887 1888 1889 1890 1891 1892
  bool send_data(List<Item> &items);
  bool initialize_tables (JOIN *join);
  void send_error(uint errcode,const char *err);
  int  do_updates (bool from_send_error);
  bool send_eof();
};
1893

1894 1895 1896 1897 1898
class my_var : public Sql_alloc  {
public:
  LEX_STRING s;
  bool local;
  uint offset;
1899 1900 1901 1902
  enum_field_types type;
  my_var (LEX_STRING& j, bool i, uint o, enum_field_types t)
    :s(j), local(i), offset(o), type(t)
  {}
1903 1904
  ~my_var() {}
};
1905

1906
class select_dumpvar :public select_result_interceptor {
Sinisa@sinisa.nasamreza.org's avatar
Sinisa@sinisa.nasamreza.org committed
1907 1908
  ha_rows row_count;
public:
1909
  List<my_var> var_list;
1910
  List<Item_func_set_user_var> vars;
1911 1912
  List<Item_splocal> local_vars;
  select_dumpvar(void)  { var_list.empty(); local_vars.empty(); vars.empty(); row_count=0;}
Sinisa@sinisa.nasamreza.org's avatar
Sinisa@sinisa.nasamreza.org committed
1913
  ~select_dumpvar() {}
1914
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
Sinisa@sinisa.nasamreza.org's avatar
Sinisa@sinisa.nasamreza.org committed
1915 1916
  bool send_data(List<Item> &items);
  bool send_eof();
1917
  void cleanup();
Sinisa@sinisa.nasamreza.org's avatar
Sinisa@sinisa.nasamreza.org committed
1918
};
1919 1920 1921 1922

/* Functions in sql_class.cc */

void add_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var);