~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_class.h

  • Committer: Monty Taylor
  • Date: 2008-11-16 20:15:33 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116201533-d0f19s1bk1h95iyw
Removed a big bank of includes from item.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
 
21
 
#ifndef DRIZZLED_SESSION_H
22
 
#define DRIZZLED_SESSION_H
 
21
#ifndef DRIZZLED_SQL_CLASS_H
 
22
#define DRIZZLED_SQL_CLASS_H
23
23
 
24
24
/* Classes in mysql */
25
25
 
26
 
#include "drizzled/plugin.h"
 
26
#include <drizzled/global.h>
 
27
#include <drizzled/log.h>
 
28
#include <drizzled/replication/tblmap.h>
 
29
#include <drizzled/protocol.h>
 
30
#include <libdrizzle/password.h>     // rand_struct
27
31
#include <drizzled/sql_locale.h>
28
 
#include "drizzled/resource_context.h"
29
 
#include <drizzled/cursor.h>
30
 
#include <drizzled/current_session.h>
31
 
#include <drizzled/sql_error.h>
32
 
#include <drizzled/file_exchange.h>
33
 
#include <drizzled/select_result_interceptor.h>
34
 
#include <drizzled/xid.h>
35
 
#include "drizzled/query_id.h"
36
 
#include "drizzled/named_savepoint.h"
37
 
#include "drizzled/transaction_context.h"
38
 
 
39
 
#include <netdb.h>
40
 
#include <map>
41
 
#include <string>
42
 
#include <bitset>
43
 
#include <deque>
44
 
 
45
 
#include <drizzled/security_context.h>
46
 
#include <drizzled/open_tables_state.h>
47
 
 
48
 
#include <drizzled/internal_error_handler.h>
49
 
#include <drizzled/diagnostics_area.h>
50
 
 
51
 
#include <drizzled/plugin/authorization.h>
52
 
 
53
 
#define MIN_HANDSHAKE_SIZE      6
54
 
 
55
 
namespace drizzled
56
 
{
57
 
 
58
 
namespace plugin
59
 
{
60
 
class Client;
61
 
class Scheduler;
62
 
}
63
 
namespace message
64
 
{
65
 
class Transaction;
66
 
class Statement;
67
 
}
68
 
namespace internal
69
 
{
70
 
struct st_my_thread_var;
71
 
}
72
 
 
 
32
#include <drizzled/scheduler.h>
 
33
#include <drizzled/ha_trx_info.h>
 
34
#include <mysys/my_tree.h>
 
35
 
 
36
class Relay_log_info;
 
37
 
 
38
class Query_log_event;
 
39
class Load_log_event;
 
40
class Slave_log_event;
73
41
class Lex_input_stream;
74
 
class user_var_entry;
75
 
class CopyField;
76
 
class Table_ident;
 
42
class Rows_log_event;
 
43
 
 
44
enum enum_enable_or_disable { LEAVE_AS_IS, ENABLE, DISABLE };
 
45
enum enum_delay_key_write { DELAY_KEY_WRITE_NONE, DELAY_KEY_WRITE_ON,
 
46
                            DELAY_KEY_WRITE_ALL };
 
47
enum enum_slave_exec_mode { SLAVE_EXEC_MODE_STRICT,
 
48
                            SLAVE_EXEC_MODE_IDEMPOTENT,
 
49
                            SLAVE_EXEC_MODE_LAST_BIT};
 
50
enum enum_mark_columns
 
51
{ MARK_COLUMNS_NONE, MARK_COLUMNS_READ, MARK_COLUMNS_WRITE};
 
52
enum enum_filetype { FILETYPE_CSV, FILETYPE_XML };
77
53
 
78
54
extern char internal_table_name[2];
79
55
extern char empty_c_string[1];
80
56
extern const char **errmesg;
81
57
 
 
58
#define TC_LOG_PAGE_SIZE   8192
 
59
#define TC_LOG_MIN_SIZE    (3*TC_LOG_PAGE_SIZE)
 
60
 
82
61
#define TC_HEURISTIC_RECOVER_COMMIT   1
83
62
#define TC_HEURISTIC_RECOVER_ROLLBACK 2
84
63
extern uint32_t tc_heuristic_recover;
85
64
 
86
 
/**
87
 
  @brief
88
 
  Local storage for proto that are tmp table. This should be enlarged
89
 
  to hande the entire table-share for a local table. Once Hash is done,
90
 
  we should consider exchanging the map for it.
91
 
*/
92
 
typedef std::map <std::string, message::Table> ProtoCache;
93
 
 
94
 
/**
 
65
typedef struct st_user_var_events
 
66
{
 
67
  user_var_entry *user_var_event;
 
68
  char *value;
 
69
  ulong length;
 
70
  Item_result type;
 
71
  uint32_t charset_number;
 
72
} BINLOG_USER_VAR_EVENT;
 
73
 
 
74
#define RP_LOCK_LOG_IS_ALREADY_LOCKED 1
 
75
#define RP_FORCE_ROTATE               2
 
76
 
 
77
/*
95
78
  The COPY_INFO structure is used by INSERT/REPLACE code.
96
79
  The schema of the row counting by the INSERT/INSERT ... ON DUPLICATE KEY
97
80
  UPDATE code:
103
86
      of the INSERT ... ON DUPLICATE KEY UPDATE no matter whether the row
104
87
      was actually changed or not.
105
88
*/
106
 
typedef struct st_copy_info 
107
 
{
 
89
typedef struct st_copy_info {
108
90
  ha_rows records; /**< Number of processed records */
109
91
  ha_rows deleted; /**< Number of deleted records */
110
92
  ha_rows updated; /**< Number of updated records */
120
102
  /* for VIEW ... WITH CHECK OPTION */
121
103
} COPY_INFO;
122
104
 
123
 
typedef struct drizzled_lock_st
 
105
 
 
106
class Key_part_spec :public Sql_alloc {
 
107
public:
 
108
  LEX_STRING field_name;
 
109
  uint32_t length;
 
110
  Key_part_spec(const LEX_STRING &name, uint32_t len)
 
111
    : field_name(name), length(len)
 
112
  {}
 
113
  Key_part_spec(const char *name, const size_t name_len, uint32_t len)
 
114
    : length(len)
 
115
  { field_name.str= (char *)name; field_name.length= name_len; }
 
116
  bool operator==(const Key_part_spec& other) const;
 
117
  /**
 
118
    Construct a copy of this Key_part_spec. field_name is copied
 
119
    by-pointer as it is known to never change. At the same time
 
120
    'length' may be reset in mysql_prepare_create_table, and this
 
121
    is why we supply it with a copy.
 
122
 
 
123
    @return If out of memory, 0 is returned and an error is set in
 
124
    Session.
 
125
  */
 
126
  Key_part_spec *clone(MEM_ROOT *mem_root) const
 
127
  { return new (mem_root) Key_part_spec(*this); }
 
128
};
 
129
 
 
130
 
 
131
class Alter_drop :public Sql_alloc {
 
132
public:
 
133
  enum drop_type {KEY, COLUMN };
 
134
  const char *name;
 
135
  enum drop_type type;
 
136
  Alter_drop(enum drop_type par_type,const char *par_name)
 
137
    :name(par_name), type(par_type) {}
 
138
  /**
 
139
    Used to make a clone of this object for ALTER/CREATE TABLE
 
140
    @sa comment for Key_part_spec::clone
 
141
  */
 
142
  Alter_drop *clone(MEM_ROOT *mem_root) const
 
143
    { return new (mem_root) Alter_drop(*this); }
 
144
};
 
145
 
 
146
 
 
147
class Alter_column :public Sql_alloc {
 
148
public:
 
149
  const char *name;
 
150
  Item *def;
 
151
  Alter_column(const char *par_name,Item *literal)
 
152
    :name(par_name), def(literal) {}
 
153
  /**
 
154
    Used to make a clone of this object for ALTER/CREATE TABLE
 
155
    @sa comment for Key_part_spec::clone
 
156
  */
 
157
  Alter_column *clone(MEM_ROOT *mem_root) const
 
158
    { return new (mem_root) Alter_column(*this); }
 
159
};
 
160
 
 
161
 
 
162
class Key :public Sql_alloc {
 
163
public:
 
164
  enum Keytype { PRIMARY, UNIQUE, MULTIPLE, FOREIGN_KEY};
 
165
  enum Keytype type;
 
166
  KEY_CREATE_INFO key_create_info;
 
167
  List<Key_part_spec> columns;
 
168
  LEX_STRING name;
 
169
  bool generated;
 
170
 
 
171
  Key(enum Keytype type_par, const LEX_STRING &name_arg,
 
172
      KEY_CREATE_INFO *key_info_arg,
 
173
      bool generated_arg, List<Key_part_spec> &cols)
 
174
    :type(type_par), key_create_info(*key_info_arg), columns(cols),
 
175
    name(name_arg), generated(generated_arg)
 
176
  {}
 
177
  Key(enum Keytype type_par, const char *name_arg, size_t name_len_arg,
 
178
      KEY_CREATE_INFO *key_info_arg, bool generated_arg,
 
179
      List<Key_part_spec> &cols)
 
180
    :type(type_par), key_create_info(*key_info_arg), columns(cols),
 
181
    generated(generated_arg)
 
182
  {
 
183
    name.str= (char *)name_arg;
 
184
    name.length= name_len_arg;
 
185
  }
 
186
  Key(const Key &rhs, MEM_ROOT *mem_root);
 
187
  virtual ~Key() {}
 
188
  /* Equality comparison of keys (ignoring name) */
 
189
  friend bool foreign_key_prefix(Key *a, Key *b);
 
190
  /**
 
191
    Used to make a clone of this object for ALTER/CREATE TABLE
 
192
    @sa comment for Key_part_spec::clone
 
193
  */
 
194
  virtual Key *clone(MEM_ROOT *mem_root) const
 
195
    { return new (mem_root) Key(*this, mem_root); }
 
196
};
 
197
 
 
198
class Table_ident;
 
199
 
 
200
class Foreign_key: public Key {
 
201
public:
 
202
  enum fk_match_opt { FK_MATCH_UNDEF, FK_MATCH_FULL,
 
203
                      FK_MATCH_PARTIAL, FK_MATCH_SIMPLE};
 
204
  enum fk_option { FK_OPTION_UNDEF, FK_OPTION_RESTRICT, FK_OPTION_CASCADE,
 
205
                   FK_OPTION_SET_NULL, FK_OPTION_NO_ACTION, FK_OPTION_DEFAULT};
 
206
 
 
207
  Table_ident *ref_table;
 
208
  List<Key_part_spec> ref_columns;
 
209
  uint32_t delete_opt, update_opt, match_opt;
 
210
  Foreign_key(const LEX_STRING &name_arg, List<Key_part_spec> &cols,
 
211
              Table_ident *table,   List<Key_part_spec> &ref_cols,
 
212
              uint32_t delete_opt_arg, uint32_t update_opt_arg, uint32_t match_opt_arg)
 
213
    :Key(FOREIGN_KEY, name_arg, &default_key_create_info, 0, cols),
 
214
    ref_table(table), ref_columns(ref_cols),
 
215
    delete_opt(delete_opt_arg), update_opt(update_opt_arg),
 
216
    match_opt(match_opt_arg)
 
217
  {}
 
218
  Foreign_key(const Foreign_key &rhs, MEM_ROOT *mem_root);
 
219
  /**
 
220
    Used to make a clone of this object for ALTER/CREATE TABLE
 
221
    @sa comment for Key_part_spec::clone
 
222
  */
 
223
  virtual Key *clone(MEM_ROOT *mem_root) const
 
224
  { return new (mem_root) Foreign_key(*this, mem_root); }
 
225
  /* Used to validate foreign key options */
 
226
  bool validate(List<Create_field> &table_fields);
 
227
};
 
228
 
 
229
typedef struct st_mysql_lock
124
230
{
125
231
  Table **table;
126
 
  uint32_t table_count;
127
 
  uint32_t lock_count;
 
232
  uint32_t table_count,lock_count;
128
233
  THR_LOCK_DATA **locks;
129
234
} DRIZZLE_LOCK;
130
235
 
131
 
} /* namespace drizzled */
132
 
 
133
 
/** @TODO why is this in the middle of the file */
134
 
#include <drizzled/lex_column.h>
135
 
 
136
 
namespace drizzled
 
236
 
 
237
class LEX_COLUMN : public Sql_alloc
137
238
{
 
239
public:
 
240
  String column;
 
241
  uint32_t rights;
 
242
  LEX_COLUMN (const String& x,const  uint& y ): column (x),rights (y) {}
 
243
};
138
244
 
139
245
class select_result;
140
246
class Time_zone;
142
248
#define Session_SENTRY_MAGIC 0xfeedd1ff
143
249
#define Session_SENTRY_GONE  0xdeadbeef
144
250
 
 
251
#define Session_CHECK_SENTRY(session) assert(session->dbug_sentry == Session_SENTRY_MAGIC)
 
252
 
145
253
struct system_variables
146
254
{
147
 
  system_variables() {};
148
255
  /*
149
256
    How dynamically allocated system variables are handled:
150
 
 
 
257
    
151
258
    The global_system_variables and max_system_variables are "authoritative"
152
259
    They both should have the same 'version' and 'size'.
153
260
    When attempting to access a dynamic variable, if the session version
154
261
    is out of date, then the session version is updated and realloced if
155
262
    neccessary and bytes copied from global to make up for missing data.
156
 
  */
 
263
  */ 
157
264
  ulong dynamic_variables_version;
158
 
  char * dynamic_variables_ptr;
 
265
  char* dynamic_variables_ptr;
159
266
  uint32_t dynamic_variables_head;  /* largest valid variable offset */
160
267
  uint32_t dynamic_variables_size;  /* how many bytes are in use */
161
 
 
 
268
  
162
269
  uint64_t myisam_max_extra_sort_file_size;
 
270
  uint64_t myisam_max_sort_file_size;
163
271
  uint64_t max_heap_table_size;
164
272
  uint64_t tmp_table_size;
165
273
  ha_rows select_limit;
166
274
  ha_rows max_join_size;
167
 
  uint64_t auto_increment_increment;
168
 
  uint64_t auto_increment_offset;
169
 
  uint64_t bulk_insert_buff_size;
170
 
  uint64_t join_buff_size;
171
 
  uint32_t max_allowed_packet;
172
 
  uint64_t max_error_count;
173
 
  uint64_t max_length_for_sort_data;
174
 
  size_t max_sort_length;
175
 
  uint64_t min_examined_row_limit;
176
 
  bool optimizer_prune_level;
177
 
  bool log_warnings;
178
 
 
179
 
  uint32_t optimizer_search_depth;
180
 
  uint32_t div_precincrement;
181
 
  uint64_t preload_buff_size;
182
 
  uint32_t read_buff_size;
183
 
  uint32_t read_rnd_buff_size;
184
 
  size_t sortbuff_size;
185
 
  uint32_t thread_handling;
186
 
  uint32_t tx_isolation;
187
 
  uint32_t completion_type;
 
275
  ulong auto_increment_increment, auto_increment_offset;
 
276
  ulong bulk_insert_buff_size;
 
277
  ulong join_buff_size;
 
278
  ulong max_allowed_packet;
 
279
  ulong max_error_count;
 
280
  ulong max_length_for_sort_data;
 
281
  ulong max_sort_length;
 
282
  ulong max_tmp_tables;
 
283
  ulong min_examined_row_limit;
 
284
  ulong myisam_repair_threads;
 
285
  ulong myisam_sort_buff_size;
 
286
  ulong myisam_stats_method;
 
287
  ulong net_buffer_length;
 
288
  ulong net_interactive_timeout;
 
289
  ulong net_read_timeout;
 
290
  ulong net_retry_count;
 
291
  ulong net_wait_timeout;
 
292
  ulong net_write_timeout;
 
293
  ulong optimizer_prune_level;
 
294
  ulong optimizer_search_depth;
 
295
  /*
 
296
    Controls use of Engine-MRR:
 
297
      0 - auto, based on cost
 
298
      1 - force MRR when the storage engine is capable of doing it
 
299
      2 - disable MRR.
 
300
  */
 
301
  ulong optimizer_use_mrr; 
 
302
  /* A bitmap for switching optimizations on/off */
 
303
  ulong optimizer_switch;
 
304
  ulong preload_buff_size;
 
305
  ulong read_buff_size;
 
306
  ulong read_rnd_buff_size;
 
307
  ulong div_precincrement;
 
308
  ulong sortbuff_size;
 
309
  ulong thread_handling;
 
310
  ulong tx_isolation;
 
311
  ulong completion_type;
188
312
  /* Determines which non-standard SQL behaviour should be enabled */
189
 
  uint32_t sql_mode;
190
 
  uint64_t max_seeks_for_key;
191
 
  size_t range_alloc_block_size;
192
 
  uint32_t query_alloc_block_size;
193
 
  uint32_t query_prealloc_size;
194
 
  uint64_t group_concat_max_len;
 
313
  ulong sql_mode;
 
314
  ulong default_week_format;
 
315
  ulong max_seeks_for_key;
 
316
  ulong range_alloc_block_size;
 
317
  ulong query_alloc_block_size;
 
318
  ulong query_prealloc_size;
 
319
  ulong trans_alloc_block_size;
 
320
  ulong trans_prealloc_size;
 
321
  ulong log_warnings;
 
322
  ulong group_concat_max_len;
 
323
  ulong binlog_format; // binlog format for this session (see enum_binlog_format)
 
324
  /*
 
325
    In slave thread we need to know in behalf of which
 
326
    thread the query is being run to replicate temp tables properly
 
327
  */
 
328
  /* TODO: change this to my_thread_id - but have to fix set_var first */
195
329
  uint64_t pseudo_thread_id;
196
330
 
197
 
  plugin::StorageEngine *storage_engine;
 
331
  bool low_priority_updates;
 
332
  bool new_mode;
 
333
  /* 
 
334
    compatibility option:
 
335
      - index usage hints (USE INDEX without a FOR clause) behave as in 5.0 
 
336
  */
 
337
  bool old_mode;
 
338
  bool engine_condition_pushdown;
 
339
  bool keep_files_on_create;
 
340
 
 
341
  bool old_alter_table;
 
342
 
 
343
  plugin_ref table_plugin;
198
344
 
199
345
  /* Only charset part of these variables is sensible */
200
346
  const CHARSET_INFO  *character_set_filesystem;
 
347
  const CHARSET_INFO  *character_set_client;
 
348
  const CHARSET_INFO  *character_set_results;
201
349
 
202
350
  /* Both charset and collation parts of these variables are important */
203
351
  const CHARSET_INFO    *collation_server;
204
 
 
205
 
  inline const CHARSET_INFO  *getCollation(void) 
206
 
  {
207
 
    return collation_server;
208
 
  }
 
352
  const CHARSET_INFO    *collation_database;
 
353
  const CHARSET_INFO  *collation_connection;
209
354
 
210
355
  /* Locale Support */
211
356
  MY_LOCALE *lc_time_names;
212
357
 
213
358
  Time_zone *time_zone;
 
359
 
 
360
  /* DATE, DATETIME and DRIZZLE_TIME formats */
 
361
  DATE_TIME_FORMAT *date_format;
 
362
  DATE_TIME_FORMAT *datetime_format;
 
363
  DATE_TIME_FORMAT *time_format;
 
364
  bool sysdate_is_now;
 
365
 
214
366
};
215
367
 
216
368
extern struct system_variables global_system_variables;
217
369
 
218
 
} /* namespace drizzled */
219
 
 
220
 
#include "drizzled/sql_lex.h"
221
 
 
222
 
namespace drizzled
223
 
{
224
 
 
225
 
/**
226
 
 * Per-session local status counters
227
 
 */
 
370
#include "sql_lex.h"  /* only for SQLCOM_END */
 
371
 
 
372
/* per thread status variables */
 
373
 
228
374
typedef struct system_status_var
229
375
{
230
376
  uint64_t bytes_received;
231
377
  uint64_t bytes_sent;
232
378
  ulong com_other;
233
 
  ulong com_stat[(uint32_t) SQLCOM_END];
 
379
  ulong com_stat[(uint) SQLCOM_END];
234
380
  ulong created_tmp_disk_tables;
235
381
  ulong created_tmp_tables;
236
382
  ulong ha_commit_count;
246
392
  ulong ha_update_count;
247
393
  ulong ha_write_count;
248
394
  ulong ha_prepare_count;
 
395
  ulong ha_discover_count;
249
396
  ulong ha_savepoint_count;
250
397
  ulong ha_savepoint_rollback_count;
251
398
 
259
406
  /* END OF KEY_CACHE parts */
260
407
 
261
408
  ulong net_big_packet_count;
 
409
  ulong opened_tables;
 
410
  ulong opened_shares;
262
411
  ulong select_full_join_count;
263
412
  ulong select_full_range_join_count;
264
413
  ulong select_range_count;
269
418
  ulong filesort_range_count;
270
419
  ulong filesort_rows;
271
420
  ulong filesort_scan_count;
 
421
  /* Prepared statements and binary protocol */
 
422
  ulong com_stmt_prepare;
 
423
  ulong com_stmt_execute;
 
424
  ulong com_stmt_send_long_data;
 
425
  ulong com_stmt_fetch;
 
426
  ulong com_stmt_reset;
 
427
  ulong com_stmt_close;
272
428
  /*
273
429
    Number of statements sent from the client
274
430
  */
282
438
    sense to add to the /global/ status variable counter.
283
439
  */
284
440
  double last_query_cost;
285
 
} system_status_var;
 
441
 
 
442
 
 
443
} STATUS_VAR;
286
444
 
287
445
/*
288
446
  This is used for 'SHOW STATUS'. It must be updated to the last ulong
294
452
 
295
453
void mark_transaction_to_rollback(Session *session, bool all);
296
454
 
297
 
extern pthread_mutex_t LOCK_xid_cache;
298
 
extern HASH xid_cache;
 
455
#ifdef DRIZZLE_SERVER
 
456
 
 
457
class Query_arena
 
458
{
 
459
public:
 
460
  /*
 
461
    List of items created in the parser for this query. Every item puts
 
462
    itself to the list on creation (see Item::Item() for details))
 
463
  */
 
464
  Item *free_list;
 
465
  MEM_ROOT *mem_root;                   // Pointer to current memroot
 
466
 
 
467
  Query_arena(MEM_ROOT *mem_root_arg) :
 
468
    free_list(0), mem_root(mem_root_arg)
 
469
  { }
 
470
  /*
 
471
    This constructor is used only when Query_arena is created as
 
472
    backup storage for another instance of Query_arena.
 
473
  */
 
474
  Query_arena() { }
 
475
 
 
476
  virtual ~Query_arena() {};
 
477
 
 
478
  inline void* alloc(size_t size) { return alloc_root(mem_root,size); }
 
479
  inline void* calloc(size_t size)
 
480
  {
 
481
    void *ptr;
 
482
    if ((ptr=alloc_root(mem_root,size)))
 
483
      memset(ptr, 0, size);
 
484
    return ptr;
 
485
  }
 
486
  inline char *strdup(const char *str)
 
487
  { return strdup_root(mem_root,str); }
 
488
  inline char *strmake(const char *str, size_t size)
 
489
  { return strmake_root(mem_root,str,size); }
 
490
  inline void *memdup(const void *str, size_t size)
 
491
  { return memdup_root(mem_root,str,size); }
 
492
  inline void *memdup_w_gap(const void *str, size_t size, uint32_t gap)
 
493
  {
 
494
    void *ptr;
 
495
    if ((ptr= alloc_root(mem_root,size+gap)))
 
496
      memcpy(ptr,str,size);
 
497
    return ptr;
 
498
  }
 
499
 
 
500
  void free_items();
 
501
};
299
502
 
300
503
 
301
504
/**
302
 
  Storage engine specific thread local data.
 
505
  @class Statement
 
506
  @brief State of a single command executed against this connection.
 
507
 
 
508
  One connection can contain a lot of simultaneously running statements,
 
509
  some of which could be:
 
510
   - prepared, that is, contain placeholders,
 
511
  To perform some action with statement we reset Session part to the state  of
 
512
  that statement, do the action, and then save back modified state from Session
 
513
  to the statement. It will be changed in near future, and Statement will
 
514
  be used explicitly.
303
515
*/
304
 
struct Ha_data
 
516
 
 
517
class Statement: public ilink, public Query_arena
305
518
{
306
 
  /**
307
 
    Storage engine specific thread local data.
308
 
    Lifetime: one user connection.
 
519
  Statement(const Statement &rhs);              /* not implemented: */
 
520
  Statement &operator=(const Statement &rhs);   /* non-copyable */
 
521
public:
 
522
  /*
 
523
    Uniquely identifies each statement object in thread scope; change during
 
524
    statement lifetime. FIXME: must be const
309
525
  */
310
 
  void *ha_ptr;
311
 
  /**
312
 
   * Resource contexts for both the "statement" and "normal"
313
 
   * transactions.
314
 
   *
315
 
   * Resource context at index 0:
316
 
   *
317
 
   * Life time: one statement within a transaction. If @@autocommit is
318
 
   * on, also represents the entire transaction.
319
 
   *
320
 
   * Resource context at index 1:
321
 
   *
322
 
   * Life time: one transaction within a connection. 
323
 
   *
324
 
   * @note
325
 
   *
326
 
   * If the storage engine does not participate in a transaction, 
327
 
   * there will not be a resource context.
328
 
   */
329
 
  drizzled::ResourceContext resource_context[2];
330
 
 
331
 
  Ha_data() :ha_ptr(NULL) {}
332
 
};
333
 
 
334
 
/**
335
 
 * Represents a client connection to the database server.
336
 
 *
337
 
 * Contains the client/server protocol object, the current statement
338
 
 * being executed, local-to-session variables and status counters, and
339
 
 * a host of other information.
340
 
 *
341
 
 * @todo
342
 
 *
343
 
 * The Session class should have a vector of Statement object pointers which
344
 
 * comprise the statements executed on the Session. Until this architectural
345
 
 * change is done, we can forget about parallel operations inside a session.
346
 
 *
347
 
 * @todo
348
 
 *
349
 
 * Make member variables private and have inlined accessors and setters.  Hide
350
 
 * all member variables that are not critical to non-internal operations of the
351
 
 * session object.
352
 
 */
353
 
class Session : public Open_tables_state
354
 
{
355
 
public:
 
526
   ulong id;
 
527
 
356
528
  /*
357
529
    MARK_COLUMNS_NONE:  Means mark_used_colums is not set and no indicator to
358
530
                        handler of fields used is set
365
537
                        and update_row.
366
538
  */
367
539
  enum enum_mark_columns mark_used_columns;
368
 
  inline void* alloc(size_t size)
369
 
  {
370
 
    return alloc_root(mem_root,size);
371
 
  }
372
 
  inline void* calloc(size_t size)
373
 
  {
374
 
    void *ptr;
375
 
    if ((ptr= alloc_root(mem_root,size)))
376
 
      memset(ptr, 0, size);
377
 
    return ptr;
378
 
  }
379
 
  inline char *strdup(const char *str)
380
 
  {
381
 
    return strdup_root(mem_root,str);
382
 
  }
383
 
  inline char *strmake(const char *str, size_t size)
384
 
  {
385
 
    return strmake_root(mem_root,str,size);
386
 
  }
387
 
  inline void *memdup(const void *str, size_t size)
388
 
  {
389
 
    return memdup_root(mem_root,str,size);
390
 
  }
391
 
  inline void *memdup_w_gap(const void *str, size_t size, uint32_t gap)
392
 
  {
393
 
    void *ptr;
394
 
    if ((ptr= alloc_root(mem_root,size+gap)))
395
 
      memcpy(ptr,str,size);
396
 
    return ptr;
397
 
  }
398
 
  /** Frees all items attached to this Statement */
399
 
  void free_items();
400
 
  /**
401
 
   * List of items created in the parser for this query. Every item puts
402
 
   * itself to the list on creation (see Item::Item() for details))
403
 
   */
404
 
  Item *free_list;
405
 
  memory::Root *mem_root; /**< Pointer to current memroot */
406
 
  /**
407
 
   * Uniquely identifies each statement object in thread scope; change during
408
 
   * statement lifetime.
409
 
   *
410
 
   * @todo should be const
411
 
   */
412
 
  uint32_t id;
413
 
  LEX *lex; /**< parse tree descriptor */
414
 
  /** query associated with this statement */
415
 
  std::string query;
 
540
 
 
541
  LEX *lex;                                     // parse tree descriptor
 
542
  /*
 
543
    Points to the query associated with this statement. It's const, but
 
544
    we need to declare it char * because all table handlers are written
 
545
    in C and need to point to it.
 
546
 
 
547
    Note that (A) if we set query = NULL, we must at the same time set
 
548
    query_length = 0, and protect the whole operation with the
 
549
    LOCK_thread_count mutex. And (B) we are ONLY allowed to set query to a
 
550
    non-NULL value if its previous value is NULL. We do not need to protect
 
551
    operation (B) with any mutex. To avoid crashes in races, if we do not
 
552
    know that session->query cannot change at the moment, one should print
 
553
    session->query like this:
 
554
      (1) reserve the LOCK_thread_count mutex;
 
555
      (2) check if session->query is NULL;
 
556
      (3) if not NULL, then print at most session->query_length characters from
 
557
      it. We will see the query_length field as either 0, or the right value
 
558
      for it.
 
559
    Assuming that the write and read of an n-bit memory field in an n-bit
 
560
    computer is atomic, we can avoid races in the above way. 
 
561
    This printing is needed at least in SHOW PROCESSLIST and SHOW INNODB
 
562
    STATUS.
 
563
  */
 
564
  char *query;
 
565
  uint32_t query_length;                          // current query length
416
566
 
417
567
  /**
418
568
    Name of the current (default) database.
426
576
    the Session of that thread); that thread is (and must remain, for now) the
427
577
    only responsible for freeing this member.
428
578
  */
429
 
  std::string db;
430
 
 
431
 
  /**
 
579
 
 
580
  char *db;
 
581
  uint32_t db_length;
 
582
 
 
583
public:
 
584
 
 
585
  /* This constructor is called for backup statements */
 
586
  Statement() {}
 
587
 
 
588
  Statement(LEX *lex_arg, MEM_ROOT *mem_root_arg, ulong id_arg);
 
589
  ~Statement() {}
 
590
};
 
591
 
 
592
struct st_savepoint {
 
593
  struct st_savepoint *prev;
 
594
  char                *name;
 
595
  uint32_t                 length;
 
596
  Ha_trx_info         *ha_list;
 
597
};
 
598
 
 
599
enum xa_states {XA_NOTR=0, XA_ACTIVE, XA_IDLE, XA_PREPARED};
 
600
extern const char *xa_state_names[];
 
601
 
 
602
typedef struct st_xid_state {
 
603
  /* For now, this is only used to catch duplicated external xids */
 
604
  XID  xid;                           // transaction identifier
 
605
  enum xa_states xa_state;            // used by external XA only
 
606
  bool in_session;
 
607
} XID_STATE;
 
608
 
 
609
extern pthread_mutex_t LOCK_xid_cache;
 
610
extern HASH xid_cache;
 
611
bool xid_cache_init(void);
 
612
void xid_cache_free(void);
 
613
XID_STATE *xid_cache_search(XID *xid);
 
614
bool xid_cache_insert(XID *xid, enum xa_states xa_state);
 
615
bool xid_cache_insert(XID_STATE *xid_state);
 
616
void xid_cache_delete(XID_STATE *xid_state);
 
617
 
 
618
/**
 
619
  @class Security_context
 
620
  @brief A set of Session members describing the current authenticated user.
 
621
*/
 
622
 
 
623
class Security_context {
 
624
public:
 
625
  Security_context() {}                       /* Remove gcc warning */
 
626
  /*
 
627
    host - host of the client
 
628
    user - user of the client, set to NULL until the user has been read from
 
629
    the connection
 
630
    priv_user - The user privilege we are using. May be "" for anonymous user.
 
631
    ip - client IP
 
632
  */
 
633
  char *user; 
 
634
  char *ip;
 
635
 
 
636
  void init();
 
637
  void destroy();
 
638
  void skip_grants();
 
639
  inline char *priv_host_name()
 
640
  {
 
641
    return (ip ? ip : (char *)"%");
 
642
  }
 
643
};
 
644
 
 
645
 
 
646
/**
 
647
  A registry for item tree transformations performed during
 
648
  query optimization. We register only those changes which require
 
649
  a rollback to re-execute a prepared statement or stored procedure
 
650
  yet another time.
 
651
*/
 
652
 
 
653
struct Item_change_record;
 
654
typedef I_List<Item_change_record> Item_change_list;
 
655
 
 
656
 
 
657
/**
 
658
  Class that holds information about tables which were opened and locked
 
659
  by the thread. It is also used to save/restore this information in
 
660
  push_open_tables_state()/pop_open_tables_state().
 
661
*/
 
662
 
 
663
class Open_tables_state
 
664
{
 
665
public:
 
666
  /**
 
667
    List of regular tables in use by this thread. Contains temporary and
 
668
    base tables that were opened with @see open_tables().
 
669
  */
 
670
  Table *open_tables;
 
671
  /**
 
672
    List of temporary tables used by this thread. Contains user-level
 
673
    temporary tables, created with CREATE TEMPORARY TABLE, and
 
674
    internal temporary tables, created, e.g., to resolve a SELECT,
 
675
    or for an intermediate table used in ALTER.
 
676
    XXX Why are internal temporary tables added to this list?
 
677
  */
 
678
  Table *temporary_tables;
 
679
  /**
 
680
    List of tables that were opened with HANDLER OPEN and are
 
681
    still in use by this thread.
 
682
  */
 
683
  Table *handler_tables;
 
684
  Table *derived_tables;
 
685
  /*
 
686
    During a MySQL session, one can lock tables in two modes: automatic
 
687
    or manual. In automatic mode all necessary tables are locked just before
 
688
    statement execution, and all acquired locks are stored in 'lock'
 
689
    member. Unlocking takes place automatically as well, when the
 
690
    statement ends.
 
691
    Manual mode comes into play when a user issues a 'LOCK TABLES'
 
692
    statement. In this mode the user can only use the locked tables.
 
693
    Trying to use any other tables will give an error. The locked tables are
 
694
    stored in 'locked_tables' member.  Manual locking is described in
 
695
    the 'LOCK_TABLES' chapter of the MySQL manual.
 
696
    See also lock_tables() for details.
 
697
  */
 
698
  DRIZZLE_LOCK *lock;
 
699
  /*
 
700
    Tables that were locked with explicit or implicit LOCK TABLES.
 
701
    (Implicit LOCK TABLES happens when we are prelocking tables for
 
702
     execution of statement which uses stored routines. See description
 
703
     Session::prelocked_mode for more info.)
 
704
  */
 
705
  DRIZZLE_LOCK *locked_tables;
 
706
 
 
707
  /*
 
708
    CREATE-SELECT keeps an extra lock for the table being
 
709
    created. This field is used to keep the extra lock available for
 
710
    lower level routines, which would otherwise miss that lock.
 
711
   */
 
712
  DRIZZLE_LOCK *extra_lock;
 
713
 
 
714
  ulong version;
 
715
  uint32_t current_tablenr;
 
716
 
 
717
  enum enum_flags {
 
718
    BACKUPS_AVAIL = (1U << 0)     /* There are backups available */
 
719
  };
 
720
 
 
721
  /*
 
722
    Flags with information about the open tables state.
 
723
  */
 
724
  uint32_t state_flags;
 
725
 
 
726
  /*
 
727
    This constructor serves for creation of Open_tables_state instances
 
728
    which are used as backup storage.
 
729
  */
 
730
  Open_tables_state() : state_flags(0U) { }
 
731
 
 
732
  Open_tables_state(ulong version_arg);
 
733
 
 
734
  void set_open_tables_state(Open_tables_state *state)
 
735
  {
 
736
    *this= *state;
 
737
  }
 
738
 
 
739
  void reset_open_tables_state()
 
740
  {
 
741
    open_tables= temporary_tables= handler_tables= derived_tables= 0;
 
742
    extra_lock= lock= locked_tables= 0;
 
743
    state_flags= 0U;
 
744
  }
 
745
};
 
746
 
 
747
 
 
748
/* Flags for the Session::system_thread variable */
 
749
enum enum_thread_type
 
750
{
 
751
  NON_SYSTEM_THREAD,
 
752
  SYSTEM_THREAD_SLAVE_IO,
 
753
  SYSTEM_THREAD_SLAVE_SQL
 
754
};
 
755
 
 
756
 
 
757
/**
 
758
  This class represents the interface for internal error handlers.
 
759
  Internal error handlers are exception handlers used by the server
 
760
  implementation.
 
761
*/
 
762
class Internal_error_handler
 
763
{
 
764
protected:
 
765
  Internal_error_handler() {}
 
766
  virtual ~Internal_error_handler() {}
 
767
 
 
768
public:
 
769
  /**
 
770
    Handle an error condition.
 
771
    This method can be implemented by a subclass to achieve any of the
 
772
    following:
 
773
    - mask an error internally, prevent exposing it to the user,
 
774
    - mask an error and throw another one instead.
 
775
    When this method returns true, the error condition is considered
 
776
    'handled', and will not be propagated to upper layers.
 
777
    It is the responsability of the code installing an internal handler
 
778
    to then check for trapped conditions, and implement logic to recover
 
779
    from the anticipated conditions trapped during runtime.
 
780
 
 
781
    This mechanism is similar to C++ try/throw/catch:
 
782
    - 'try' correspond to <code>Session::push_internal_handler()</code>,
 
783
    - 'throw' correspond to <code>my_error()</code>,
 
784
    which invokes <code>my_message_sql()</code>,
 
785
    - 'catch' correspond to checking how/if an internal handler was invoked,
 
786
    before removing it from the exception stack with
 
787
    <code>Session::pop_internal_handler()</code>.
 
788
 
 
789
    @param sql_errno the error number
 
790
    @param level the error level
 
791
    @param session the calling thread
 
792
    @return true if the error is handled
 
793
  */
 
794
  virtual bool handle_error(uint32_t sql_errno,
 
795
                            const char *message,
 
796
                            DRIZZLE_ERROR::enum_warning_level level,
 
797
                            Session *session) = 0;
 
798
};
 
799
 
 
800
 
 
801
/**
 
802
  Stores status of the currently executed statement.
 
803
  Cleared at the beginning of the statement, and then
 
804
  can hold either OK, ERROR, or EOF status.
 
805
  Can not be assigned twice per statement.
 
806
*/
 
807
 
 
808
class Diagnostics_area
 
809
{
 
810
public:
 
811
  enum enum_diagnostics_status
 
812
  {
 
813
    /** The area is cleared at start of a statement. */
 
814
    DA_EMPTY= 0,
 
815
    /** Set whenever one calls my_ok(). */
 
816
    DA_OK,
 
817
    /** Set whenever one calls my_eof(). */
 
818
    DA_EOF,
 
819
    /** Set whenever one calls my_error() or my_message(). */
 
820
    DA_ERROR,
 
821
    /** Set in case of a custom response, such as one from COM_STMT_PREPARE. */
 
822
    DA_DISABLED
 
823
  };
 
824
  /** True if status information is sent to the client. */
 
825
  bool is_sent;
 
826
  /** Set to make set_error_status after set_{ok,eof}_status possible. */
 
827
  bool can_overwrite_status;
 
828
 
 
829
  void set_ok_status(Session *session, ha_rows affected_rows_arg,
 
830
                     uint64_t last_insert_id_arg,
 
831
                     const char *message);
 
832
  void set_eof_status(Session *session);
 
833
  void set_error_status(Session *session, uint32_t sql_errno_arg, const char *message_arg);
 
834
 
 
835
  void disable_status();
 
836
 
 
837
  void reset_diagnostics_area();
 
838
 
 
839
  bool is_set() const { return m_status != DA_EMPTY; }
 
840
  bool is_error() const { return m_status == DA_ERROR; }
 
841
  bool is_eof() const { return m_status == DA_EOF; }
 
842
  bool is_ok() const { return m_status == DA_OK; }
 
843
  bool is_disabled() const { return m_status == DA_DISABLED; }
 
844
  enum_diagnostics_status status() const { return m_status; }
 
845
 
 
846
  const char *message() const
 
847
  { assert(m_status == DA_ERROR || m_status == DA_OK); return m_message; }
 
848
 
 
849
  uint32_t sql_errno() const
 
850
  { assert(m_status == DA_ERROR); return m_sql_errno; }
 
851
 
 
852
  uint32_t server_status() const
 
853
  {
 
854
    assert(m_status == DA_OK || m_status == DA_EOF);
 
855
    return m_server_status;
 
856
  }
 
857
 
 
858
  ha_rows affected_rows() const
 
859
  { assert(m_status == DA_OK); return m_affected_rows; }
 
860
 
 
861
  uint64_t last_insert_id() const
 
862
  { assert(m_status == DA_OK); return m_last_insert_id; }
 
863
 
 
864
  uint32_t total_warn_count() const
 
865
  {
 
866
    assert(m_status == DA_OK || m_status == DA_EOF);
 
867
    return m_total_warn_count;
 
868
  }
 
869
 
 
870
  Diagnostics_area() { reset_diagnostics_area(); }
 
871
 
 
872
private:
 
873
  /** Message buffer. Can be used by OK or ERROR status. */
 
874
  char m_message[DRIZZLE_ERRMSG_SIZE];
 
875
  /**
 
876
    SQL error number. One of ER_ codes from share/errmsg.txt.
 
877
    Set by set_error_status.
 
878
  */
 
879
  uint32_t m_sql_errno;
 
880
 
 
881
  /**
 
882
    Copied from session->server_status when the diagnostics area is assigned.
 
883
    We need this member as some places in the code use the following pattern:
 
884
    session->server_status|= ...
 
885
    my_eof(session);
 
886
    session->server_status&= ~...
 
887
    Assigned by OK, EOF or ERROR.
 
888
  */
 
889
  uint32_t m_server_status;
 
890
  /**
 
891
    The number of rows affected by the last statement. This is
 
892
    semantically close to session->row_count_func, but has a different
 
893
    life cycle. session->row_count_func stores the value returned by
 
894
    function ROW_COUNT() and is cleared only by statements that
 
895
    update its value, such as INSERT, UPDATE, DELETE and few others.
 
896
    This member is cleared at the beginning of the next statement.
 
897
 
 
898
    We could possibly merge the two, but life cycle of session->row_count_func
 
899
    can not be changed.
 
900
  */
 
901
  ha_rows    m_affected_rows;
 
902
  /**
 
903
    Similarly to the previous member, this is a replacement of
 
904
    session->first_successful_insert_id_in_prev_stmt, which is used
 
905
    to implement LAST_INSERT_ID().
 
906
  */
 
907
  uint64_t   m_last_insert_id;
 
908
  /** The total number of warnings. */
 
909
  uint       m_total_warn_count;
 
910
  enum_diagnostics_status m_status;
 
911
  /**
 
912
    @todo: the following Session members belong here:
 
913
    - warn_list, warn_count,
 
914
  */
 
915
};
 
916
 
 
917
 
 
918
/**
 
919
  Storage engine specific thread local data.
 
920
*/
 
921
 
 
922
struct Ha_data
 
923
{
 
924
  /**
 
925
    Storage engine specific thread local data.
 
926
    Lifetime: one user connection.
 
927
  */
 
928
  void *ha_ptr;
 
929
  /**
 
930
    0: Life time: one statement within a transaction. If @@autocommit is
 
931
    on, also represents the entire transaction.
 
932
    @sa trans_register_ha()
 
933
 
 
934
    1: Life time: one transaction within a connection.
 
935
    If the storage engine does not participate in a transaction,
 
936
    this should not be used.
 
937
    @sa trans_register_ha()
 
938
  */
 
939
  Ha_trx_info ha_info[2];
 
940
 
 
941
  Ha_data() :ha_ptr(NULL) {}
 
942
};
 
943
 
 
944
 
 
945
/**
 
946
  @class Session
 
947
  For each client connection we create a separate thread with Session serving as
 
948
  a thread/connection descriptor
 
949
*/
 
950
 
 
951
class Session :public Statement,
 
952
           public Open_tables_state
 
953
{
 
954
public:
 
955
  /* Used to execute base64 coded binlog events in MySQL server */
 
956
  Relay_log_info* rli_fake;
 
957
 
 
958
  /*
432
959
    Constant for Session::where initialization in the beginning of every query.
433
960
 
434
961
    It's needed because we do not save/restore Session::where normally during
436
963
  */
437
964
  static const char * const DEFAULT_WHERE;
438
965
 
439
 
  memory::Root warn_root; /**< Allocation area for warnings and errors */
440
 
  plugin::Client *client; /**< Pointer to client object */
441
 
  plugin::Scheduler *scheduler; /**< Pointer to scheduler object */
442
 
  void *scheduler_arg; /**< Pointer to the optional scheduler argument */
443
 
  HASH user_vars; /**< Hash of user variables defined during the session's lifetime */
444
 
  struct system_variables variables; /**< Mutable local variables local to the session */
445
 
  struct system_status_var status_var; /**< Session-local status counters */
446
 
  struct system_status_var *initial_status_var; /* used by show status */
447
 
  THR_LOCK_INFO lock_info; /**< Locking information for this session */
448
 
  THR_LOCK_OWNER main_lock_id; /**< To use for conventional queries */
449
 
  THR_LOCK_OWNER *lock_id; /**< If not main_lock_id, points to the lock_id of a cursor. */
450
 
  pthread_mutex_t LOCK_delete; /**< Locked before session is deleted */
451
 
 
452
 
  /**
453
 
   * A peek into the query string for the session. This is a best effort
454
 
   * delivery, there is no guarantee whether the content is meaningful.
455
 
   */
456
 
  char process_list_info[PROCESS_LIST_WIDTH+1];
457
 
 
458
 
  /**
459
 
   * A pointer to the stack frame of the scheduler thread
460
 
   * which is called first in the thread for handling a client
461
 
   */
462
 
  char *thread_stack;
463
 
 
464
 
private:
465
 
  SecurityContext security_ctx;
466
 
 
467
 
  inline void checkSentry() const
468
 
  {
469
 
    assert(this->dbug_sentry == Session_SENTRY_MAGIC);
470
 
  }
471
 
public:
472
 
  const SecurityContext& getSecurityContext() const
473
 
  {
474
 
    return security_ctx;
475
 
  }
476
 
 
477
 
  SecurityContext& getSecurityContext()
478
 
  {
479
 
    return security_ctx;
480
 
  }
481
 
 
482
 
  /**
483
 
   * Is this session viewable by the current user?
484
 
   */
485
 
  bool isViewable() const
486
 
  {
487
 
    return plugin::Authorization::isAuthorized(current_session->getSecurityContext(),
488
 
                                               this,
489
 
                                               false);
490
 
  }
491
 
 
492
 
  /**
 
966
  NET     net;                          // client connection descriptor
 
967
  MEM_ROOT warn_root;                   // For warnings and errors
 
968
  Protocol *protocol;                   // Current protocol
 
969
  Protocol_text   protocol_text;        // Normal protocol
 
970
  HASH    user_vars;                    // hash for user variables
 
971
  String  packet;                       // dynamic buffer for network I/O
 
972
  String  convert_buffer;               // buffer for charset conversions
 
973
  struct  rand_struct rand;             // used for authentication
 
974
  struct  system_variables variables;   // Changeable local variables
 
975
  struct  system_status_var status_var; // Per thread statistic vars
 
976
  struct  system_status_var *initial_status_var; /* used by show status */
 
977
  THR_LOCK_INFO lock_info;              // Locking info of this thread
 
978
  THR_LOCK_OWNER main_lock_id;          // To use for conventional queries
 
979
  THR_LOCK_OWNER *lock_id;              // If not main_lock_id, points to
 
980
                                        // the lock_id of a cursor.
 
981
  pthread_mutex_t LOCK_delete;          // Locked before session is deleted
 
982
  /*
 
983
    A pointer to the stack frame of handle_one_connection(),
 
984
    which is called first in the thread for handling a client
 
985
  */
 
986
  char    *thread_stack;
 
987
 
 
988
  /**
 
989
    Currently selected catalog.
 
990
  */
 
991
  char *catalog;
 
992
 
 
993
  /**
 
994
    @note
 
995
    Some members of Session (currently 'Statement::db',
 
996
    'catalog' and 'query')  are set and alloced by the slave SQL thread
 
997
    (for the Session of that thread); that thread is (and must remain, for now)
 
998
    the only responsible for freeing these 3 members. If you add members
 
999
    here, and you add code to set them in replication, don't forget to
 
1000
    free_them_and_set_them_to_0 in replication properly. For details see
 
1001
    the 'err:' label of the handle_slave_sql() in sql/slave.cc.
 
1002
 
 
1003
    @see handle_slave_sql
 
1004
  */
 
1005
 
 
1006
  Security_context main_security_ctx;
 
1007
  Security_context *security_ctx;
 
1008
 
 
1009
  /*
 
1010
    Points to info-string that we show in SHOW PROCESSLIST
 
1011
    You are supposed to call Session_SET_PROC_INFO only if you have coded
 
1012
    a time-consuming piece that MySQL can get stuck in for a long time.
 
1013
 
 
1014
    Set it using the  session_proc_info(Session *thread, const char *message)
 
1015
    macro/function.
 
1016
  */
 
1017
  void        set_proc_info(const char *info) { proc_info= info; }
 
1018
  const char* get_proc_info() const { return proc_info; }
 
1019
 
 
1020
  /*
493
1021
    Used in error messages to tell user in what part of MySQL we found an
494
1022
    error. E. g. when where= "having clause", if fix_fields() fails, user
495
1023
    will know that the error was in having clause.
496
1024
  */
497
1025
  const char *where;
498
1026
 
 
1027
  double tmp_double_value;                    /* Used in set_var.cc */
 
1028
  ulong client_capabilities;            /* What the client supports */
 
1029
  ulong max_client_packet_length;
 
1030
 
 
1031
  HASH          handler_tables_hash;
499
1032
  /*
500
1033
    One thread can hold up to one named user-level lock. This variable
501
1034
    points to a lock object if the lock is present. See item_func.cc and
502
 
    chapter 'Miscellaneous functions', for functions GET_LOCK, RELEASE_LOCK.
503
 
  */
504
 
  uint32_t dbug_sentry; /**< watch for memory corruption */
505
 
  internal::st_my_thread_var *mysys_var;
506
 
  /**
507
 
   * Type of current query: COM_STMT_PREPARE, COM_QUERY, etc. Set from
508
 
   * first byte of the packet in executeStatement()
509
 
   */
 
1035
    chapter 'Miscellaneous functions', for functions GET_LOCK, RELEASE_LOCK. 
 
1036
  */
 
1037
  uint32_t dbug_sentry; // watch out for memory corruption
 
1038
  struct st_my_thread_var *mysys_var;
 
1039
  /*
 
1040
    Type of current query: COM_STMT_PREPARE, COM_QUERY, etc. Set from
 
1041
    first byte of the packet in do_command()
 
1042
  */
510
1043
  enum enum_server_command command;
511
 
  uint32_t file_id;     /**< File ID for LOAD DATA INFILE */
512
 
  /* @note the following three members should likely move to Client */
513
 
  uint32_t max_client_packet_length; /**< Maximum number of bytes a client can send in a single packet */
514
 
  time_t start_time;
515
 
  time_t user_time;
516
 
  uint64_t thr_create_utime; /**< track down slow pthread_create */
517
 
  uint64_t start_utime;
518
 
  uint64_t utime_after_lock;
519
 
 
 
1044
  uint32_t     server_id;
 
1045
  uint32_t     file_id;                 // for LOAD DATA INFILE
 
1046
  /* remote (peer) port */
 
1047
  uint16_t peer_port;
 
1048
  time_t     start_time, user_time;
 
1049
  uint64_t  connect_utime, thr_create_utime; // track down slow pthread_create
 
1050
  uint64_t  start_utime, utime_after_lock;
 
1051
  
520
1052
  thr_lock_type update_lock_default;
521
1053
 
522
 
  /*
523
 
    Both of the following container points in session will be converted to an API.
524
 
  */
525
 
 
526
 
private:
527
1054
  /* container for handler's private per-connection data */
528
 
  std::vector<Ha_data> ha_data;
529
 
  /*
530
 
    Id of current query. Statement can be reused to execute several queries
531
 
    query_id is global in context of the whole MySQL server.
532
 
    ID is automatically generated from an atomic counter.
533
 
    It's used in Cursor code for various purposes: to check which columns
534
 
    from table are necessary for this select, to check if it's necessary to
535
 
    update auto-updatable fields (like auto_increment and timestamp).
536
 
  */
537
 
  query_id_t query_id;
538
 
  query_id_t warn_query_id;
539
 
public:
540
 
  void **getEngineData(const plugin::MonitoredInTransaction *monitored);
541
 
  ResourceContext *getResourceContext(const plugin::MonitoredInTransaction *monitored,
542
 
                                      size_t index= 0);
 
1055
  Ha_data ha_data[MAX_HA];
 
1056
 
 
1057
  /* Place to store various things */
 
1058
  void *session_marker;
 
1059
  int binlog_setup_trx_data();
 
1060
 
 
1061
  /*
 
1062
    Public interface to write RBR events to the binlog
 
1063
  */
 
1064
  void binlog_start_trans_and_stmt();
 
1065
  void binlog_set_stmt_begin();
 
1066
  int binlog_write_table_map(Table *table, bool is_transactional);
 
1067
  int binlog_write_row(Table* table, bool is_transactional,
 
1068
                       const unsigned char *new_data);
 
1069
  int binlog_delete_row(Table* table, bool is_transactional,
 
1070
                        const unsigned char *old_data);
 
1071
  int binlog_update_row(Table* table, bool is_transactional,
 
1072
                        const unsigned char *old_data, const unsigned char *new_data);
 
1073
 
 
1074
  void set_server_id(uint32_t sid) { server_id = sid; }
 
1075
 
 
1076
  /*
 
1077
    Member functions to handle pending event for row-level logging.
 
1078
  */
 
1079
  template <class RowsEventT> Rows_log_event*
 
1080
    binlog_prepare_pending_rows_event(Table* table, uint32_t serv_id,
 
1081
                                      size_t needed,
 
1082
                                      bool is_transactional,
 
1083
                                      RowsEventT* hint);
 
1084
  Rows_log_event* binlog_get_pending_rows_event() const;
 
1085
  void            binlog_set_pending_rows_event(Rows_log_event* ev);
 
1086
  int binlog_flush_pending_rows_event(bool stmt_end);
 
1087
 
 
1088
private:
 
1089
  uint32_t binlog_table_maps; // Number of table maps currently in the binlog
 
1090
 
 
1091
  enum enum_binlog_flag {
 
1092
    BINLOG_FLAG_UNSAFE_STMT_PRINTED,
 
1093
    BINLOG_FLAG_COUNT
 
1094
  };
 
1095
 
 
1096
  /**
 
1097
     Flags with per-thread information regarding the status of the
 
1098
     binary log.
 
1099
   */
 
1100
  uint32_t binlog_flags;
 
1101
public:
 
1102
  uint32_t get_binlog_table_maps() const {
 
1103
    return binlog_table_maps;
 
1104
  }
 
1105
  void clear_binlog_table_maps() {
 
1106
    binlog_table_maps= 0;
 
1107
  }
 
1108
 
 
1109
public:
543
1110
 
544
1111
  struct st_transactions {
545
 
    std::deque<NamedSavepoint> savepoints;
546
 
    TransactionContext all; ///< Trans since BEGIN WORK
547
 
    TransactionContext stmt; ///< Trans for current statement
 
1112
    SAVEPOINT *savepoints;
 
1113
    Session_TRANS all;                  // Trans since BEGIN WORK
 
1114
    Session_TRANS stmt;                 // Trans for current statement
 
1115
    bool on;                            // see ha_enable_transaction()
548
1116
    XID_STATE xid_state;
 
1117
    Rows_log_event *m_pending_rows_event;
549
1118
 
 
1119
    /*
 
1120
       Tables changed in transaction (that must be invalidated in query cache).
 
1121
       List contain only transactional tables, that not invalidated in query
 
1122
       cache (instead of full list of changed in transaction tables).
 
1123
    */
 
1124
    CHANGED_TableList* changed_tables;
 
1125
    MEM_ROOT mem_root; // Transaction-life memory allocation pool
550
1126
    void cleanup()
551
1127
    {
552
 
      savepoints.clear();
553
 
    }
554
 
    st_transactions() :
555
 
      savepoints(),
556
 
      all(),
557
 
      stmt(),
558
 
      xid_state()
559
 
    { }
 
1128
      changed_tables= 0;
 
1129
      savepoints= 0;
 
1130
      free_root(&mem_root,MYF(MY_KEEP_PREALLOC));
 
1131
    }
 
1132
    st_transactions()
 
1133
    {
 
1134
      memset(this, 0, sizeof(*this));
 
1135
      xid_state.xid.null();
 
1136
      init_sql_alloc(&mem_root, ALLOC_ROOT_MIN_BLOCK_SIZE, 0);
 
1137
    }
560
1138
  } transaction;
561
 
 
562
 
  Field *dup_field;
 
1139
  Field      *dup_field;
563
1140
  sigset_t signals;
 
1141
  /*
 
1142
    This is to track items changed during execution of a prepared
 
1143
    statement/stored procedure. It's created by
 
1144
    register_item_tree_change() in memory root of Session, and freed in
 
1145
    rollback_item_tree_changes(). For conventional execution it's always
 
1146
    empty.
 
1147
  */
 
1148
  Item_change_list change_list;
564
1149
 
565
1150
  /* Tells if LAST_INSERT_ID(#) was called for the current statement */
566
1151
  bool arg_of_last_insert_id_function;
568
1153
    ALL OVER THIS FILE, "insert_id" means "*automatically generated* value for
569
1154
    insertion into an auto_increment column".
570
1155
  */
571
 
  /**
 
1156
  /*
572
1157
    This is the first autogenerated insert id which was *successfully*
573
1158
    inserted by the previous statement (exactly, if the previous statement
574
1159
    didn't successfully insert an autogenerated insert id, then it's the one
576
1161
    It can also be set by SET LAST_INSERT_ID=# or SELECT LAST_INSERT_ID(#).
577
1162
    It is returned by LAST_INSERT_ID().
578
1163
  */
579
 
  uint64_t first_successful_insert_id_in_prev_stmt;
580
 
  /**
 
1164
  uint64_t  first_successful_insert_id_in_prev_stmt;
 
1165
  /*
 
1166
    Variant of the above, used for storing in statement-based binlog. The
 
1167
    difference is that the one above can change as the execution of a stored
 
1168
    function progresses, while the one below is set once and then does not
 
1169
    change (which is the value which statement-based binlog needs).
 
1170
  */
 
1171
  uint64_t  first_successful_insert_id_in_prev_stmt_for_binlog;
 
1172
  /*
581
1173
    This is the first autogenerated insert id which was *successfully*
582
1174
    inserted by the current statement. It is maintained only to set
583
1175
    first_successful_insert_id_in_prev_stmt when statement ends.
584
1176
  */
585
 
  uint64_t first_successful_insert_id_in_cur_stmt;
586
 
  /**
 
1177
  uint64_t  first_successful_insert_id_in_cur_stmt;
 
1178
  /*
587
1179
    We follow this logic:
588
1180
    - when stmt starts, first_successful_insert_id_in_prev_stmt contains the
589
1181
    first insert id successfully inserted by the previous stmt.
599
1191
    non-empty.
600
1192
    - when stmt ends, first_successful_insert_id_in_prev_stmt is set to
601
1193
    first_successful_insert_id_in_cur_stmt.
602
 
 
 
1194
  */
 
1195
  /*
 
1196
    stmt_depends_on_first_successful_insert_id_in_prev_stmt is set when
 
1197
    LAST_INSERT_ID() is used by a statement.
 
1198
    If it is set, first_successful_insert_id_in_prev_stmt_for_binlog will be
 
1199
    stored in the statement-based binlog.
 
1200
    This variable is CUMULATIVE along the execution of a stored function or
 
1201
    trigger: if one substatement sets it to 1 it will stay 1 until the
 
1202
    function/trigger ends, thus making sure that
 
1203
    first_successful_insert_id_in_prev_stmt_for_binlog does not change anymore
 
1204
    and is propagated to the caller for binlogging.
 
1205
  */
 
1206
  bool       stmt_depends_on_first_successful_insert_id_in_prev_stmt;
 
1207
  /*
603
1208
    List of auto_increment intervals reserved by the thread so far, for
604
1209
    storage in the statement-based binlog.
605
1210
    Note that its minimum is not first_successful_insert_id_in_cur_stmt:
611
1216
    in the binlog is still needed; the list's minimum will contain 3.
612
1217
  */
613
1218
  Discrete_intervals_list auto_inc_intervals_in_cur_stmt_for_binlog;
614
 
  /** Used by replication and SET INSERT_ID */
 
1219
  /* Used by replication and SET INSERT_ID */
615
1220
  Discrete_intervals_list auto_inc_intervals_forced;
616
 
 
617
 
  uint64_t limit_found_rows;
618
 
  uint64_t options; /**< Bitmap of options */
619
 
  int64_t row_count_func; /**< For the ROW_COUNT() function */
620
 
  ha_rows cuted_fields; /**< Count of "cut" or truncated fields. @todo Kill this friggin thing. */
621
 
 
622
 
  /** 
623
 
   * Number of rows we actually sent to the client, including "synthetic"
624
 
   * rows in ROLLUP etc.
625
 
   */
626
 
  ha_rows sent_row_count;
627
 
 
628
 
  /**
629
 
   * Number of rows we read, sent or not, including in create_sort_index()
630
 
   */
631
 
  ha_rows examined_row_count;
632
 
 
633
 
  /**
634
 
   * The set of those tables whose fields are referenced in all subqueries
635
 
   * of the query.
636
 
   *
637
 
   * @todo
638
 
   * 
639
 
   * Possibly this it is incorrect to have used tables in Session because
640
 
   * with more than one subquery, it is not clear what does the field mean.
641
 
   */
642
 
  table_map used_tables;
643
 
 
644
 
  /**
645
 
    @todo
646
 
    
647
 
    This, and some other variables like 'count_cuted_fields'
648
 
    maybe should be statement/cursor local, that is, moved to Statement
649
 
    class. With current implementation warnings produced in each prepared
650
 
    statement/cursor settle here.
651
 
  */
652
 
  List<DRIZZLE_ERROR> warn_list;
653
 
  uint32_t warn_count[(uint32_t) DRIZZLE_ERROR::WARN_LEVEL_END];
654
 
  uint32_t total_warn_count;
655
 
  Diagnostics_area main_da;
656
 
 
657
 
  ulong col_access;
658
 
 
659
 
  /* Statement id is thread-wide. This counter is used to generate ids */
660
 
  uint32_t statement_id_counter;
661
 
  uint32_t rand_saved_seed1;
662
 
  uint32_t rand_saved_seed2;
663
 
  /**
664
 
    Row counter, mainly for errors and warnings. Not increased in
665
 
    create_sort_index(); may differ from examined_row_count.
666
 
  */
667
 
  uint32_t row_count;
668
 
  pthread_t real_id; /**< For debugging */
669
 
  uint64_t thread_id;
670
 
  uint32_t tmp_table;
671
 
  uint32_t global_read_lock;
672
 
  uint32_t server_status;
673
 
  uint32_t open_options;
674
 
  uint32_t select_number; /**< number of select (used for EXPLAIN) */
675
 
  /* variables.transaction_isolation is reset to this after each commit */
676
 
  enum_tx_isolation session_tx_isolation;
677
 
  enum_check_fields count_cuted_fields;
678
 
 
679
 
  enum killed_state
680
 
  {
681
 
    NOT_KILLED,
682
 
    KILL_BAD_DATA,
683
 
    KILL_CONNECTION,
684
 
    KILL_QUERY,
685
 
    KILLED_NO_VALUE /* means none of the above states apply */
686
 
  };
687
 
  killed_state volatile killed;
688
 
 
689
 
  bool some_tables_deleted;
690
 
  bool no_errors;
691
 
  bool password;
692
 
  /**
693
 
    Set to true if execution of the current compound statement
694
 
    can not continue. In particular, disables activation of
695
 
    CONTINUE or EXIT handlers of stored routines.
696
 
    Reset in the end of processing of the current user request, in
697
 
    @see mysql_reset_session_for_next_command().
698
 
  */
699
 
  bool is_fatal_error;
700
 
  /**
701
 
    Set by a storage engine to request the entire
702
 
    transaction (that possibly spans multiple engines) to
703
 
    rollback. Reset in ha_rollback.
704
 
  */
705
 
  bool transaction_rollback_request;
706
 
  /**
707
 
    true if we are in a sub-statement and the current error can
708
 
    not be safely recovered until we left the sub-statement mode.
709
 
    In particular, disables activation of CONTINUE and EXIT
710
 
    handlers inside sub-statements. E.g. if it is a deadlock
711
 
    error and requires a transaction-wide rollback, this flag is
712
 
    raised (traditionally, MySQL first has to close all the reads
713
 
    via @see handler::ha_index_or_rnd_end() and only then perform
714
 
    the rollback).
715
 
    Reset to false when we leave the sub-statement mode.
716
 
  */
717
 
  bool is_fatal_sub_stmt_error;
718
 
  /** for IS NULL => = last_insert_id() fix in remove_eq_conds() */
719
 
  bool substitute_null_with_insert_id;
720
 
  bool cleanup_done;
721
 
 
722
 
  bool abort_on_warning;
723
 
  bool got_warning; /**< Set on call to push_warning() */
724
 
  bool no_warnings_for_error; /**< no warnings on call to my_error() */
725
 
  /** set during loop of derived table processing */
726
 
  bool derived_tables_processing;
727
 
  bool tablespace_op; /**< This is true in DISCARD/IMPORT TABLESPACE */
728
 
 
729
 
  /** Used by the sys_var class to store temporary values */
730
 
  union
731
 
  {
732
 
    bool bool_value;
733
 
    uint32_t uint32_t_value;
734
 
    int32_t int32_t_value;
735
 
    uint64_t uint64_t_value;
736
 
  } sys_var_tmp;
737
 
 
738
 
  /**
739
 
    Character input stream consumed by the lexical analyser,
740
 
    used during parsing.
741
 
    Note that since the parser is not re-entrant, we keep only one input
742
 
    stream here. This member is valid only when executing code during parsing,
743
 
    and may point to invalid memory after that.
744
 
  */
745
 
  Lex_input_stream *m_lip;
746
 
  
747
 
  /** Place to store various things */
748
 
  void *session_marker;
749
 
 
750
 
  /** Keeps a copy of the previous table around in case we are just slamming on particular table */
751
 
  Table *cached_table;
752
 
 
753
 
  /**
754
 
    Points to info-string that we show in SHOW PROCESSLIST
755
 
    You are supposed to call Session_SET_PROC_INFO only if you have coded
756
 
    a time-consuming piece that MySQL can get stuck in for a long time.
757
 
 
758
 
    Set it using the  session_proc_info(Session *thread, const char *message)
759
 
    macro/function.
760
 
  */
761
 
  inline void set_proc_info(const char *info)
762
 
  { 
763
 
    proc_info= info;
764
 
  }
765
 
  inline const char* get_proc_info() const
766
 
  {
767
 
    return proc_info;
768
 
  }
769
 
 
770
 
  /** Sets this Session's current query ID */
771
 
  inline void setQueryId(query_id_t in_query_id)
772
 
  {
773
 
    query_id= in_query_id;
774
 
  }
775
 
 
776
 
  /** Returns the current query ID */
777
 
  inline query_id_t getQueryId()  const
778
 
  {
779
 
    return query_id;
780
 
  }
781
 
 
782
 
 
783
 
  /** Sets this Session's warning query ID */
784
 
  inline void setWarningQueryId(query_id_t in_query_id)
785
 
  {
786
 
    warn_query_id= in_query_id;
787
 
  }
788
 
 
789
 
  /** Returns the Session's warning query ID */
790
 
  inline query_id_t getWarningQueryId()  const
791
 
  {
792
 
    return warn_query_id;
793
 
  }
794
 
 
795
 
  /** Returns the current query text */
796
 
  inline const std::string &getQueryString()  const
797
 
  {
798
 
    return query;
799
 
  }
800
 
 
801
 
  /** Returns the length of the current query text */
802
 
  inline size_t getQueryLength() const
803
 
  {
804
 
    if (! query.empty())
805
 
      return query.length();
806
 
    else
807
 
      return 0;
808
 
  }
809
 
 
810
 
  /** Accessor method returning the session's ID. */
811
 
  inline uint64_t getSessionId()  const
812
 
  {
813
 
    return thread_id;
814
 
  }
815
 
 
816
 
  /** Accessor method returning the server's ID. */
817
 
  inline uint32_t getServerId()  const
818
 
  {
819
 
    /* We return the global server ID. */
820
 
    return server_id;
821
 
  }
822
 
 
823
 
  /** Returns the current transaction ID for the session's current statement */
824
 
  inline my_xid getTransactionId()
825
 
  {
826
 
    return transaction.xid_state.xid.quick_get_my_xid();
827
 
  }
828
 
  /**
 
1221
  /*
829
1222
    There is BUG#19630 where statement-based replication of stored
830
1223
    functions/triggers with two auto_increment columns breaks.
831
1224
    We however ensure that it works when there is 0 or 1 auto_increment
868
1261
  }
869
1262
  inline uint64_t read_first_successful_insert_id_in_prev_stmt(void)
870
1263
  {
 
1264
    if (!stmt_depends_on_first_successful_insert_id_in_prev_stmt)
 
1265
    {
 
1266
      /* It's the first time we read it */
 
1267
      first_successful_insert_id_in_prev_stmt_for_binlog=
 
1268
        first_successful_insert_id_in_prev_stmt;
 
1269
      stmt_depends_on_first_successful_insert_id_in_prev_stmt= 1;
 
1270
    }
871
1271
    return first_successful_insert_id_in_prev_stmt;
872
1272
  }
873
 
  /**
 
1273
  /*
874
1274
    Used by Intvar_log_event::do_apply_event() and by "SET INSERT_ID=#"
875
1275
    (mysqlbinlog). We'll soon add a variant which can take many intervals in
876
1276
    argument.
881
1281
    auto_inc_intervals_forced.append(next_id, UINT64_MAX, 0);
882
1282
  }
883
1283
 
884
 
  Session(plugin::Client *client_arg);
885
 
  virtual ~Session();
886
 
 
 
1284
  uint64_t  limit_found_rows;
 
1285
  uint64_t  options;           /* Bitmap of states */
 
1286
  int64_t   row_count_func;    /* For the ROW_COUNT() function */
 
1287
  ha_rows    cuted_fields;
 
1288
 
 
1289
  /*
 
1290
    number of rows we actually sent to the client, including "synthetic"
 
1291
    rows in ROLLUP etc.
 
1292
  */
 
1293
  ha_rows    sent_row_count;
 
1294
 
 
1295
  /*
 
1296
    number of rows we read, sent or not, including in create_sort_index()
 
1297
  */
 
1298
  ha_rows    examined_row_count;
 
1299
 
 
1300
  /*
 
1301
    The set of those tables whose fields are referenced in all subqueries
 
1302
    of the query.
 
1303
    TODO: possibly this it is incorrect to have used tables in Session because
 
1304
    with more than one subquery, it is not clear what does the field mean.
 
1305
  */
 
1306
  table_map  used_tables;
 
1307
  USER_CONN *user_connect;
 
1308
  const CHARSET_INFO *db_charset;
 
1309
  /*
 
1310
    FIXME: this, and some other variables like 'count_cuted_fields'
 
1311
    maybe should be statement/cursor local, that is, moved to Statement
 
1312
    class. With current implementation warnings produced in each prepared
 
1313
    statement/cursor settle here.
 
1314
  */
 
1315
  List       <DRIZZLE_ERROR> warn_list;
 
1316
  uint       warn_count[(uint) DRIZZLE_ERROR::WARN_LEVEL_END];
 
1317
  uint       total_warn_count;
 
1318
  Diagnostics_area main_da;
 
1319
 
 
1320
  /*
 
1321
    Id of current query. Statement can be reused to execute several queries
 
1322
    query_id is global in context of the whole MySQL server.
 
1323
    ID is automatically generated from mutex-protected counter.
 
1324
    It's used in handler code for various purposes: to check which columns
 
1325
    from table are necessary for this select, to check if it's necessary to
 
1326
    update auto-updatable fields (like auto_increment and timestamp).
 
1327
  */
 
1328
  query_id_t query_id, warn_id;
 
1329
  ulong      col_access;
 
1330
 
 
1331
#ifdef ERROR_INJECT_SUPPORT
 
1332
  ulong      error_inject_value;
 
1333
#endif
 
1334
  /* Statement id is thread-wide. This counter is used to generate ids */
 
1335
  ulong      statement_id_counter;
 
1336
  ulong      rand_saved_seed1, rand_saved_seed2;
 
1337
  /*
 
1338
    Row counter, mainly for errors and warnings. Not increased in
 
1339
    create_sort_index(); may differ from examined_row_count.
 
1340
  */
 
1341
  ulong      row_count;
 
1342
  pthread_t  real_id;                           /* For debugging */
 
1343
  my_thread_id  thread_id;
 
1344
  uint       tmp_table, global_read_lock;
 
1345
  uint       server_status,open_options;
 
1346
  enum enum_thread_type system_thread;
 
1347
  uint32_t       select_number;             //number of select (used for EXPLAIN)
 
1348
  /* variables.transaction_isolation is reset to this after each commit */
 
1349
  enum_tx_isolation session_tx_isolation;
 
1350
  enum_check_fields count_cuted_fields;
 
1351
 
 
1352
  DYNAMIC_ARRAY user_var_events;        /* For user variables replication */
 
1353
  MEM_ROOT      *user_var_events_alloc; /* Allocate above array elements here */
 
1354
 
 
1355
  enum killed_state
 
1356
  {
 
1357
    NOT_KILLED,
 
1358
    KILL_BAD_DATA,
 
1359
    KILL_CONNECTION,
 
1360
    KILL_QUERY,
 
1361
    KILLED_NO_VALUE      /* means neither of the states */
 
1362
  };
 
1363
  killed_state volatile killed;
 
1364
 
 
1365
  /* scramble - random string sent to client on handshake */
 
1366
  char       scramble[SCRAMBLE_LENGTH+1];
 
1367
 
 
1368
  bool       slave_thread, one_shot_set;
 
1369
  /* tells if current statement should binlog row-based(1) or stmt-based(0) */
 
1370
  bool       current_stmt_binlog_row_based;
 
1371
  bool       some_tables_deleted;
 
1372
  bool       last_cuted_field;
 
1373
  bool       no_errors, password;
 
1374
  /**
 
1375
    Set to true if execution of the current compound statement
 
1376
    can not continue. In particular, disables activation of
 
1377
    CONTINUE or EXIT handlers of stored routines.
 
1378
    Reset in the end of processing of the current user request, in
 
1379
    @see mysql_reset_session_for_next_command().
 
1380
  */
 
1381
  bool is_fatal_error;
 
1382
  /**
 
1383
    Set by a storage engine to request the entire
 
1384
    transaction (that possibly spans multiple engines) to
 
1385
    rollback. Reset in ha_rollback.
 
1386
  */
 
1387
  bool       transaction_rollback_request;
 
1388
  /**
 
1389
    true if we are in a sub-statement and the current error can
 
1390
    not be safely recovered until we left the sub-statement mode.
 
1391
    In particular, disables activation of CONTINUE and EXIT
 
1392
    handlers inside sub-statements. E.g. if it is a deadlock
 
1393
    error and requires a transaction-wide rollback, this flag is
 
1394
    raised (traditionally, MySQL first has to close all the reads
 
1395
    via @see handler::ha_index_or_rnd_end() and only then perform
 
1396
    the rollback).
 
1397
    Reset to false when we leave the sub-statement mode.
 
1398
  */
 
1399
  bool       is_fatal_sub_stmt_error;
 
1400
  bool       query_start_used, rand_used, time_zone_used;
 
1401
  /* for IS NULL => = last_insert_id() fix in remove_eq_conds() */
 
1402
  bool       substitute_null_with_insert_id;
 
1403
  bool       in_lock_tables;
 
1404
  /**
 
1405
    True if a slave error. Causes the slave to stop. Not the same
 
1406
    as the statement execution error (is_error()), since
 
1407
    a statement may be expected to return an error, e.g. because
 
1408
    it returned an error on master, and this is OK on the slave.
 
1409
  */
 
1410
  bool       is_slave_error;
 
1411
  bool       cleanup_done;
 
1412
  
 
1413
  /**  is set if some thread specific value(s) used in a statement. */
 
1414
  bool       thread_specific_used;
 
1415
  bool       charset_is_system_charset, charset_is_collation_connection;
 
1416
  bool       charset_is_character_set_filesystem;
 
1417
  bool       abort_on_warning;
 
1418
  bool       got_warning;       /* Set on call to push_warning() */
 
1419
  bool       no_warnings_for_error; /* no warnings on call to my_error() */
 
1420
  /* set during loop of derived table processing */
 
1421
  bool       derived_tables_processing;
 
1422
  bool    tablespace_op;        /* This is true in DISCARD/IMPORT TABLESPACE */
 
1423
 
 
1424
  /*
 
1425
    If we do a purge of binary logs, log index info of the threads
 
1426
    that are currently reading it needs to be adjusted. To do that
 
1427
    each thread that is using LOG_INFO needs to adjust the pointer to it
 
1428
  */
 
1429
  LOG_INFO*  current_linfo;
 
1430
  NET*       slave_net;                 // network connection from slave -> m.
 
1431
  /* Used by the sys_var class to store temporary values */
 
1432
  union
 
1433
  {
 
1434
    bool   bool_value;
 
1435
    long      long_value;
 
1436
    ulong     ulong_value;
 
1437
    uint64_t uint64_t_value;
 
1438
  } sys_var_tmp;
 
1439
  
 
1440
  struct {
 
1441
    /* 
 
1442
      If true, mysql_bin_log::write(Log_event) call will not write events to 
 
1443
      binlog, and maintain 2 below variables instead (use
 
1444
      mysql_bin_log.start_union_events to turn this on)
 
1445
    */
 
1446
    bool do_union;
 
1447
    /*
 
1448
      If true, at least one mysql_bin_log::write(Log_event) call has been
 
1449
      made after last mysql_bin_log.start_union_events() call.
 
1450
    */
 
1451
    bool unioned_events;
 
1452
    /*
 
1453
      If true, at least one mysql_bin_log::write(Log_event e), where 
 
1454
      e.cache_stmt == true call has been made after last 
 
1455
      mysql_bin_log.start_union_events() call.
 
1456
    */
 
1457
    bool unioned_events_trans;
 
1458
    
 
1459
    /* 
 
1460
      'queries' (actually SP statements) that run under inside this binlog
 
1461
      union have session->query_id >= first_query_id.
 
1462
    */
 
1463
    query_id_t first_query_id;
 
1464
  } binlog_evt_union;
 
1465
 
 
1466
  /**
 
1467
    Character input stream consumed by the lexical analyser,
 
1468
    used during parsing.
 
1469
    Note that since the parser is not re-entrant, we keep only one input
 
1470
    stream here. This member is valid only when executing code during parsing,
 
1471
    and may point to invalid memory after that.
 
1472
  */
 
1473
  Lex_input_stream *m_lip;
 
1474
 
 
1475
  Session();
 
1476
  ~Session();
 
1477
 
 
1478
  void init(void);
 
1479
  /*
 
1480
    Initialize memory roots necessary for query processing and (!)
 
1481
    pre-allocate memory for it. We can't do that in Session constructor because
 
1482
    there are use cases (acl_init, watcher threads,
 
1483
    killing mysqld) where it's vital to not allocate excessive and not used
 
1484
    memory. Note, that we still don't return error from init_for_queries():
 
1485
    if preallocation fails, we should notice that at the first call to
 
1486
    alloc_root. 
 
1487
  */
 
1488
  void init_for_queries();
 
1489
  void change_user(void);
887
1490
  void cleanup(void);
888
 
  /**
889
 
   * Cleans up after query.
890
 
   *
891
 
   * @details
892
 
   *
893
 
   * This function is used to reset thread data to its default state.
894
 
   *
895
 
   * This function is not suitable for setting thread data to some
896
 
   * non-default values, as there is only one replication thread, so
897
 
   * different master threads may overwrite data of each other on
898
 
   * slave.
899
 
   */
900
1491
  void cleanup_after_query();
901
 
  bool storeGlobals();
 
1492
  bool store_globals();
902
1493
  void awake(Session::killed_state state_to_set);
903
 
  /**
904
 
   * Pulls thread-specific variables into Session state.
905
 
   *
906
 
   * Returns true most times, or false if there was a problem
907
 
   * allocating resources for thread-specific storage.
908
 
   *
909
 
   * @TODO Kill this.  It's not necessary once my_thr_init() is bye bye.
910
 
   *
911
 
   */
912
 
  bool initGlobals();
913
 
 
914
 
  /**
915
 
    Initialize memory roots necessary for query processing and (!)
916
 
    pre-allocate memory for it. We can't do that in Session constructor because
917
 
    there are use cases where it's vital to not allocate excessive and not used
918
 
    memory.
919
 
  */
920
 
  void prepareForQueries();
921
 
 
922
 
  /**
923
 
   * Executes a single statement received from the 
924
 
   * client connection.
925
 
   *
926
 
   * Returns true if the statement was successful, or false 
927
 
   * otherwise.
928
 
   *
929
 
   * @note
930
 
   *
931
 
   * For profiling to work, it must never be called recursively.
932
 
   *
933
 
   * In MySQL, this used to be the do_command() C function whic
934
 
   * accepted a single parameter of the THD pointer.
935
 
   */
936
 
  bool executeStatement();
937
 
 
938
 
  /**
939
 
   * Reads a query from packet and stores it.
940
 
   *
941
 
   * Returns true if query is read and allocated successfully, 
942
 
   * false otherwise.  On a return of false, Session::fatal_error
943
 
   * is set.
944
 
   *
945
 
   * @note Used in COM_QUERY and COM_STMT_PREPARE.
946
 
   *
947
 
   * Sets the following Session variables:
948
 
   *  - query
949
 
   *  - query_length
950
 
   *
951
 
   * @param The packet pointer to read from
952
 
   * @param The length of the query to read
953
 
   */
954
 
  bool readAndStoreQuery(const char *in_packet, uint32_t in_packet_length);
955
 
 
956
 
  /**
957
 
   * Ends the current transaction and (maybe) begins the next.
958
 
   *
959
 
   * Returns true if the transaction completed successfully, 
960
 
   * otherwise false.
961
 
   *
962
 
   * @param Completion type
963
 
   */
964
 
  bool endTransaction(enum enum_mysql_completiontype completion);
965
 
  bool endActiveTransaction();
966
 
  bool startTransaction(start_transaction_option_t opt= START_TRANS_NO_OPTIONS);
967
 
 
968
 
  /**
969
 
   * Authenticates users, with error reporting.
970
 
   *
971
 
   * Returns true on success, or false on failure.
972
 
   */
973
 
  bool authenticate();
974
 
 
975
 
  /**
976
 
   * Run a session.
977
 
   *
978
 
   * This will initialize the session and begin the command loop.
979
 
   */
980
 
  void run();
981
 
 
982
 
  /**
983
 
   * Schedule a session to be run on the default scheduler.
984
 
   */
985
 
  bool schedule();
 
1494
 
 
1495
  enum enum_binlog_query_type {
 
1496
    /*
 
1497
      The query can be logged row-based or statement-based
 
1498
    */
 
1499
    ROW_QUERY_TYPE,
 
1500
    
 
1501
    /*
 
1502
      The query has to be logged statement-based
 
1503
    */
 
1504
    STMT_QUERY_TYPE,
 
1505
    
 
1506
    /*
 
1507
      The query represents a change to a table in the "mysql"
 
1508
      database and is currently mapped to ROW_QUERY_TYPE.
 
1509
    */
 
1510
    DRIZZLE_QUERY_TYPE,
 
1511
    QUERY_TYPE_COUNT
 
1512
  };
 
1513
  
 
1514
  int binlog_query(enum_binlog_query_type qtype,
 
1515
                   char const *query, ulong query_len,
 
1516
                   bool is_trans, bool suppress_use,
 
1517
                   Session::killed_state killed_err_arg= Session::KILLED_NO_VALUE);
986
1518
 
987
1519
  /*
988
1520
    For enter_cond() / exit_cond() to work the mutex must be got before
989
1521
    enter_cond(); this mutex is then released by exit_cond().
990
1522
    Usage must be: lock mutex; enter_cond(); your code; exit_cond().
991
1523
  */
992
 
  const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex, const char* msg);
993
 
  void exit_cond(const char* old_msg);
994
 
 
995
 
  inline time_t query_start() { return start_time; }
 
1524
  inline const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex,
 
1525
                          const char* msg)
 
1526
  {
 
1527
    const char* old_msg = get_proc_info();
 
1528
    safe_mutex_assert_owner(mutex);
 
1529
    mysys_var->current_mutex = mutex;
 
1530
    mysys_var->current_cond = cond;
 
1531
    this->set_proc_info(msg);
 
1532
    return old_msg;
 
1533
  }
 
1534
  inline void exit_cond(const char* old_msg)
 
1535
  {
 
1536
    /*
 
1537
      Putting the mutex unlock in exit_cond() ensures that
 
1538
      mysys_var->current_mutex is always unlocked _before_ mysys_var->mutex is
 
1539
      locked (if that would not be the case, you'll get a deadlock if someone
 
1540
      does a Session::awake() on you).
 
1541
    */
 
1542
    pthread_mutex_unlock(mysys_var->current_mutex);
 
1543
    pthread_mutex_lock(&mysys_var->mutex);
 
1544
    mysys_var->current_mutex = 0;
 
1545
    mysys_var->current_cond = 0;
 
1546
    this->set_proc_info(old_msg);
 
1547
    pthread_mutex_unlock(&mysys_var->mutex);
 
1548
  }
 
1549
  inline time_t query_start() { query_start_used=1; return start_time; }
996
1550
  inline void set_time()
997
1551
  {
998
1552
    if (user_time)
999
1553
    {
1000
1554
      start_time= user_time;
1001
 
      connect_microseconds= start_utime= utime_after_lock= my_micro_time();
 
1555
      start_utime= utime_after_lock= my_micro_time();
1002
1556
    }
1003
1557
    else
1004
1558
      start_utime= utime_after_lock= my_micro_time_and_time(&start_time);
1005
1559
  }
1006
 
  inline void   set_current_time()    { start_time= time(NULL); }
 
1560
  inline void   set_current_time()    { start_time= my_time(MY_WME); }
1007
1561
  inline void   set_time(time_t t)
1008
1562
  {
1009
1563
    start_time= user_time= t;
1010
1564
    start_utime= utime_after_lock= my_micro_time();
1011
1565
  }
1012
1566
  void set_time_after_lock()  { utime_after_lock= my_micro_time(); }
1013
 
  /**
1014
 
   * Returns the current micro-timestamp
1015
 
   */
1016
 
  inline uint64_t getCurrentTimestamp()  
1017
 
  { 
1018
 
    return my_micro_time(); 
1019
 
  }
 
1567
  uint64_t current_utime()  { return my_micro_time(); }
1020
1568
  inline uint64_t found_rows(void)
1021
1569
  {
1022
1570
    return limit_found_rows;
1023
1571
  }
1024
 
  /** Returns whether the session is currently inside a transaction */
1025
 
  inline bool inTransaction()
 
1572
  inline bool active_transaction()
1026
1573
  {
1027
1574
    return server_status & SERVER_STATUS_IN_TRANS;
1028
1575
  }
1030
1577
  {
1031
1578
    return !lex->only_view_structure();
1032
1579
  }
 
1580
  inline void* trans_alloc(unsigned int size)
 
1581
  {
 
1582
    return alloc_root(&transaction.mem_root,size);
 
1583
  }
1033
1584
 
1034
1585
  LEX_STRING *make_lex_string(LEX_STRING *lex_str,
1035
1586
                              const char* str, uint32_t length,
1036
1587
                              bool allocate_lex_string);
1037
 
  LEX_STRING *make_lex_string(LEX_STRING *lex_str,
1038
 
                              const std::string &str,
1039
 
                              bool allocate_lex_string);
1040
 
 
 
1588
 
 
1589
  bool convert_string(LEX_STRING *to, const CHARSET_INFO * const to_cs,
 
1590
                      const char *from, uint32_t from_length,
 
1591
                      const CHARSET_INFO * const from_cs);
 
1592
 
 
1593
  bool convert_string(String *s, const CHARSET_INFO * const from_cs, const CHARSET_INFO * const to_cs);
 
1594
 
 
1595
  void add_changed_table(Table *table);
 
1596
  void add_changed_table(const char *key, long key_length);
 
1597
  CHANGED_TableList * changed_table_dup(const char *key, long key_length);
1041
1598
  int send_explain_fields(select_result *result);
1042
1599
  /**
1043
1600
    Clear the current error, if any.
1050
1607
  {
1051
1608
    if (main_da.is_error())
1052
1609
      main_da.reset_diagnostics_area();
 
1610
    is_slave_error= 0;
1053
1611
    return;
1054
1612
  }
 
1613
  inline bool vio_ok() const { return net.vio != 0; }
1055
1614
 
1056
1615
  /**
1057
1616
    Mark the current error as fatal. Warning: this does not
1061
1620
  inline void fatal_error()
1062
1621
  {
1063
1622
    assert(main_da.is_error());
1064
 
    is_fatal_error= true;
 
1623
    is_fatal_error= 1;
1065
1624
  }
1066
1625
  /**
1067
1626
    true if there is an error in the error stack.
1077
1636
    To raise this flag, use my_error().
1078
1637
  */
1079
1638
  inline bool is_error() const { return main_da.is_error(); }
1080
 
  inline const CHARSET_INFO *charset() { return default_charset_info; }
 
1639
  inline const CHARSET_INFO *charset() { return variables.character_set_client; }
 
1640
  void update_charset();
1081
1641
 
1082
1642
  void change_item_tree(Item **place, Item *new_value)
1083
1643
  {
1084
1644
    *place= new_value;
1085
1645
  }
1086
 
  /**
 
1646
  void nocheck_register_item_tree_change(Item **place, Item *old_value,
 
1647
                                         MEM_ROOT *runtime_memroot);
 
1648
  void rollback_item_tree_changes();
 
1649
 
 
1650
  /*
1087
1651
    Cleanup statement parse state (parse tree, lex) and execution
1088
1652
    state after execution of a non-prepared SQL statement.
1089
 
 
1090
 
    @todo
1091
 
 
1092
 
    Move this to Statement::~Statement
1093
1653
  */
1094
1654
  void end_statement();
1095
1655
  inline int killed_errno() const
1107
1667
  void reset_n_backup_open_tables_state(Open_tables_state *backup);
1108
1668
  void restore_backup_open_tables_state(Open_tables_state *backup);
1109
1669
 
 
1670
  inline void set_current_stmt_binlog_row_based()
 
1671
  {
 
1672
    current_stmt_binlog_row_based= true;
 
1673
  }
 
1674
  inline void clear_current_stmt_binlog_row_based()
 
1675
  {
 
1676
    current_stmt_binlog_row_based= false;
 
1677
  }
 
1678
  inline void reset_current_stmt_binlog_row_based()
 
1679
  {
 
1680
    /*
 
1681
      If there are temporary tables, don't reset back to
 
1682
      statement-based. Indeed it could be that:
 
1683
      CREATE TEMPORARY TABLE t SELECT UUID(); # row-based
 
1684
      # and row-based does not store updates to temp tables
 
1685
      # in the binlog.
 
1686
 
 
1687
      Don't reset binlog format for NDB binlog injector thread.
 
1688
    */
 
1689
    if (temporary_tables == NULL)
 
1690
    {
 
1691
      current_stmt_binlog_row_based= 
 
1692
        test(variables.binlog_format == BINLOG_FORMAT_ROW);
 
1693
    }
 
1694
  }
 
1695
 
1110
1696
  /**
1111
1697
    Set the current database; use deep copy of C-string.
1112
1698
 
1128
1714
      @retval false Success
1129
1715
      @retval true  Out-of-memory error
1130
1716
  */
1131
 
  bool set_db(const std::string &new_db);
1132
 
 
 
1717
  bool set_db(const char *new_db, size_t new_db_len)
 
1718
  {
 
1719
    /* Do not reallocate memory if current chunk is big enough. */
 
1720
    if (db && new_db && db_length >= new_db_len)
 
1721
      memcpy(db, new_db, new_db_len+1);
 
1722
    else
 
1723
    {
 
1724
      if (db)
 
1725
        free(db);
 
1726
      if (new_db)
 
1727
        db= my_strndup(new_db, new_db_len, MYF(MY_WME | ME_FATALERROR));
 
1728
      else
 
1729
        db= NULL;
 
1730
    }
 
1731
    db_length= db ? new_db_len : 0;
 
1732
    return new_db && !db;
 
1733
  }
 
1734
 
 
1735
  /**
 
1736
    Set the current database; use shallow copy of C-string.
 
1737
 
 
1738
    @param new_db     a pointer to the new database name.
 
1739
    @param new_db_len length of the new database name.
 
1740
 
 
1741
    @note This operation just sets {db, db_length}. Switching the current
 
1742
    database usually involves other actions, like switching other database
 
1743
    attributes including security context. In the future, this operation
 
1744
    will be made private and more convenient interface will be provided.
 
1745
  */
 
1746
  void reset_db(char *new_db, size_t new_db_len)
 
1747
  {
 
1748
    db= new_db;
 
1749
    db_length= new_db_len;
 
1750
  }
1133
1751
  /*
1134
1752
    Copy the current database to the argument. Use the current arena to
1135
1753
    allocate memory for a deep copy: current database may be freed after
1136
1754
    a statement is parsed but before it's executed.
1137
1755
  */
1138
1756
  bool copy_db_to(char **p_db, size_t *p_db_length);
 
1757
  session_scheduler scheduler;
1139
1758
 
1140
1759
public:
1141
1760
  /**
1158
1777
  */
1159
1778
  void pop_internal_handler();
1160
1779
 
1161
 
  /**
1162
 
    Resets Session part responsible for command processing state.
1163
 
 
1164
 
    This needs to be called before execution of every statement
1165
 
    (prepared or conventional).
1166
 
    It is not called by substatements of routines.
1167
 
 
1168
 
    @todo
1169
 
    Make it a method of Session and align its name with the rest of
1170
 
    reset/end/start/init methods.
1171
 
    @todo
1172
 
    Call it after we use Session for queries, not before.
1173
 
  */
1174
 
  void reset_for_next_command();
1175
 
 
1176
 
  /**
1177
 
   * Disconnects the session from a client connection and
1178
 
   * updates any status variables necessary.
1179
 
   *
1180
 
   * @param errcode     Error code to print to console
1181
 
   * @param should_lock 1 if we have have to lock LOCK_thread_count
1182
 
   *
1183
 
   * @note  For the connection that is doing shutdown, this is called twice
1184
 
   */
1185
 
  void disconnect(uint32_t errcode, bool lock);
1186
 
 
1187
 
  /**
1188
 
   * Check if user exists and the password supplied is correct.
1189
 
   *
1190
 
   * Returns true on success, and false on failure.
1191
 
   *
1192
 
   * @note Host, user and passwd may point to communication buffer.
1193
 
   * Current implementation does not depend on that, but future changes
1194
 
   * should be done with this in mind; 
1195
 
   *
1196
 
   * @param  Scrambled password received from client
1197
 
   * @param  Length of scrambled password
1198
 
   * @param  Database name to connect to, may be NULL
1199
 
   */
1200
 
  bool checkUser(const char *passwd, uint32_t passwd_len, const char *db);
1201
 
  
1202
 
  /**
1203
 
   * Returns the timestamp (in microseconds) of when the Session 
1204
 
   * connected to the server.
1205
 
   */
1206
 
  inline uint64_t getConnectMicroseconds() const
1207
 
  {
1208
 
    return connect_microseconds;
1209
 
  }
1210
 
 
1211
 
  /**
1212
 
   * Returns a pointer to the active Transaction message for this
1213
 
   * Session being managed by the ReplicationServices component, or
1214
 
   * NULL if no active message.
1215
 
   */
1216
 
  message::Transaction *getTransactionMessage() const
1217
 
  {
1218
 
    return transaction_message;
1219
 
  }
1220
 
 
1221
 
  /**
1222
 
   * Returns a pointer to the active Statement message for this
1223
 
   * Session, or NULL if no active message.
1224
 
   */
1225
 
  message::Statement *getStatementMessage() const
1226
 
  {
1227
 
    return statement_message;
1228
 
  }
1229
 
 
1230
 
  /**
1231
 
   * Sets the active transaction message used by the ReplicationServices
1232
 
   * component.
1233
 
   *
1234
 
   * @param[in] Pointer to the message
1235
 
   */
1236
 
  void setTransactionMessage(message::Transaction *in_message)
1237
 
  {
1238
 
    transaction_message= in_message;
1239
 
  }
1240
 
 
1241
 
  /**
1242
 
   * Sets the active statement message used by the ReplicationServices
1243
 
   * component.
1244
 
   *
1245
 
   * @param[in] Pointer to the message
1246
 
   */
1247
 
  void setStatementMessage(message::Statement *in_message)
1248
 
  {
1249
 
    statement_message= in_message;
1250
 
  }
1251
1780
private:
1252
 
  /** Pointers to memory managed by the ReplicationServices component */
1253
 
  message::Transaction *transaction_message;
1254
 
  message::Statement *statement_message;
1255
 
  /** Microsecond timestamp of when Session connected */
1256
 
  uint64_t connect_microseconds;
1257
1781
  const char *proc_info;
1258
1782
 
1259
1783
  /** The current internal error handler for this thread, or NULL. */
1273
1797
    - for prepared queries, only to allocate runtime data. The parsed
1274
1798
    tree itself is reused between executions and thus is stored elsewhere.
1275
1799
  */
1276
 
  memory::Root main_mem_root;
1277
 
 
1278
 
  /**
1279
 
   * Marks all tables in the list which were used by current substatement
1280
 
   * as free for reuse.
1281
 
   *
1282
 
   * @param Head of the list of tables
1283
 
   *
1284
 
   * @note
1285
 
   *
1286
 
   * The reason we reset query_id is that it's not enough to just test
1287
 
   * if table->query_id != session->query_id to know if a table is in use.
1288
 
   *
1289
 
   * For example
1290
 
   * 
1291
 
   *  SELECT f1_that_uses_t1() FROM t1;
1292
 
   *  
1293
 
   * In f1_that_uses_t1() we will see one instance of t1 where query_id is
1294
 
   * set to query_id of original query.
1295
 
   */
1296
 
  void mark_used_tables_as_free_for_reuse(Table *table);
1297
 
  /**
1298
 
    Mark all temporary tables which were used by the current statement or
1299
 
    substatement as free for reuse, but only if the query_id can be cleared.
1300
 
 
1301
 
    @param session thread context
1302
 
 
1303
 
    @remark For temp tables associated with a open SQL HANDLER the query_id
1304
 
            is not reset until the HANDLER is closed.
1305
 
  */
1306
 
  void mark_temp_tables_as_free_for_reuse();
1307
 
 
1308
 
public:
1309
 
 
1310
 
  /** A short cut for session->main_da.set_ok_status(). */
1311
 
  inline void my_ok(ha_rows affected_rows= 0, ha_rows found_rows_arg= 0,
1312
 
                    uint64_t passed_id= 0, const char *message= NULL)
1313
 
  {
1314
 
    main_da.set_ok_status(this, affected_rows, found_rows_arg, passed_id, message);
1315
 
  }
1316
 
 
1317
 
 
1318
 
  /** A short cut for session->main_da.set_eof_status(). */
1319
 
 
1320
 
  inline void my_eof()
1321
 
  {
1322
 
    main_da.set_eof_status(this);
1323
 
  }
1324
 
 
1325
 
  /* Some inline functions for more speed */
1326
 
 
1327
 
  inline bool add_item_to_list(Item *item)
1328
 
  {
1329
 
    return lex->current_select->add_item_to_list(this, item);
1330
 
  }
1331
 
 
1332
 
  inline bool add_value_to_list(Item *value)
1333
 
  {
1334
 
    return lex->value_list.push_back(value);
1335
 
  }
1336
 
 
1337
 
  inline bool add_order_to_list(Item *item, bool asc)
1338
 
  {
1339
 
    return lex->current_select->add_order_to_list(this, item, asc);
1340
 
  }
1341
 
 
1342
 
  inline bool add_group_to_list(Item *item, bool asc)
1343
 
  {
1344
 
    return lex->current_select->add_group_to_list(this, item, asc);
1345
 
  }
1346
 
  void refresh_status();
1347
 
  user_var_entry *getVariable(LEX_STRING &name, bool create_if_not_exists);
1348
 
  
1349
 
  /**
1350
 
   * Closes all tables used by the current substatement, or all tables
1351
 
   * used by this thread if we are on the upper level.
1352
 
   */
1353
 
  void close_thread_tables();
1354
 
  void close_old_data_files(bool morph_locks= false,
1355
 
                            bool send_refresh= false);
1356
 
  void close_open_tables();
1357
 
  void close_data_files_and_morph_locks(TableIdentifier &identifier);
1358
 
  void close_data_files_and_morph_locks(const char *db, const char *table_name);
1359
 
 
1360
 
private:
1361
 
  bool free_cached_table();
1362
 
public:
1363
 
 
1364
 
  /**
1365
 
   * Prepares statement for reopening of tables and recalculation of set of
1366
 
   * prelocked tables.
1367
 
   *
1368
 
   * @param Pointer to a pointer to a list of tables which we were trying to open and lock
1369
 
   */
1370
 
  void close_tables_for_reopen(TableList **tables);
1371
 
 
1372
 
 
1373
 
  /**
1374
 
   * Open all tables in list, locks them (all, including derived)
1375
 
   *
1376
 
   * @param Pointer to a list of tables for open & locking
1377
 
   *
1378
 
   * @retval
1379
 
   *  false - ok
1380
 
   * @retval
1381
 
   *  true  - error
1382
 
   *
1383
 
   * @note
1384
 
   * 
1385
 
   * The lock will automaticaly be freed by close_thread_tables()
1386
 
   */
1387
 
  bool openTablesLock(TableList *tables);
1388
 
 
1389
 
  /**
1390
 
   * Open all tables in list and process derived tables
1391
 
   *
1392
 
   * @param Pointer to a list of tables for open
1393
 
   * @param Bitmap of flags to modify how the tables will be open:
1394
 
   *        DRIZZLE_LOCK_IGNORE_FLUSH - open table even if someone has
1395
 
   *        done a flush or namelock on it.
1396
 
   *
1397
 
   * @retval
1398
 
   *  false - ok
1399
 
   * @retval
1400
 
   *  true  - error
1401
 
   *
1402
 
   * @note
1403
 
   *
1404
 
   * This is to be used on prepare stage when you don't read any
1405
 
   * data from the tables.
1406
 
   */
1407
 
  bool openTables(TableList *tables, uint32_t flags= 0);
1408
 
 
1409
 
  int open_tables_from_list(TableList **start, uint32_t *counter, uint32_t flags= 0);
1410
 
 
1411
 
  Table *openTableLock(TableList *table_list, thr_lock_type lock_type);
1412
 
  Table *openTable(TableList *table_list, bool *refresh, uint32_t flags= 0);
1413
 
 
1414
 
  void unlink_open_table(Table *find);
1415
 
  void drop_open_table(Table *table, TableIdentifier &identifier);
1416
 
  void close_cached_table(Table *table);
1417
 
 
1418
 
  /* Create a lock in the cache */
1419
 
  Table *table_cache_insert_placeholder(const char *key, uint32_t key_length);
1420
 
  bool lock_table_name_if_not_cached(TableIdentifier &identifier, Table **table);
1421
 
  bool lock_table_name_if_not_cached(const char *db,
1422
 
                                     const char *table_name, Table **table);
1423
 
 
1424
 
  typedef drizzled::hash_map<std::string, message::Table> TableMessageCache;
1425
 
  TableMessageCache table_message_cache;
1426
 
 
1427
 
  bool storeTableMessage(TableIdentifier &identifier, message::Table &table_message);
1428
 
  bool removeTableMessage(TableIdentifier &identifier);
1429
 
  bool getTableMessage(TableIdentifier &identifier, message::Table &table_message);
1430
 
  bool doesTableMessageExist(TableIdentifier &identifier);
1431
 
  bool renameTableMessage(TableIdentifier &from, TableIdentifier &to);
1432
 
 
1433
 
  /* Work with temporary tables */
1434
 
  Table *find_temporary_table(TableList *table_list);
1435
 
  Table *find_temporary_table(const char *db, const char *table_name);
1436
 
  Table *find_temporary_table(TableIdentifier &identifier);
1437
 
 
1438
 
  void doGetTableNames(CachedDirectory &directory,
1439
 
                       SchemaIdentifier &schema_identifier,
1440
 
                       std::set<std::string>& set_of_names);
1441
 
  void doGetTableNames(SchemaIdentifier &schema_identifier,
1442
 
                       std::set<std::string>& set_of_names);
1443
 
 
1444
 
  void doGetTableIdentifiers(CachedDirectory &directory,
1445
 
                             SchemaIdentifier &schema_identifier,
1446
 
                             TableIdentifiers &set_of_identifiers);
1447
 
  void doGetTableIdentifiers(SchemaIdentifier &schema_identifier,
1448
 
                             TableIdentifiers &set_of_identifiers);
1449
 
 
1450
 
  int doGetTableDefinition(drizzled::TableIdentifier &identifier,
1451
 
                           message::Table &table_proto);
1452
 
  bool doDoesTableExist(TableIdentifier &identifier);
1453
 
 
1454
 
  void close_temporary_tables();
1455
 
  void close_temporary_table(Table *table);
1456
 
  // The method below just handles the de-allocation of the table. In
1457
 
  // a better memory type world, this would not be needed.
1458
 
private:
1459
 
  void nukeTable(Table *table);
1460
 
public:
1461
 
 
1462
 
  void dumpTemporaryTableNames(const char *id);
1463
 
  int drop_temporary_table(TableList *table_list);
1464
 
  bool rm_temporary_table(plugin::StorageEngine *base, TableIdentifier &identifier);
1465
 
  bool rm_temporary_table(TableIdentifier &identifier);
1466
 
  Table *open_temporary_table(TableIdentifier &identifier,
1467
 
                              bool link_in_list= true);
1468
 
 
1469
 
  /* Reopen operations */
1470
 
  bool reopen_tables(bool get_locks, bool mark_share_as_old);
1471
 
  bool reopen_name_locked_table(TableList* table_list, bool link_in);
1472
 
  bool close_cached_tables(TableList *tables, bool wait_for_refresh, bool wait_for_placeholders);
1473
 
 
1474
 
  void wait_for_condition(pthread_mutex_t *mutex, pthread_cond_t *cond);
1475
 
  int setup_conds(TableList *leaves, COND **conds);
1476
 
  int lock_tables(TableList *tables, uint32_t count, bool *need_reopen);
1477
 
 
1478
 
 
1479
 
  /**
1480
 
    Return the default storage engine
1481
 
 
1482
 
    @param getDefaultStorageEngine()
1483
 
 
1484
 
    @return
1485
 
    pointer to plugin::StorageEngine
1486
 
  */
1487
 
  plugin::StorageEngine *getDefaultStorageEngine()
1488
 
  {
1489
 
    if (variables.storage_engine)
1490
 
      return variables.storage_engine;
1491
 
    return global_system_variables.storage_engine;
1492
 
  };
1493
 
 
1494
 
  static void unlink(Session *session);
1495
 
 
1496
 
};
 
1800
  MEM_ROOT main_mem_root;
 
1801
};
 
1802
 
 
1803
 
 
1804
/** A short cut for session->main_da.set_ok_status(). */
 
1805
 
 
1806
inline void
 
1807
my_ok(Session *session, ha_rows affected_rows= 0, uint64_t id= 0,
 
1808
        const char *message= NULL)
 
1809
{
 
1810
  session->main_da.set_ok_status(session, affected_rows, id, message);
 
1811
}
 
1812
 
 
1813
 
 
1814
/** A short cut for session->main_da.set_eof_status(). */
 
1815
 
 
1816
inline void
 
1817
my_eof(Session *session)
 
1818
{
 
1819
  session->main_da.set_eof_status(session);
 
1820
}
 
1821
 
 
1822
#define tmp_disable_binlog(A)       \
 
1823
  {uint64_t tmp_disable_binlog__save_options= (A)->options; \
 
1824
  (A)->options&= ~OPTION_BIN_LOG
 
1825
 
 
1826
#define reenable_binlog(A)   (A)->options= tmp_disable_binlog__save_options;}
 
1827
 
 
1828
 
 
1829
/*
 
1830
  Used to hold information about file and file structure in exchange
 
1831
  via non-DB file (...INTO OUTFILE..., ...LOAD DATA...)
 
1832
  XXX: We never call destructor for objects of this class.
 
1833
*/
 
1834
 
 
1835
class sql_exchange :public Sql_alloc
 
1836
{
 
1837
public:
 
1838
  enum enum_filetype filetype; /* load XML, Added by Arnold & Erik */ 
 
1839
  char *file_name;
 
1840
  String *field_term,*enclosed,*line_term,*line_start,*escaped;
 
1841
  bool opt_enclosed;
 
1842
  bool dumpfile;
 
1843
  ulong skip_lines;
 
1844
  const CHARSET_INFO *cs;
 
1845
  sql_exchange(char *name, bool dumpfile_flag,
 
1846
               enum_filetype filetype_arg= FILETYPE_CSV);
 
1847
};
 
1848
 
 
1849
#include "log_event.h"
 
1850
 
 
1851
/*
 
1852
  This is used to get result from a select
 
1853
*/
1497
1854
 
1498
1855
class JOIN;
1499
1856
 
 
1857
class select_result :public Sql_alloc {
 
1858
protected:
 
1859
  Session *session;
 
1860
  SELECT_LEX_UNIT *unit;
 
1861
public:
 
1862
  select_result();
 
1863
  virtual ~select_result() {};
 
1864
  virtual int prepare(List<Item> &,
 
1865
                      SELECT_LEX_UNIT *u)
 
1866
  {
 
1867
    unit= u;
 
1868
    return 0;
 
1869
  }
 
1870
  virtual int prepare2(void) { return 0; }
 
1871
  /*
 
1872
    Because of peculiarities of prepared statements protocol
 
1873
    we need to know number of columns in the result set (if
 
1874
    there is a result set) apart from sending columns metadata.
 
1875
  */
 
1876
  virtual uint32_t field_count(List<Item> &fields) const
 
1877
  { return fields.elements; }
 
1878
  virtual bool send_fields(List<Item> &list, uint32_t flags)=0;
 
1879
  virtual bool send_data(List<Item> &items)=0;
 
1880
  virtual bool initialize_tables (JOIN *)
 
1881
  { return 0; }
 
1882
  virtual void send_error(uint32_t errcode,const char *err);
 
1883
  virtual bool send_eof()=0;
 
1884
  /**
 
1885
    Check if this query returns a result set and therefore is allowed in
 
1886
    cursors and set an error message if it is not the case.
 
1887
 
 
1888
    @retval false     success
 
1889
    @retval true      error, an error message is set
 
1890
  */
 
1891
  virtual bool check_simple_select() const;
 
1892
  virtual void abort() {}
 
1893
  /*
 
1894
    Cleanup instance of this class for next execution of a prepared
 
1895
    statement/stored procedure.
 
1896
  */
 
1897
  virtual void cleanup();
 
1898
  void set_session(Session *session_arg) { session= session_arg; }
 
1899
  void begin_dataset() {}
 
1900
};
 
1901
 
 
1902
 
 
1903
/*
 
1904
  Base class for select_result descendands which intercept and
 
1905
  transform result set rows. As the rows are not sent to the client,
 
1906
  sending of result set metadata should be suppressed as well.
 
1907
*/
 
1908
 
 
1909
class select_result_interceptor: public select_result
 
1910
{
 
1911
public:
 
1912
  select_result_interceptor() {}              /* Remove gcc warning */
 
1913
  uint32_t field_count(List<Item> &) const
 
1914
  { return 0; }
 
1915
  bool send_fields(List<Item> &,
 
1916
                   uint32_t)
 
1917
  { return false; }
 
1918
};
 
1919
 
 
1920
 
 
1921
class select_send :public select_result {
 
1922
  /**
 
1923
    True if we have sent result set metadata to the client.
 
1924
    In this case the client always expects us to end the result
 
1925
    set with an eof or error packet
 
1926
  */
 
1927
  bool is_result_set_started;
 
1928
public:
 
1929
  select_send() :is_result_set_started(false) {}
 
1930
  bool send_fields(List<Item> &list, uint32_t flags);
 
1931
  bool send_data(List<Item> &items);
 
1932
  bool send_eof();
 
1933
  virtual bool check_simple_select() const { return false; }
 
1934
  void abort();
 
1935
  virtual void cleanup();
 
1936
};
 
1937
 
 
1938
 
 
1939
class select_to_file :public select_result_interceptor {
 
1940
protected:
 
1941
  sql_exchange *exchange;
 
1942
  File file;
 
1943
  IO_CACHE cache;
 
1944
  ha_rows row_count;
 
1945
  char path[FN_REFLEN];
 
1946
 
 
1947
public:
 
1948
  select_to_file(sql_exchange *ex) :exchange(ex), file(-1),row_count(0L)
 
1949
  { path[0]=0; }
 
1950
  ~select_to_file();
 
1951
  void send_error(uint32_t errcode,const char *err);
 
1952
  bool send_eof();
 
1953
  void cleanup();
 
1954
};
 
1955
 
 
1956
 
1500
1957
#define ESCAPE_CHARS "ntrb0ZN" // keep synchronous with READ_INFO::unescape
1501
1958
 
1502
 
} /* namespace drizzled */
1503
 
 
1504
 
/** @TODO why is this in the middle of the file */
1505
 
#include <drizzled/select_to_file.h>
1506
 
#include <drizzled/select_export.h>
1507
 
#include <drizzled/select_dump.h>
1508
 
#include <drizzled/select_insert.h>
1509
 
#include <drizzled/select_create.h>
1510
 
#include <drizzled/tmp_table_param.h>
1511
 
#include <drizzled/select_union.h>
1512
 
#include <drizzled/select_subselect.h>
1513
 
#include <drizzled/select_singlerow_subselect.h>
1514
 
#include <drizzled/select_max_min_finder_subselect.h>
1515
 
#include <drizzled/select_exists_subselect.h>
1516
 
 
1517
 
namespace drizzled
1518
 
{
1519
 
 
1520
 
/**
1521
 
 * A structure used to describe sort information
1522
 
 * for a field or item used in ORDER BY.
1523
 
 */
1524
 
typedef struct st_sort_field 
1525
 
{
1526
 
  Field *field; /**< Field to sort */
1527
 
  Item  *item; /**< Item if not sorting fields */
1528
 
  size_t length; /**< Length of sort field */
1529
 
  uint32_t suffix_length; /**< Length suffix (0-4) */
1530
 
  Item_result result_type; /**< Type of item */
1531
 
  bool reverse; /**< if descending sort */
1532
 
  bool need_strxnfrm;   /**< If we have to use strxnfrm() */
 
1959
 
 
1960
/*
 
1961
 List of all possible characters of a numeric value text representation.
 
1962
*/
 
1963
#define NUMERIC_CHARS ".0123456789e+-"
 
1964
 
 
1965
 
 
1966
class select_export :public select_to_file {
 
1967
  uint32_t field_term_length;
 
1968
  int field_sep_char,escape_char,line_sep_char;
 
1969
  int field_term_char; // first char of FIELDS TERMINATED BY or MAX_INT
 
1970
  /*
 
1971
    The is_ambiguous_field_sep field is true if a value of the field_sep_char
 
1972
    field is one of the 'n', 't', 'r' etc characters
 
1973
    (see the READ_INFO::unescape method and the ESCAPE_CHARS constant value).
 
1974
  */
 
1975
  bool is_ambiguous_field_sep;
 
1976
  /*
 
1977
     The is_ambiguous_field_term is true if field_sep_char contains the first
 
1978
     char of the FIELDS TERMINATED BY (ENCLOSED BY is empty), and items can
 
1979
     contain this character.
 
1980
  */
 
1981
  bool is_ambiguous_field_term;
 
1982
  /*
 
1983
    The is_unsafe_field_sep field is true if a value of the field_sep_char
 
1984
    field is one of the '0'..'9', '+', '-', '.' and 'e' characters
 
1985
    (see the NUMERIC_CHARS constant value).
 
1986
  */
 
1987
  bool is_unsafe_field_sep;
 
1988
  bool fixed_row_size;
 
1989
public:
 
1990
  select_export(sql_exchange *ex) :select_to_file(ex) {}
 
1991
  ~select_export();
 
1992
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
1993
  bool send_data(List<Item> &items);
 
1994
};
 
1995
 
 
1996
 
 
1997
class select_dump :public select_to_file {
 
1998
public:
 
1999
  select_dump(sql_exchange *ex) :select_to_file(ex) {}
 
2000
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
2001
  bool send_data(List<Item> &items);
 
2002
};
 
2003
 
 
2004
 
 
2005
class select_insert :public select_result_interceptor {
 
2006
 public:
 
2007
  TableList *table_list;
 
2008
  Table *table;
 
2009
  List<Item> *fields;
 
2010
  uint64_t autoinc_value_of_last_inserted_row; // autogenerated or not
 
2011
  COPY_INFO info;
 
2012
  bool insert_into_view;
 
2013
  select_insert(TableList *table_list_par,
 
2014
                Table *table_par, List<Item> *fields_par,
 
2015
                List<Item> *update_fields, List<Item> *update_values,
 
2016
                enum_duplicates duplic, bool ignore);
 
2017
  ~select_insert();
 
2018
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
2019
  virtual int prepare2(void);
 
2020
  bool send_data(List<Item> &items);
 
2021
  virtual void store_values(List<Item> &values);
 
2022
  virtual bool can_rollback_data() { return 0; }
 
2023
  void send_error(uint32_t errcode,const char *err);
 
2024
  bool send_eof();
 
2025
  void abort();
 
2026
  /* not implemented: select_insert is never re-used in prepared statements */
 
2027
  void cleanup();
 
2028
};
 
2029
 
 
2030
 
 
2031
class select_create: public select_insert {
 
2032
  order_st *group;
 
2033
  TableList *create_table;
 
2034
  HA_CREATE_INFO *create_info;
 
2035
  TableList *select_tables;
 
2036
  Alter_info *alter_info;
 
2037
  Field **field;
 
2038
  /* lock data for tmp table */
 
2039
  DRIZZLE_LOCK *m_lock;
 
2040
  /* m_lock or session->extra_lock */
 
2041
  DRIZZLE_LOCK **m_plock;
 
2042
public:
 
2043
  select_create (TableList *table_arg,
 
2044
                 HA_CREATE_INFO *create_info_par,
 
2045
                 Alter_info *alter_info_arg,
 
2046
                 List<Item> &select_fields,enum_duplicates duplic, bool ignore,
 
2047
                 TableList *select_tables_arg)
 
2048
    :select_insert (NULL, NULL, &select_fields, 0, 0, duplic, ignore),
 
2049
    create_table(table_arg),
 
2050
    create_info(create_info_par),
 
2051
    select_tables(select_tables_arg),
 
2052
    alter_info(alter_info_arg),
 
2053
    m_plock(NULL)
 
2054
    {}
 
2055
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
2056
 
 
2057
  void binlog_show_create_table(Table **tables, uint32_t count);
 
2058
  void store_values(List<Item> &values);
 
2059
  void send_error(uint32_t errcode,const char *err);
 
2060
  bool send_eof();
 
2061
  void abort();
 
2062
  virtual bool can_rollback_data() { return 1; }
 
2063
 
 
2064
  // Needed for access from local class MY_HOOKS in prepare(), since session is proteted.
 
2065
  const Session *get_session(void) { return session; }
 
2066
  const HA_CREATE_INFO *get_create_info() { return create_info; };
 
2067
  int prepare2(void) { return 0; }
 
2068
};
 
2069
 
 
2070
#include <storage/myisam/myisam.h>
 
2071
 
 
2072
/* 
 
2073
  Param to create temporary tables when doing SELECT:s 
 
2074
  NOTE
 
2075
    This structure is copied using memcpy as a part of JOIN.
 
2076
*/
 
2077
 
 
2078
class TMP_TABLE_PARAM :public Sql_alloc
 
2079
{
 
2080
private:
 
2081
  /* Prevent use of these (not safe because of lists and copy_field) */
 
2082
  TMP_TABLE_PARAM(const TMP_TABLE_PARAM &);
 
2083
  void operator=(TMP_TABLE_PARAM &);
 
2084
 
 
2085
public:
 
2086
  List<Item> copy_funcs;
 
2087
  List<Item> save_copy_funcs;
 
2088
  Copy_field *copy_field, *copy_field_end;
 
2089
  Copy_field *save_copy_field, *save_copy_field_end;
 
2090
  unsigned char     *group_buff;
 
2091
  Item      **items_to_copy;                    /* Fields in tmp table */
 
2092
  MI_COLUMNDEF *recinfo,*start_recinfo;
 
2093
  KEY *keyinfo;
 
2094
  ha_rows end_write_records;
 
2095
  uint  field_count,sum_func_count,func_count;
 
2096
  uint32_t  hidden_field_count;
 
2097
  uint  group_parts,group_length,group_null_parts;
 
2098
  uint  quick_group;
 
2099
  bool  using_indirect_summary_function;
 
2100
  /* If >0 convert all blob fields to varchar(convert_blob_length) */
 
2101
  uint32_t  convert_blob_length; 
 
2102
  const CHARSET_INFO *table_charset; 
 
2103
  bool schema_table;
 
2104
  /*
 
2105
    True if GROUP BY and its aggregate functions are already computed
 
2106
    by a table access method (e.g. by loose index scan). In this case
 
2107
    query execution should not perform aggregation and should treat
 
2108
    aggregate functions as normal functions.
 
2109
  */
 
2110
  bool precomputed_group_by;
 
2111
  bool force_copy_fields;
 
2112
  /*
 
2113
    If true, create_tmp_field called from create_tmp_table will convert
 
2114
    all BIT fields to 64-bit longs. This is a workaround the limitation
 
2115
    that MEMORY tables cannot index BIT columns.
 
2116
  */
 
2117
  bool bit_fields_as_long;
 
2118
 
 
2119
  TMP_TABLE_PARAM()
 
2120
    :copy_field(0), group_parts(0),
 
2121
     group_length(0), group_null_parts(0), convert_blob_length(0),
 
2122
     schema_table(0), precomputed_group_by(0), force_copy_fields(0),
 
2123
     bit_fields_as_long(0)
 
2124
  {}
 
2125
  ~TMP_TABLE_PARAM()
 
2126
  {
 
2127
    cleanup();
 
2128
  }
 
2129
  void init(void);
 
2130
  inline void cleanup(void)
 
2131
  {
 
2132
    if (copy_field)                             /* Fix for Intel compiler */
 
2133
    {
 
2134
      delete [] copy_field;
 
2135
      save_copy_field= copy_field= 0;
 
2136
    }
 
2137
  }
 
2138
};
 
2139
 
 
2140
class select_union :public select_result_interceptor
 
2141
{
 
2142
  TMP_TABLE_PARAM tmp_table_param;
 
2143
public:
 
2144
  Table *table;
 
2145
 
 
2146
  select_union() :table(0) {}
 
2147
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
2148
  bool send_data(List<Item> &items);
 
2149
  bool send_eof();
 
2150
  bool flush();
 
2151
  void cleanup();
 
2152
  bool create_result_table(Session *session, List<Item> *column_types,
 
2153
                           bool is_distinct, uint64_t options,
 
2154
                           const char *alias, bool bit_fields_as_long);
 
2155
};
 
2156
 
 
2157
/* Base subselect interface class */
 
2158
class select_subselect :public select_result_interceptor
 
2159
{
 
2160
protected:
 
2161
  Item_subselect *item;
 
2162
public:
 
2163
  select_subselect(Item_subselect *item);
 
2164
  bool send_data(List<Item> &items)=0;
 
2165
  bool send_eof() { return 0; };
 
2166
};
 
2167
 
 
2168
/* Single value subselect interface class */
 
2169
class select_singlerow_subselect :public select_subselect
 
2170
{
 
2171
public:
 
2172
  select_singlerow_subselect(Item_subselect *item_arg)
 
2173
    :select_subselect(item_arg)
 
2174
  {}
 
2175
  bool send_data(List<Item> &items);
 
2176
};
 
2177
 
 
2178
/* used in independent ALL/ANY optimisation */
 
2179
class select_max_min_finder_subselect :public select_subselect
 
2180
{
 
2181
  Item_cache *cache;
 
2182
  bool (select_max_min_finder_subselect::*op)();
 
2183
  bool fmax;
 
2184
public:
 
2185
  select_max_min_finder_subselect(Item_subselect *item_arg, bool mx)
 
2186
    :select_subselect(item_arg), cache(0), fmax(mx)
 
2187
  {}
 
2188
  void cleanup();
 
2189
  bool send_data(List<Item> &items);
 
2190
  bool cmp_real();
 
2191
  bool cmp_int();
 
2192
  bool cmp_decimal();
 
2193
  bool cmp_str();
 
2194
};
 
2195
 
 
2196
/* EXISTS subselect interface class */
 
2197
class select_exists_subselect :public select_subselect
 
2198
{
 
2199
public:
 
2200
  select_exists_subselect(Item_subselect *item_arg)
 
2201
    :select_subselect(item_arg){}
 
2202
  bool send_data(List<Item> &items);
 
2203
};
 
2204
 
 
2205
/* Structs used when sorting */
 
2206
 
 
2207
typedef struct st_sort_field {
 
2208
  Field *field;                         /* Field to sort */
 
2209
  Item  *item;                          /* Item if not sorting fields */
 
2210
  uint   length;                        /* Length of sort field */
 
2211
  uint32_t   suffix_length;                 /* Length suffix (0-4) */
 
2212
  Item_result result_type;              /* Type of item */
 
2213
  bool reverse;                         /* if descending sort */
 
2214
  bool need_strxnfrm;                   /* If we have to use strxnfrm() */
1533
2215
} SORT_FIELD;
1534
2216
 
1535
 
typedef struct st_sort_buffer 
1536
 
{
1537
 
  uint32_t index;       /* 0 or 1 */
 
2217
 
 
2218
typedef struct st_sort_buffer {
 
2219
  uint32_t index;                                       /* 0 or 1 */
1538
2220
  uint32_t sort_orders;
1539
 
  uint32_t change_pos; /* If sort-fields changed */
 
2221
  uint32_t change_pos;                          /* If sort-fields changed */
1540
2222
  char **buff;
1541
2223
  SORT_FIELD *sortorder;
1542
2224
} SORT_BUFFER;
1543
2225
 
1544
 
} /* namespace drizzled */
1545
 
 
1546
 
/** @TODO why is this in the middle of the file */
1547
 
 
1548
 
#include <drizzled/table_ident.h>
1549
 
#include <drizzled/user_var_entry.h>
1550
 
#include <drizzled/unique.h>
1551
 
#include <drizzled/var.h>
1552
 
#include <drizzled/select_dumpvar.h>
1553
 
 
1554
 
namespace drizzled
1555
 
{
 
2226
/* Structure for db & table in sql_yacc */
 
2227
 
 
2228
class Table_ident :public Sql_alloc
 
2229
{
 
2230
public:
 
2231
  LEX_STRING db;
 
2232
  LEX_STRING table;
 
2233
  SELECT_LEX_UNIT *sel;
 
2234
  inline Table_ident(Session *session, LEX_STRING db_arg, LEX_STRING table_arg,
 
2235
                     bool force)
 
2236
    :table(table_arg), sel((SELECT_LEX_UNIT *)0)
 
2237
  {
 
2238
    if (!force && (session->client_capabilities & CLIENT_NO_SCHEMA))
 
2239
      db.str=0;
 
2240
    else
 
2241
      db= db_arg;
 
2242
  }
 
2243
  inline Table_ident(LEX_STRING table_arg) 
 
2244
    :table(table_arg), sel((SELECT_LEX_UNIT *)0)
 
2245
  {
 
2246
    db.str=0;
 
2247
  }
 
2248
  /*
 
2249
    This constructor is used only for the case when we create a derived
 
2250
    table. A derived table has no name and doesn't belong to any database.
 
2251
    Later, if there was an alias specified for the table, it will be set
 
2252
    by add_table_to_list.
 
2253
  */
 
2254
  inline Table_ident(SELECT_LEX_UNIT *s) : sel(s)
 
2255
  {
 
2256
    /* We must have a table name here as this is used with add_table_to_list */
 
2257
    db.str= empty_c_string;                    /* a subject to casedn_str */
 
2258
    db.length= 0;
 
2259
    table.str= internal_table_name;
 
2260
    table.length=1;
 
2261
  }
 
2262
  bool is_derived_table() const { return test(sel); }
 
2263
  inline void change_db(char *db_name)
 
2264
  {
 
2265
    db.str= db_name; db.length= (uint) strlen(db_name);
 
2266
  }
 
2267
};
 
2268
 
 
2269
// this is needed for user_vars hash
 
2270
class user_var_entry
 
2271
{
 
2272
 public:
 
2273
  user_var_entry() {}                         /* Remove gcc warning */
 
2274
  LEX_STRING name;
 
2275
  char *value;
 
2276
  ulong length;
 
2277
  query_id_t update_query_id, used_query_id;
 
2278
  Item_result type;
 
2279
  bool unsigned_flag;
 
2280
 
 
2281
  double val_real(bool *null_value);
 
2282
  int64_t val_int(bool *null_value) const;
 
2283
  String *val_str(bool *null_value, String *str, uint32_t decimals);
 
2284
  my_decimal *val_decimal(bool *null_value, my_decimal *result);
 
2285
  DTCollation collation;
 
2286
};
 
2287
 
 
2288
/*
 
2289
   Unique -- class for unique (removing of duplicates). 
 
2290
   Puts all values to the TREE. If the tree becomes too big,
 
2291
   it's dumped to the file. User can request sorted values, or
 
2292
   just iterate through them. In the last case tree merging is performed in
 
2293
   memory simultaneously with iteration, so it should be ~2-3x faster.
 
2294
 */
 
2295
 
 
2296
class Unique :public Sql_alloc
 
2297
{
 
2298
  DYNAMIC_ARRAY file_ptrs;
 
2299
  ulong max_elements;
 
2300
  uint64_t max_in_memory_size;
 
2301
  IO_CACHE file;
 
2302
  TREE tree;
 
2303
  unsigned char *record_pointers;
 
2304
  bool flush();
 
2305
  uint32_t size;
 
2306
 
 
2307
public:
 
2308
  ulong elements;
 
2309
  Unique(qsort_cmp2 comp_func, void *comp_func_fixed_arg,
 
2310
         uint32_t size_arg, uint64_t max_in_memory_size_arg);
 
2311
  ~Unique();
 
2312
  ulong elements_in_tree() { return tree.elements_in_tree; }
 
2313
  inline bool unique_add(void *ptr)
 
2314
  {
 
2315
    if (tree.elements_in_tree > max_elements && flush())
 
2316
      return(1);
 
2317
    return(!tree_insert(&tree, ptr, 0, tree.custom_arg));
 
2318
  }
 
2319
 
 
2320
  bool get(Table *table);
 
2321
  static double get_use_cost(uint32_t *buffer, uint32_t nkeys, uint32_t key_size, 
 
2322
                             uint64_t max_in_memory_size);
 
2323
  inline static int get_cost_calc_buff_size(ulong nkeys, uint32_t key_size, 
 
2324
                                            uint64_t max_in_memory_size)
 
2325
  {
 
2326
    register uint64_t max_elems_in_tree=
 
2327
      (1 + max_in_memory_size / ALIGN_SIZE(sizeof(TREE_ELEMENT)+key_size));
 
2328
    return (int) (sizeof(uint)*(1 + nkeys/max_elems_in_tree));
 
2329
  }
 
2330
 
 
2331
  void reset();
 
2332
  bool walk(tree_walk_action action, void *walk_action_arg);
 
2333
 
 
2334
  friend int unique_write_to_file(unsigned char* key, element_count count, Unique *unique);
 
2335
  friend int unique_write_to_ptrs(unsigned char* key, element_count count, Unique *unique);
 
2336
};
 
2337
 
 
2338
 
 
2339
class multi_delete :public select_result_interceptor
 
2340
{
 
2341
  TableList *delete_tables, *table_being_deleted;
 
2342
  Unique **tempfiles;
 
2343
  ha_rows deleted, found;
 
2344
  uint32_t num_of_tables;
 
2345
  int error;
 
2346
  bool do_delete;
 
2347
  /* True if at least one table we delete from is transactional */
 
2348
  bool transactional_tables;
 
2349
  /* True if at least one table we delete from is not transactional */
 
2350
  bool normal_tables;
 
2351
  bool delete_while_scanning;
 
2352
  /*
 
2353
     error handling (rollback and binlogging) can happen in send_eof()
 
2354
     so that afterward send_error() needs to find out that.
 
2355
  */
 
2356
  bool error_handled;
 
2357
 
 
2358
public:
 
2359
  multi_delete(TableList *dt, uint32_t num_of_tables);
 
2360
  ~multi_delete();
 
2361
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
2362
  bool send_data(List<Item> &items);
 
2363
  bool initialize_tables (JOIN *join);
 
2364
  void send_error(uint32_t errcode,const char *err);
 
2365
  int  do_deletes();
 
2366
  bool send_eof();
 
2367
  virtual void abort();
 
2368
};
 
2369
 
 
2370
 
 
2371
class multi_update :public select_result_interceptor
 
2372
{
 
2373
  TableList *all_tables; /* query/update command tables */
 
2374
  TableList *leaves;     /* list of leves of join table tree */
 
2375
  TableList *update_tables, *table_being_updated;
 
2376
  Table **tmp_tables, *main_table, *table_to_update;
 
2377
  TMP_TABLE_PARAM *tmp_table_param;
 
2378
  ha_rows updated, found;
 
2379
  List <Item> *fields, *values;
 
2380
  List <Item> **fields_for_table, **values_for_table;
 
2381
  uint32_t table_count;
 
2382
  /*
 
2383
   List of tables referenced in the CHECK OPTION condition of
 
2384
   the updated view excluding the updated table. 
 
2385
  */
 
2386
  List <Table> unupdated_check_opt_tables;
 
2387
  Copy_field *copy_field;
 
2388
  enum enum_duplicates handle_duplicates;
 
2389
  bool do_update, trans_safe;
 
2390
  /* True if the update operation has made a change in a transactional table */
 
2391
  bool transactional_tables;
 
2392
  bool ignore;
 
2393
  /* 
 
2394
     error handling (rollback and binlogging) can happen in send_eof()
 
2395
     so that afterward send_error() needs to find out that.
 
2396
  */
 
2397
  bool error_handled;
 
2398
 
 
2399
public:
 
2400
  multi_update(TableList *ut, TableList *leaves_list,
 
2401
               List<Item> *fields, List<Item> *values,
 
2402
               enum_duplicates handle_duplicates, bool ignore);
 
2403
  ~multi_update();
 
2404
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
2405
  bool send_data(List<Item> &items);
 
2406
  bool initialize_tables (JOIN *join);
 
2407
  void send_error(uint32_t errcode,const char *err);
 
2408
  int  do_updates();
 
2409
  bool send_eof();
 
2410
  virtual void abort();
 
2411
};
 
2412
 
 
2413
class my_var : public Sql_alloc  {
 
2414
public:
 
2415
  LEX_STRING s;
 
2416
  bool local;
 
2417
  uint32_t offset;
 
2418
  enum_field_types type;
 
2419
  my_var (LEX_STRING& j, bool i, uint32_t o, enum_field_types t)
 
2420
    :s(j), local(i), offset(o), type(t)
 
2421
  {}
 
2422
  ~my_var() {}
 
2423
};
 
2424
 
 
2425
class select_dumpvar :public select_result_interceptor {
 
2426
  ha_rows row_count;
 
2427
public:
 
2428
  List<my_var> var_list;
 
2429
  select_dumpvar()  { var_list.empty(); row_count= 0;}
 
2430
  ~select_dumpvar() {}
 
2431
  int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
 
2432
  bool send_data(List<Item> &items);
 
2433
  bool send_eof();
 
2434
  virtual bool check_simple_select() const;
 
2435
  void cleanup();
 
2436
};
1556
2437
 
1557
2438
/* Bits in sql_command_flags */
1558
2439
 
1559
 
enum sql_command_flag_bits 
1560
 
{
1561
 
  CF_BIT_CHANGES_DATA,
1562
 
  CF_BIT_HAS_ROW_COUNT,
1563
 
  CF_BIT_STATUS_COMMAND,
1564
 
  CF_BIT_SHOW_TABLE_COMMAND,
1565
 
  CF_BIT_WRITE_LOGS_COMMAND,
1566
 
  CF_BIT_SIZE
1567
 
};
1568
 
 
1569
 
static const std::bitset<CF_BIT_SIZE> CF_CHANGES_DATA(1 << CF_BIT_CHANGES_DATA);
1570
 
static const std::bitset<CF_BIT_SIZE> CF_HAS_ROW_COUNT(1 << CF_BIT_HAS_ROW_COUNT);
1571
 
static const std::bitset<CF_BIT_SIZE> CF_STATUS_COMMAND(1 << CF_BIT_STATUS_COMMAND);
1572
 
static const std::bitset<CF_BIT_SIZE> CF_SHOW_TABLE_COMMAND(1 << CF_BIT_SHOW_TABLE_COMMAND);
1573
 
static const std::bitset<CF_BIT_SIZE> CF_WRITE_LOGS_COMMAND(1 << CF_BIT_WRITE_LOGS_COMMAND);
 
2440
#define CF_CHANGES_DATA         1
 
2441
#define CF_HAS_ROW_COUNT        2
 
2442
#define CF_STATUS_COMMAND       4
 
2443
#define CF_SHOW_TABLE_COMMAND   8
 
2444
#define CF_WRITE_LOGS_COMMAND  16
1574
2445
 
1575
2446
/* Functions in sql_class.cc */
1576
 
void add_to_status(system_status_var *to_var, system_status_var *from_var);
1577
 
 
1578
 
void add_diff_to_status(system_status_var *to_var, system_status_var *from_var,
1579
 
                        system_status_var *dec_var);
1580
 
 
1581
 
} /* namespace drizzled */
1582
 
 
1583
 
#endif /* DRIZZLED_SESSION_H */
 
2447
 
 
2448
void add_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var);
 
2449
 
 
2450
void add_diff_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var,
 
2451
                        STATUS_VAR *dec_var);
 
2452
 
 
2453
void close_connection(Session *session, uint32_t errcode, bool lock);
 
2454
 
 
2455
#endif /* DRIZZLE_SERVER */
 
2456
 
 
2457
#endif /* DRIZZLED_SQL_CLASS_H */