107
90
/* for VIEW ... WITH CHECK OPTION */
110
typedef struct drizzled_lock_st
94
class Key_part_spec :public Sql_alloc {
96
LEX_STRING field_name;
98
Key_part_spec(const LEX_STRING &name, uint len)
99
: field_name(name), length(len)
101
Key_part_spec(const char *name, const size_t name_len, uint len)
103
{ field_name.str= (char *)name; field_name.length= name_len; }
104
bool operator==(const Key_part_spec& other) const;
106
Construct a copy of this Key_part_spec. field_name is copied
107
by-pointer as it is known to never change. At the same time
108
'length' may be reset in mysql_prepare_create_table, and this
109
is why we supply it with a copy.
111
@return If out of memory, 0 is returned and an error is set in
114
Key_part_spec *clone(MEM_ROOT *mem_root) const
115
{ return new (mem_root) Key_part_spec(*this); }
119
class Alter_drop :public Sql_alloc {
121
enum drop_type {KEY, COLUMN };
124
Alter_drop(enum drop_type par_type,const char *par_name)
125
:name(par_name), type(par_type) {}
127
Used to make a clone of this object for ALTER/CREATE TABLE
128
@sa comment for Key_part_spec::clone
130
Alter_drop *clone(MEM_ROOT *mem_root) const
131
{ return new (mem_root) Alter_drop(*this); }
135
class Alter_column :public Sql_alloc {
139
Alter_column(const char *par_name,Item *literal)
140
:name(par_name), def(literal) {}
142
Used to make a clone of this object for ALTER/CREATE TABLE
143
@sa comment for Key_part_spec::clone
145
Alter_column *clone(MEM_ROOT *mem_root) const
146
{ return new (mem_root) Alter_column(*this); }
150
class Key :public Sql_alloc {
152
enum Keytype { PRIMARY, UNIQUE, MULTIPLE, FOREIGN_KEY};
154
KEY_CREATE_INFO key_create_info;
155
List<Key_part_spec> columns;
159
Key(enum Keytype type_par, const LEX_STRING &name_arg,
160
KEY_CREATE_INFO *key_info_arg,
161
bool generated_arg, List<Key_part_spec> &cols)
162
:type(type_par), key_create_info(*key_info_arg), columns(cols),
163
name(name_arg), generated(generated_arg)
165
Key(enum Keytype type_par, const char *name_arg, size_t name_len_arg,
166
KEY_CREATE_INFO *key_info_arg, bool generated_arg,
167
List<Key_part_spec> &cols)
168
:type(type_par), key_create_info(*key_info_arg), columns(cols),
169
generated(generated_arg)
171
name.str= (char *)name_arg;
172
name.length= name_len_arg;
174
Key(const Key &rhs, MEM_ROOT *mem_root);
176
/* Equality comparison of keys (ignoring name) */
177
friend bool foreign_key_prefix(Key *a, Key *b);
179
Used to make a clone of this object for ALTER/CREATE TABLE
180
@sa comment for Key_part_spec::clone
182
virtual Key *clone(MEM_ROOT *mem_root) const
183
{ return new (mem_root) Key(*this, mem_root); }
188
class Foreign_key: public Key {
190
enum fk_match_opt { FK_MATCH_UNDEF, FK_MATCH_FULL,
191
FK_MATCH_PARTIAL, FK_MATCH_SIMPLE};
192
enum fk_option { FK_OPTION_UNDEF, FK_OPTION_RESTRICT, FK_OPTION_CASCADE,
193
FK_OPTION_SET_NULL, FK_OPTION_NO_ACTION, FK_OPTION_DEFAULT};
195
Table_ident *ref_table;
196
List<Key_part_spec> ref_columns;
197
uint delete_opt, update_opt, match_opt;
198
Foreign_key(const LEX_STRING &name_arg, List<Key_part_spec> &cols,
199
Table_ident *table, List<Key_part_spec> &ref_cols,
200
uint delete_opt_arg, uint update_opt_arg, uint match_opt_arg)
201
:Key(FOREIGN_KEY, name_arg, &default_key_create_info, 0, cols),
202
ref_table(table), ref_columns(ref_cols),
203
delete_opt(delete_opt_arg), update_opt(update_opt_arg),
204
match_opt(match_opt_arg)
206
Foreign_key(const Foreign_key &rhs, MEM_ROOT *mem_root);
208
Used to make a clone of this object for ALTER/CREATE TABLE
209
@sa comment for Key_part_spec::clone
211
virtual Key *clone(MEM_ROOT *mem_root) const
212
{ return new (mem_root) Foreign_key(*this, mem_root); }
215
typedef struct st_mysql_lock
113
uint32_t table_count;
218
uint table_count,lock_count;
115
219
THR_LOCK_DATA **locks;
118
#include <drizzled/lex_column.h>
223
class LEX_COLUMN : public Sql_alloc
228
LEX_COLUMN (const String& x,const uint& y ): column (x),rights (y) {}
231
#include "sql_lex.h" /* Must be here */
120
233
class select_result;
123
#define Session_SENTRY_MAGIC 0xfeedd1ff
124
#define Session_SENTRY_GONE 0xdeadbeef
236
#define THD_SENTRY_MAGIC 0xfeedd1ff
237
#define THD_SENTRY_GONE 0xdeadbeef
126
#define Session_CHECK_SENTRY(session) assert(session->dbug_sentry == Session_SENTRY_MAGIC)
239
#define THD_CHECK_SENTRY(thd) assert(thd->dbug_sentry == THD_SENTRY_MAGIC)
128
241
struct system_variables
130
system_variables() {};
132
244
How dynamically allocated system variables are handled:
134
246
The global_system_variables and max_system_variables are "authoritative"
135
247
They both should have the same 'version' and 'size'.
136
248
When attempting to access a dynamic variable, if the session version
137
249
is out of date, then the session version is updated and realloced if
138
250
neccessary and bytes copied from global to make up for missing data.
140
252
ulong dynamic_variables_version;
141
char * dynamic_variables_ptr;
142
uint32_t dynamic_variables_head; /* largest valid variable offset */
143
uint32_t dynamic_variables_size; /* how many bytes are in use */
253
char* dynamic_variables_ptr;
254
uint dynamic_variables_head; /* largest valid variable offset */
255
uint dynamic_variables_size; /* how many bytes are in use */
145
257
uint64_t myisam_max_extra_sort_file_size;
258
uint64_t myisam_max_sort_file_size;
146
259
uint64_t max_heap_table_size;
147
260
uint64_t tmp_table_size;
261
uint64_t long_query_time;
148
262
ha_rows select_limit;
149
263
ha_rows max_join_size;
150
uint64_t auto_increment_increment;
151
uint64_t auto_increment_offset;
152
uint64_t bulk_insert_buff_size;
153
uint64_t join_buff_size;
154
uint32_t max_allowed_packet;
155
uint64_t max_error_count;
156
uint64_t max_length_for_sort_data;
157
size_t max_sort_length;
158
uint64_t min_examined_row_limit;
159
bool optimizer_prune_level;
162
uint32_t optimizer_search_depth;
264
ulong auto_increment_increment, auto_increment_offset;
265
ulong bulk_insert_buff_size;
266
ulong join_buff_size;
267
ulong max_allowed_packet;
268
ulong max_error_count;
269
ulong max_length_for_sort_data;
270
ulong max_sort_length;
271
ulong max_tmp_tables;
272
ulong min_examined_row_limit;
273
ulong myisam_repair_threads;
274
ulong myisam_sort_buff_size;
275
ulong myisam_stats_method;
276
ulong net_buffer_length;
277
ulong net_interactive_timeout;
278
ulong net_read_timeout;
279
ulong net_retry_count;
280
ulong net_wait_timeout;
281
ulong net_write_timeout;
282
ulong optimizer_prune_level;
283
ulong optimizer_search_depth;
285
Controls use of Engine-MRR:
286
0 - auto, based on cost
287
1 - force MRR when the storage engine is capable of doing it
290
ulong optimizer_use_mrr;
163
291
/* A bitmap for switching optimizations on/off */
164
uint32_t optimizer_switch;
165
uint32_t div_precincrement;
166
uint64_t preload_buff_size;
167
uint32_t read_buff_size;
168
uint32_t read_rnd_buff_size;
169
size_t sortbuff_size;
170
uint32_t thread_handling;
171
uint32_t tx_isolation;
172
uint32_t completion_type;
292
ulong optimizer_switch;
293
ulong preload_buff_size;
294
ulong profiling_history_size;
295
ulong query_cache_type;
296
ulong read_buff_size;
297
ulong read_rnd_buff_size;
298
ulong div_precincrement;
300
ulong thread_handling;
302
ulong completion_type;
173
303
/* Determines which non-standard SQL behaviour should be enabled */
175
uint64_t max_seeks_for_key;
176
size_t range_alloc_block_size;
177
uint32_t query_alloc_block_size;
178
uint32_t query_prealloc_size;
179
uint32_t trans_alloc_block_size;
180
uint32_t trans_prealloc_size;
181
uint64_t group_concat_max_len;
182
/* TODO: change this to my_thread_id - but have to fix set_var first */
183
uint64_t pseudo_thread_id;
185
drizzled::plugin::StorageEngine *storage_engine;
305
ulong default_week_format;
306
ulong max_seeks_for_key;
307
ulong range_alloc_block_size;
308
ulong query_alloc_block_size;
309
ulong query_prealloc_size;
310
ulong trans_alloc_block_size;
311
ulong trans_prealloc_size;
313
ulong group_concat_max_len;
314
ulong binlog_format; // binlog format for this thd (see enum_binlog_format)
316
In slave thread we need to know in behalf of which
317
thread the query is being run to replicate temp tables properly
319
my_thread_id pseudo_thread_id;
321
bool low_priority_updates;
324
compatibility option:
325
- index usage hints (USE INDEX without a FOR clause) behave as in 5.0
328
bool engine_condition_pushdown;
329
bool keep_files_on_create;
331
bool old_alter_table;
333
plugin_ref table_plugin;
187
335
/* Only charset part of these variables is sensible */
188
336
const CHARSET_INFO *character_set_filesystem;
337
const CHARSET_INFO *character_set_client;
338
const CHARSET_INFO *character_set_results;
190
340
/* Both charset and collation parts of these variables are important */
191
341
const CHARSET_INFO *collation_server;
193
inline const CHARSET_INFO *getCollation(void)
195
return collation_server;
342
const CHARSET_INFO *collation_database;
343
const CHARSET_INFO *collation_connection;
198
345
/* Locale Support */
199
346
MY_LOCALE *lc_time_names;
201
348
Time_zone *time_zone;
350
/* DATE, DATETIME and DRIZZLE_TIME formats */
351
DATE_TIME_FORMAT *date_format;
352
DATE_TIME_FORMAT *datetime_format;
353
DATE_TIME_FORMAT *time_format;
204
extern struct system_variables global_system_variables;
209
* Per-session local status counters
359
/* per thread status variables */
211
361
typedef struct system_status_var
213
363
uint64_t bytes_received;
214
364
uint64_t bytes_sent;
216
ulong com_stat[(uint32_t) SQLCOM_END];
366
ulong com_stat[(uint) SQLCOM_END];
217
367
ulong created_tmp_disk_tables;
218
368
ulong created_tmp_tables;
219
369
ulong ha_commit_count;
278
438
#define last_system_status_var questions
280
void mark_transaction_to_rollback(Session *session, bool all);
440
void mark_transaction_to_rollback(THD *thd, bool all);
442
#ifdef DRIZZLE_SERVER
444
#define INIT_ARENA_DBUG_INFO is_backup_arena= 0
284
struct st_savepoint *prev;
287
Ha_trx_info *ha_list;
450
List of items created in the parser for this query. Every item puts
451
itself to the list on creation (see Item::Item() for details))
454
MEM_ROOT *mem_root; // Pointer to current memroot
455
bool is_backup_arena; /* True if this arena is used for backup. */
458
The states relfects three diffrent life cycles for three
459
different types of statements:
460
Prepared statement: INITIALIZED -> PREPARED -> EXECUTED.
461
Stored procedure: INITIALIZED_FOR_SP -> EXECUTED.
462
Other statements: CONVENTIONAL_EXECUTION never changes.
467
CONVENTIONAL_EXECUTION= 3, EXECUTED= 4, ERROR= -1
472
Query_arena(MEM_ROOT *mem_root_arg, enum enum_state state_arg) :
473
free_list(0), mem_root(mem_root_arg), state(state_arg)
474
{ INIT_ARENA_DBUG_INFO; }
476
This constructor is used only when Query_arena is created as
477
backup storage for another instance of Query_arena.
479
Query_arena() { INIT_ARENA_DBUG_INFO; }
481
virtual ~Query_arena() {};
483
inline bool is_conventional() const
484
{ assert(state == CONVENTIONAL_EXECUTION); return state == CONVENTIONAL_EXECUTION; }
486
inline void* alloc(size_t size) { return alloc_root(mem_root,size); }
487
inline void* calloc(size_t size)
490
if ((ptr=alloc_root(mem_root,size)))
491
memset(ptr, 0, size);
494
inline char *strdup(const char *str)
495
{ return strdup_root(mem_root,str); }
496
inline char *strmake(const char *str, size_t size)
497
{ return strmake_root(mem_root,str,size); }
498
inline void *memdup(const void *str, size_t size)
499
{ return memdup_root(mem_root,str,size); }
500
inline void *memdup_w_gap(const void *str, size_t size, uint gap)
503
if ((ptr= alloc_root(mem_root,size+gap)))
504
memcpy(ptr,str,size);
508
void set_query_arena(Query_arena *set);
511
/* Close the active state associated with execution of this statement */
512
virtual void cleanup_stmt();
290
extern pthread_mutex_t LOCK_xid_cache;
291
extern HASH xid_cache;
293
#include <drizzled/security_context.h>
294
#include <drizzled/open_tables_state.h>
296
#include <drizzled/internal_error_handler.h>
297
#include <drizzled/diagnostics_area.h>
300
Storage engine specific thread local data.
518
@brief State of a single command executed against this connection.
520
One connection can contain a lot of simultaneously running statements,
521
some of which could be:
522
- prepared, that is, contain placeholders,
523
To perform some action with statement we reset THD part to the state of
524
that statement, do the action, and then save back modified state from THD
525
to the statement. It will be changed in near future, and Statement will
305
Storage engine specific thread local data.
306
Lifetime: one user connection.
310
0: Life time: one statement within a transaction. If @@autocommit is
311
on, also represents the entire transaction.
312
@sa trans_register_ha()
314
1: Life time: one transaction within a connection.
315
If the storage engine does not participate in a transaction,
316
this should not be used.
317
@sa trans_register_ha()
319
Ha_trx_info ha_info[2];
321
Ha_data() :ha_ptr(NULL) {}
325
* Represents a client connection to the database server.
327
* Contains the client/server protocol object, the current statement
328
* being executed, local-to-session variables and status counters, and
329
* a host of other information.
333
* The Session class should have a vector of Statement object pointers which
334
* comprise the statements executed on the Session. Until this architectural
335
* change is done, we can forget about parallel operations inside a session.
339
* Make member variables private and have inlined accessors and setters. Hide
340
* all member variables that are not critical to non-internal operations of the
343
class Session : public Open_tables_state
529
class Statement: public ilink, public Query_arena
531
Statement(const Statement &rhs); /* not implemented: */
532
Statement &operator=(const Statement &rhs); /* non-copyable */
535
Uniquely identifies each statement object in thread scope; change during
536
statement lifetime. FIXME: must be const
347
541
MARK_COLUMNS_NONE: Means mark_used_colums is not set and no indicator to
348
542
handler of fields used is set
349
543
MARK_COLUMNS_READ: Means a bit in read set is set to inform handler
350
544
that the field is to be read. If field list contains
351
duplicates, then session->dup_field is set to point
545
duplicates, then thd->dup_field is set to point
352
546
to the last found duplicate.
353
547
MARK_COLUMNS_WRITE: Means a bit is set in write set to inform handler
354
548
that it needs to update this field in write_row
357
551
enum enum_mark_columns mark_used_columns;
358
inline void* alloc(size_t size)
360
return alloc_root(mem_root,size);
362
inline void* calloc(size_t size)
365
if ((ptr= alloc_root(mem_root,size)))
366
memset(ptr, 0, size);
369
inline char *strdup(const char *str)
371
return strdup_root(mem_root,str);
373
inline char *strmake(const char *str, size_t size)
375
return strmake_root(mem_root,str,size);
377
inline void *memdup(const void *str, size_t size)
379
return memdup_root(mem_root,str,size);
381
inline void *memdup_w_gap(const void *str, size_t size, uint32_t gap)
384
if ((ptr= alloc_root(mem_root,size+gap)))
385
memcpy(ptr,str,size);
388
/** Frees all items attached to this Statement */
391
* List of items created in the parser for this query. Every item puts
392
* itself to the list on creation (see Item::Item() for details))
395
MEM_ROOT *mem_root; /**< Pointer to current memroot */
397
* Uniquely identifies each statement object in thread scope; change during
398
* statement lifetime.
400
* @todo should be const
403
LEX *lex; /**< parse tree descriptor */
553
LEX_STRING name; /* name for named prepared statements */
554
LEX *lex; // parse tree descriptor
405
556
Points to the query associated with this statement. It's const, but
406
557
we need to declare it char * because all table handlers are written
407
558
in C and need to point to it.
435
586
valid database name.
437
588
@note this attribute is set and alloced by the slave SQL thread (for
438
the Session of that thread); that thread is (and must remain, for now) the
589
the THD of that thread); that thread is (and must remain, for now) the
439
590
only responsible for freeing this member.
444
Constant for Session::where initialization in the beginning of every query.
446
It's needed because we do not save/restore Session::where normally during
598
/* This constructor is called for backup statements */
601
Statement(LEX *lex_arg, MEM_ROOT *mem_root_arg,
602
enum enum_state state_arg, ulong id_arg);
605
/* Assign execution context (note: not all members) of given stmt to self */
606
void set_statement(Statement *stmt);
607
void set_n_backup_statement(Statement *stmt, Statement *backup);
608
void restore_backup_statement(Statement *stmt, Statement *backup);
611
struct st_savepoint {
612
struct st_savepoint *prev;
615
Ha_trx_info *ha_list;
618
enum xa_states {XA_NOTR=0, XA_ACTIVE, XA_IDLE, XA_PREPARED};
619
extern const char *xa_state_names[];
621
typedef struct st_xid_state {
622
/* For now, this is only used to catch duplicated external xids */
623
XID xid; // transaction identifier
624
enum xa_states xa_state; // used by external XA only
628
extern pthread_mutex_t LOCK_xid_cache;
629
extern HASH xid_cache;
630
bool xid_cache_init(void);
631
void xid_cache_free(void);
632
XID_STATE *xid_cache_search(XID *xid);
633
bool xid_cache_insert(XID *xid, enum xa_states xa_state);
634
bool xid_cache_insert(XID_STATE *xid_state);
635
void xid_cache_delete(XID_STATE *xid_state);
638
@class Security_context
639
@brief A set of THD members describing the current authenticated user.
642
class Security_context {
644
Security_context() {} /* Remove gcc warning */
646
host - host of the client
647
user - user of the client, set to NULL until the user has been read from
649
priv_user - The user privilege we are using. May be "" for anonymous user.
658
inline char *priv_host_name()
660
return (ip ? ip : (char *)"%");
666
A registry for item tree transformations performed during
667
query optimization. We register only those changes which require
668
a rollback to re-execute a prepared statement or stored procedure
672
struct Item_change_record;
673
typedef I_List<Item_change_record> Item_change_list;
677
Class that holds information about tables which were opened and locked
678
by the thread. It is also used to save/restore this information in
679
push_open_tables_state()/pop_open_tables_state().
682
class Open_tables_state
686
List of regular tables in use by this thread. Contains temporary and
687
base tables that were opened with @see open_tables().
691
List of temporary tables used by this thread. Contains user-level
692
temporary tables, created with CREATE TEMPORARY TABLE, and
693
internal temporary tables, created, e.g., to resolve a SELECT,
694
or for an intermediate table used in ALTER.
695
XXX Why are internal temporary tables added to this list?
697
TABLE *temporary_tables;
699
List of tables that were opened with HANDLER OPEN and are
700
still in use by this thread.
702
TABLE *handler_tables;
703
TABLE *derived_tables;
705
During a MySQL session, one can lock tables in two modes: automatic
706
or manual. In automatic mode all necessary tables are locked just before
707
statement execution, and all acquired locks are stored in 'lock'
708
member. Unlocking takes place automatically as well, when the
710
Manual mode comes into play when a user issues a 'LOCK TABLES'
711
statement. In this mode the user can only use the locked tables.
712
Trying to use any other tables will give an error. The locked tables are
713
stored in 'locked_tables' member. Manual locking is described in
714
the 'LOCK_TABLES' chapter of the MySQL manual.
715
See also lock_tables() for details.
719
Tables that were locked with explicit or implicit LOCK TABLES.
720
(Implicit LOCK TABLES happens when we are prelocking tables for
721
execution of statement which uses stored routines. See description
722
THD::prelocked_mode for more info.)
724
DRIZZLE_LOCK *locked_tables;
727
CREATE-SELECT keeps an extra lock for the table being
728
created. This field is used to keep the extra lock available for
729
lower level routines, which would otherwise miss that lock.
731
DRIZZLE_LOCK *extra_lock;
734
uint current_tablenr;
737
BACKUPS_AVAIL = (1U << 0) /* There are backups available */
741
Flags with information about the open tables state.
746
This constructor serves for creation of Open_tables_state instances
747
which are used as backup storage.
749
Open_tables_state() : state_flags(0U) { }
751
Open_tables_state(ulong version_arg);
753
void set_open_tables_state(Open_tables_state *state)
758
void reset_open_tables_state()
760
open_tables= temporary_tables= handler_tables= derived_tables= 0;
761
extra_lock= lock= locked_tables= 0;
767
@class Sub_statement_state
768
@brief Used to save context when executing a function or trigger
771
/* Defines used for Sub_statement_state::in_sub_stmt */
773
#define SUB_STMT_TRIGGER 1
774
#define SUB_STMT_FUNCTION 2
777
class Sub_statement_state
781
uint64_t first_successful_insert_id_in_prev_stmt;
782
uint64_t first_successful_insert_id_in_cur_stmt, insert_id_for_cur_row;
783
Discrete_interval auto_inc_interval_for_cur_row;
784
Discrete_intervals_list auto_inc_intervals_forced;
785
uint64_t limit_found_rows;
786
ha_rows cuted_fields, sent_row_count, examined_row_count;
787
ulong client_capabilities;
789
bool enable_slow_log;
790
bool last_insert_id_used;
791
SAVEPOINT *savepoints;
795
/* Flags for the THD::system_thread variable */
796
enum enum_thread_type
799
SYSTEM_THREAD_SLAVE_IO,
800
SYSTEM_THREAD_SLAVE_SQL
805
This class represents the interface for internal error handlers.
806
Internal error handlers are exception handlers used by the server
809
class Internal_error_handler
812
Internal_error_handler() {}
813
virtual ~Internal_error_handler() {}
817
Handle an error condition.
818
This method can be implemented by a subclass to achieve any of the
820
- mask an error internally, prevent exposing it to the user,
821
- mask an error and throw another one instead.
822
When this method returns true, the error condition is considered
823
'handled', and will not be propagated to upper layers.
824
It is the responsability of the code installing an internal handler
825
to then check for trapped conditions, and implement logic to recover
826
from the anticipated conditions trapped during runtime.
828
This mechanism is similar to C++ try/throw/catch:
829
- 'try' correspond to <code>THD::push_internal_handler()</code>,
830
- 'throw' correspond to <code>my_error()</code>,
831
which invokes <code>my_message_sql()</code>,
832
- 'catch' correspond to checking how/if an internal handler was invoked,
833
before removing it from the exception stack with
834
<code>THD::pop_internal_handler()</code>.
836
@param sql_errno the error number
837
@param level the error level
838
@param thd the calling thread
839
@return true if the error is handled
841
virtual bool handle_error(uint sql_errno,
843
DRIZZLE_ERROR::enum_warning_level level,
849
Stores status of the currently executed statement.
850
Cleared at the beginning of the statement, and then
851
can hold either OK, ERROR, or EOF status.
852
Can not be assigned twice per statement.
855
class Diagnostics_area
858
enum enum_diagnostics_status
860
/** The area is cleared at start of a statement. */
862
/** Set whenever one calls my_ok(). */
864
/** Set whenever one calls my_eof(). */
866
/** Set whenever one calls my_error() or my_message(). */
868
/** Set in case of a custom response, such as one from COM_STMT_PREPARE. */
871
/** True if status information is sent to the client. */
873
/** Set to make set_error_status after set_{ok,eof}_status possible. */
874
bool can_overwrite_status;
876
void set_ok_status(THD *thd, ha_rows affected_rows_arg,
877
uint64_t last_insert_id_arg,
878
const char *message);
879
void set_eof_status(THD *thd);
880
void set_error_status(THD *thd, uint sql_errno_arg, const char *message_arg);
882
void disable_status();
884
void reset_diagnostics_area();
886
bool is_set() const { return m_status != DA_EMPTY; }
887
bool is_error() const { return m_status == DA_ERROR; }
888
bool is_eof() const { return m_status == DA_EOF; }
889
bool is_ok() const { return m_status == DA_OK; }
890
bool is_disabled() const { return m_status == DA_DISABLED; }
891
enum_diagnostics_status status() const { return m_status; }
893
const char *message() const
894
{ assert(m_status == DA_ERROR || m_status == DA_OK); return m_message; }
896
uint sql_errno() const
897
{ assert(m_status == DA_ERROR); return m_sql_errno; }
899
uint server_status() const
901
assert(m_status == DA_OK || m_status == DA_EOF);
902
return m_server_status;
905
ha_rows affected_rows() const
906
{ assert(m_status == DA_OK); return m_affected_rows; }
908
uint64_t last_insert_id() const
909
{ assert(m_status == DA_OK); return m_last_insert_id; }
911
uint total_warn_count() const
913
assert(m_status == DA_OK || m_status == DA_EOF);
914
return m_total_warn_count;
917
Diagnostics_area() { reset_diagnostics_area(); }
920
/** Message buffer. Can be used by OK or ERROR status. */
921
char m_message[DRIZZLE_ERRMSG_SIZE];
923
SQL error number. One of ER_ codes from share/errmsg.txt.
924
Set by set_error_status.
929
Copied from thd->server_status when the diagnostics area is assigned.
930
We need this member as some places in the code use the following pattern:
931
thd->server_status|= ...
933
thd->server_status&= ~...
934
Assigned by OK, EOF or ERROR.
936
uint m_server_status;
938
The number of rows affected by the last statement. This is
939
semantically close to thd->row_count_func, but has a different
940
life cycle. thd->row_count_func stores the value returned by
941
function ROW_COUNT() and is cleared only by statements that
942
update its value, such as INSERT, UPDATE, DELETE and few others.
943
This member is cleared at the beginning of the next statement.
945
We could possibly merge the two, but life cycle of thd->row_count_func
948
ha_rows m_affected_rows;
950
Similarly to the previous member, this is a replacement of
951
thd->first_successful_insert_id_in_prev_stmt, which is used
952
to implement LAST_INSERT_ID().
954
uint64_t m_last_insert_id;
955
/** The total number of warnings. */
956
uint m_total_warn_count;
957
enum_diagnostics_status m_status;
959
@todo: the following THD members belong here:
960
- warn_list, warn_count,
966
Storage engine specific thread local data.
972
Storage engine specific thread local data.
973
Lifetime: one user connection.
977
0: Life time: one statement within a transaction. If @@autocommit is
978
on, also represents the entire transaction.
979
@sa trans_register_ha()
981
1: Life time: one transaction within a connection.
982
If the storage engine does not participate in a transaction,
983
this should not be used.
984
@sa trans_register_ha()
986
Ha_trx_info ha_info[2];
988
Ha_data() :ha_ptr(NULL) {}
994
For each client connection we create a separate thread with THD serving as
995
a thread/connection descriptor
998
class THD :public Statement,
999
public Open_tables_state
1002
/* Used to execute base64 coded binlog events in MySQL server */
1003
Relay_log_info* rli_fake;
1006
Constant for THD::where initialization in the beginning of every query.
1008
It's needed because we do not save/restore THD::where normally during
447
1009
primary (non subselect) query execution.
449
1011
static const char * const DEFAULT_WHERE;
451
MEM_ROOT warn_root; /**< Allocation area for warnings and errors */
452
drizzled::plugin::Client *client; /**< Pointer to client object */
453
drizzled::plugin::Scheduler *scheduler; /**< Pointer to scheduler object */
454
void *scheduler_arg; /**< Pointer to the optional scheduler argument */
455
HASH user_vars; /**< Hash of user variables defined during the session's lifetime */
456
struct system_variables variables; /**< Mutable local variables local to the session */
457
struct system_status_var status_var; /**< Session-local status counters */
458
struct system_status_var *initial_status_var; /* used by show status */
459
THR_LOCK_INFO lock_info; /**< Locking information for this session */
460
THR_LOCK_OWNER main_lock_id; /**< To use for conventional queries */
461
THR_LOCK_OWNER *lock_id; /**< If not main_lock_id, points to the lock_id of a cursor. */
462
pthread_mutex_t LOCK_delete; /**< Locked before session is deleted */
465
* A peek into the query string for the session. This is a best effort
466
* delivery, there is no guarantee whether the content is meaningful.
468
char process_list_info[PROCESS_LIST_WIDTH+1];
471
* A pointer to the stack frame of the scheduler thread
472
* which is called first in the thread for handling a client
1013
NET net; // client connection descriptor
1014
MEM_ROOT warn_root; // For warnings and errors
1015
Protocol *protocol; // Current protocol
1016
Protocol_text protocol_text; // Normal protocol
1017
HASH user_vars; // hash for user variables
1018
String packet; // dynamic buffer for network I/O
1019
String convert_buffer; // buffer for charset conversions
1020
struct rand_struct rand; // used for authentication
1021
struct system_variables variables; // Changeable local variables
1022
struct system_status_var status_var; // Per thread statistic vars
1023
struct system_status_var *initial_status_var; /* used by show status */
1024
THR_LOCK_INFO lock_info; // Locking info of this thread
1025
THR_LOCK_OWNER main_lock_id; // To use for conventional queries
1026
THR_LOCK_OWNER *lock_id; // If not main_lock_id, points to
1027
// the lock_id of a cursor.
1028
pthread_mutex_t LOCK_delete; // Locked before thd is deleted
1030
A pointer to the stack frame of handle_one_connection(),
1031
which is called first in the thread for handling a client
1036
Currently selected catalog.
478
Some members of Session (currently 'Statement::db',
479
'query') are set and alloced by the slave SQL thread
480
(for the Session of that thread); that thread is (and must remain, for now)
1042
Some members of THD (currently 'Statement::db',
1043
'catalog' and 'query') are set and alloced by the slave SQL thread
1044
(for the THD of that thread); that thread is (and must remain, for now)
481
1045
the only responsible for freeing these 3 members. If you add members
482
1046
here, and you add code to set them in replication, don't forget to
483
1047
free_them_and_set_them_to_0 in replication properly. For details see
606
1289
in the binlog is still needed; the list's minimum will contain 3.
608
1291
Discrete_intervals_list auto_inc_intervals_in_cur_stmt_for_binlog;
609
/** Used by replication and SET INSERT_ID */
1292
/* Used by replication and SET INSERT_ID */
610
1293
Discrete_intervals_list auto_inc_intervals_forced;
612
uint64_t limit_found_rows;
613
uint64_t options; /**< Bitmap of options */
614
int64_t row_count_func; /**< For the ROW_COUNT() function */
615
ha_rows cuted_fields; /**< Count of "cut" or truncated fields. @todo Kill this friggin thing. */
618
* Number of rows we actually sent to the client, including "synthetic"
619
* rows in ROLLUP etc.
621
ha_rows sent_row_count;
624
* Number of rows we read, sent or not, including in create_sort_index()
626
ha_rows examined_row_count;
629
* The set of those tables whose fields are referenced in all subqueries
634
* Possibly this it is incorrect to have used tables in Session because
635
* with more than one subquery, it is not clear what does the field mean.
637
table_map used_tables;
642
This, and some other variables like 'count_cuted_fields'
1295
There is BUG#19630 where statement-based replication of stored
1296
functions/triggers with two auto_increment columns breaks.
1297
We however ensure that it works when there is 0 or 1 auto_increment
1298
column; our rules are
1299
a) on master, while executing a top statement involving substatements,
1300
first top- or sub- statement to generate auto_increment values wins the
1301
exclusive right to see its values be written to binlog (the write
1302
will be done by the statement or its caller), and the losers won't see
1303
their values be written to binlog.
1304
b) on slave, while replicating a top statement involving substatements,
1305
first top- or sub- statement to need to read auto_increment values from
1306
the master's binlog wins the exclusive right to read them (so the losers
1307
won't read their values from binlog but instead generate on their own).
1308
a) implies that we mustn't backup/restore
1309
auto_inc_intervals_in_cur_stmt_for_binlog.
1310
b) implies that we mustn't backup/restore auto_inc_intervals_forced.
1312
If there are more than 1 auto_increment columns, then intervals for
1313
different columns may mix into the
1314
auto_inc_intervals_in_cur_stmt_for_binlog list, which is logically wrong,
1315
but there is no point in preventing this mixing by preventing intervals
1316
from the secondly inserted column to come into the list, as such
1317
prevention would be wrong too.
1318
What will happen in the case of
1319
INSERT INTO t1 (auto_inc) VALUES(NULL);
1320
where t1 has a trigger which inserts into an auto_inc column of t2, is
1321
that in binlog we'll store the interval of t1 and the interval of t2 (when
1322
we store intervals, soon), then in slave, t1 will use both intervals, t2
1323
will use none; if t1 inserts the same number of rows as on master,
1324
normally the 2nd interval will not be used by t1, which is fine. t2's
1325
values will be wrong if t2's internal auto_increment counter is different
1326
from what it was on master (which is likely). In 5.1, in mixed binlogging
1327
mode, row-based binlogging is used for such cases where two
1328
auto_increment columns are inserted.
1330
inline void record_first_successful_insert_id_in_cur_stmt(uint64_t id_arg)
1332
if (first_successful_insert_id_in_cur_stmt == 0)
1333
first_successful_insert_id_in_cur_stmt= id_arg;
1335
inline uint64_t read_first_successful_insert_id_in_prev_stmt(void)
1337
if (!stmt_depends_on_first_successful_insert_id_in_prev_stmt)
1339
/* It's the first time we read it */
1340
first_successful_insert_id_in_prev_stmt_for_binlog=
1341
first_successful_insert_id_in_prev_stmt;
1342
stmt_depends_on_first_successful_insert_id_in_prev_stmt= 1;
1344
return first_successful_insert_id_in_prev_stmt;
1347
Used by Intvar_log_event::do_apply_event() and by "SET INSERT_ID=#"
1348
(mysqlbinlog). We'll soon add a variant which can take many intervals in
1351
inline void force_one_auto_inc_interval(uint64_t next_id)
1353
auto_inc_intervals_forced.empty(); // in case of multiple SET INSERT_ID
1354
auto_inc_intervals_forced.append(next_id, UINT64_MAX, 0);
1357
uint64_t limit_found_rows;
1358
uint64_t options; /* Bitmap of states */
1359
int64_t row_count_func; /* For the ROW_COUNT() function */
1360
ha_rows cuted_fields;
1363
number of rows we actually sent to the client, including "synthetic"
1366
ha_rows sent_row_count;
1369
number of rows we read, sent or not, including in create_sort_index()
1371
ha_rows examined_row_count;
1374
The set of those tables whose fields are referenced in all subqueries
1376
TODO: possibly this it is incorrect to have used tables in THD because
1377
with more than one subquery, it is not clear what does the field mean.
1379
table_map used_tables;
1380
USER_CONN *user_connect;
1381
const CHARSET_INFO *db_charset;
1383
FIXME: this, and some other variables like 'count_cuted_fields'
643
1384
maybe should be statement/cursor local, that is, moved to Statement
644
1385
class. With current implementation warnings produced in each prepared
645
1386
statement/cursor settle here.
647
List<DRIZZLE_ERROR> warn_list;
648
uint32_t warn_count[(uint32_t) DRIZZLE_ERROR::WARN_LEVEL_END];
649
uint32_t total_warn_count;
1388
List <DRIZZLE_ERROR> warn_list;
1389
uint warn_count[(uint) DRIZZLE_ERROR::WARN_LEVEL_END];
1390
uint total_warn_count;
650
1391
Diagnostics_area main_da;
748
1545
and may point to invalid memory after that.
750
1547
Lex_input_stream *m_lip;
752
/** Place to store various things */
753
void *session_marker;
755
/** Keeps a copy of the previous table around in case we are just slamming on particular table */
759
Points to info-string that we show in SHOW PROCESSLIST
760
You are supposed to call Session_SET_PROC_INFO only if you have coded
761
a time-consuming piece that MySQL can get stuck in for a long time.
763
Set it using the session_proc_info(Session *thread, const char *message)
766
inline void set_proc_info(const char *info)
770
inline const char* get_proc_info() const
775
/** Returns the current query ID */
776
inline query_id_t getQueryId() const
781
/** Returns the current query text */
782
inline const char *getQueryString() const
787
/** Returns the length of the current query text */
788
inline size_t getQueryLength() const
791
return strlen(query);
796
/** Accessor method returning the session's ID. */
797
inline uint64_t getSessionId() const
802
/** Accessor method returning the server's ID. */
803
inline uint32_t getServerId() const
805
/* We return the global server ID. */
809
/** Returns the current transaction ID for the session's current statement */
810
inline my_xid getTransactionId()
812
return transaction.xid_state.xid.quick_get_my_xid();
815
There is BUG#19630 where statement-based replication of stored
816
functions/triggers with two auto_increment columns breaks.
817
We however ensure that it works when there is 0 or 1 auto_increment
818
column; our rules are
819
a) on master, while executing a top statement involving substatements,
820
first top- or sub- statement to generate auto_increment values wins the
821
exclusive right to see its values be written to binlog (the write
822
will be done by the statement or its caller), and the losers won't see
823
their values be written to binlog.
824
b) on slave, while replicating a top statement involving substatements,
825
first top- or sub- statement to need to read auto_increment values from
826
the master's binlog wins the exclusive right to read them (so the losers
827
won't read their values from binlog but instead generate on their own).
828
a) implies that we mustn't backup/restore
829
auto_inc_intervals_in_cur_stmt_for_binlog.
830
b) implies that we mustn't backup/restore auto_inc_intervals_forced.
832
If there are more than 1 auto_increment columns, then intervals for
833
different columns may mix into the
834
auto_inc_intervals_in_cur_stmt_for_binlog list, which is logically wrong,
835
but there is no point in preventing this mixing by preventing intervals
836
from the secondly inserted column to come into the list, as such
837
prevention would be wrong too.
838
What will happen in the case of
839
INSERT INTO t1 (auto_inc) VALUES(NULL);
840
where t1 has a trigger which inserts into an auto_inc column of t2, is
841
that in binlog we'll store the interval of t1 and the interval of t2 (when
842
we store intervals, soon), then in slave, t1 will use both intervals, t2
843
will use none; if t1 inserts the same number of rows as on master,
844
normally the 2nd interval will not be used by t1, which is fine. t2's
845
values will be wrong if t2's internal auto_increment counter is different
846
from what it was on master (which is likely). In 5.1, in mixed binlogging
847
mode, row-based binlogging is used for such cases where two
848
auto_increment columns are inserted.
850
inline void record_first_successful_insert_id_in_cur_stmt(uint64_t id_arg)
852
if (first_successful_insert_id_in_cur_stmt == 0)
853
first_successful_insert_id_in_cur_stmt= id_arg;
855
inline uint64_t read_first_successful_insert_id_in_prev_stmt(void)
857
return first_successful_insert_id_in_prev_stmt;
860
Used by Intvar_log_event::do_apply_event() and by "SET INSERT_ID=#"
861
(mysqlbinlog). We'll soon add a variant which can take many intervals in
864
inline void force_one_auto_inc_interval(uint64_t next_id)
866
auto_inc_intervals_forced.empty(); // in case of multiple SET INSERT_ID
867
auto_inc_intervals_forced.append(next_id, UINT64_MAX, 0);
870
Session(drizzled::plugin::Client *client_arg);
1554
Initialize memory roots necessary for query processing and (!)
1555
pre-allocate memory for it. We can't do that in THD constructor because
1556
there are use cases (acl_init, watcher threads,
1557
killing mysqld) where it's vital to not allocate excessive and not used
1558
memory. Note, that we still don't return error from init_for_queries():
1559
if preallocation fails, we should notice that at the first call to
1562
void init_for_queries();
1563
void change_user(void);
873
1564
void cleanup(void);
875
* Cleans up after query.
879
* This function is used to reset thread data to its default state.
881
* This function is not suitable for setting thread data to some
882
* non-default values, as there is only one replication thread, so
883
* different master threads may overwrite data of each other on
886
1565
void cleanup_after_query();
888
void awake(Session::killed_state state_to_set);
890
* Pulls thread-specific variables into Session state.
892
* Returns true most times, or false if there was a problem
893
* allocating resources for thread-specific storage.
895
* @TODO Kill this. It's not necessary once my_thr_init() is bye bye.
901
Initialize memory roots necessary for query processing and (!)
902
pre-allocate memory for it. We can't do that in Session constructor because
903
there are use cases where it's vital to not allocate excessive and not used
906
void prepareForQueries();
909
* Executes a single statement received from the
912
* Returns true if the statement was successful, or false
917
* For profiling to work, it must never be called recursively.
919
* In MySQL, this used to be the do_command() C function whic
920
* accepted a single parameter of the THD pointer.
922
bool executeStatement();
925
* Reads a query from packet and stores it.
927
* Returns true if query is read and allocated successfully,
928
* false otherwise. On a return of false, Session::fatal_error
931
* @note Used in COM_QUERY and COM_STMT_PREPARE.
933
* Sets the following Session variables:
937
* @param The packet pointer to read from
938
* @param The length of the query to read
940
bool readAndStoreQuery(const char *in_packet, uint32_t in_packet_length);
943
* Ends the current transaction and (maybe) begins the next.
945
* Returns true if the transaction completed successfully,
948
* @param Completion type
950
bool endTransaction(enum enum_mysql_completiontype completion);
951
bool endActiveTransaction();
952
bool startTransaction(start_transaction_option_t opt= START_TRANS_NO_OPTIONS);
955
* Authenticates users, with error reporting.
957
* Returns true on success, or false on failure.
964
* This will initialize the session and begin the command loop.
969
* Schedule a session to be run on the default scheduler.
1566
bool store_globals();
1567
#ifdef SIGNAL_WITH_VIO_CLOSE
1568
inline void set_active_vio(Vio* vio)
1570
pthread_mutex_lock(&LOCK_delete);
1572
pthread_mutex_unlock(&LOCK_delete);
1574
inline void clear_active_vio()
1576
pthread_mutex_lock(&LOCK_delete);
1578
pthread_mutex_unlock(&LOCK_delete);
1580
void close_active_vio();
1582
void awake(THD::killed_state state_to_set);
1584
#ifndef DRIZZLE_CLIENT
1585
enum enum_binlog_query_type {
1587
The query can be logged row-based or statement-based
1592
The query has to be logged statement-based
1597
The query represents a change to a table in the "mysql"
1598
database and is currently mapped to ROW_QUERY_TYPE.
1604
int binlog_query(enum_binlog_query_type qtype,
1605
char const *query, ulong query_len,
1606
bool is_trans, bool suppress_use,
1607
THD::killed_state killed_err_arg= THD::KILLED_NO_VALUE);
974
1611
For enter_cond() / exit_cond() to work the mutex must be got before
975
1612
enter_cond(); this mutex is then released by exit_cond().
976
1613
Usage must be: lock mutex; enter_cond(); your code; exit_cond().
978
inline const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex, const char* msg)
1615
inline const char* enter_cond(pthread_cond_t *cond, pthread_mutex_t* mutex,
980
1618
const char* old_msg = get_proc_info();
981
1619
safe_mutex_assert_owner(mutex);
982
1620
mysys_var->current_mutex = mutex;
983
1621
mysys_var->current_cond = cond;
984
this->set_proc_info(msg);
1622
thd_proc_info(this, msg);
987
1625
inline void exit_cond(const char* old_msg)
1285
1916
tree itself is reused between executions and thus is stored elsewhere.
1287
1918
MEM_ROOT main_mem_root;
1290
* Marks all tables in the list which were used by current substatement
1291
* as free for reuse.
1293
* @param Head of the list of tables
1297
* The reason we reset query_id is that it's not enough to just test
1298
* if table->query_id != session->query_id to know if a table is in use.
1302
* SELECT f1_that_uses_t1() FROM t1;
1304
* In f1_that_uses_t1() we will see one instance of t1 where query_id is
1305
* set to query_id of original query.
1307
void mark_used_tables_as_free_for_reuse(Table *table);
1309
Mark all temporary tables which were used by the current statement or
1310
substatement as free for reuse, but only if the query_id can be cleared.
1312
@param session thread context
1314
@remark For temp tables associated with a open SQL HANDLER the query_id
1315
is not reset until the HANDLER is closed.
1317
void mark_temp_tables_as_free_for_reuse();
1321
/** A short cut for session->main_da.set_ok_status(). */
1322
inline void my_ok(ha_rows affected_rows= 0, ha_rows found_rows_arg= 0,
1323
uint64_t passed_id= 0, const char *message= NULL)
1325
main_da.set_ok_status(this, affected_rows, found_rows_arg, passed_id, message);
1329
/** A short cut for session->main_da.set_eof_status(). */
1331
inline void my_eof()
1333
main_da.set_eof_status(this);
1336
/* Some inline functions for more speed */
1338
inline bool add_item_to_list(Item *item)
1340
return lex->current_select->add_item_to_list(this, item);
1343
inline bool add_value_to_list(Item *value)
1345
return lex->value_list.push_back(value);
1348
inline bool add_order_to_list(Item *item, bool asc)
1350
return lex->current_select->add_order_to_list(this, item, asc);
1353
inline bool add_group_to_list(Item *item, bool asc)
1355
return lex->current_select->add_group_to_list(this, item, asc);
1357
void refresh_status();
1358
user_var_entry *getVariable(LEX_STRING &name, bool create_if_not_exists);
1361
* Closes all tables used by the current substatement, or all tables
1362
* used by this thread if we are on the upper level.
1364
void close_thread_tables();
1365
void close_old_data_files(bool morph_locks= false,
1366
bool send_refresh= false);
1367
void close_open_tables();
1368
void close_data_files_and_morph_locks(const char *db, const char *table_name);
1371
bool free_cached_table();
1375
* Prepares statement for reopening of tables and recalculation of set of
1378
* @param Pointer to a pointer to a list of tables which we were trying to open and lock
1380
void close_tables_for_reopen(TableList **tables);
1384
* Open all tables in list, locks them (all, including derived)
1386
* @param Pointer to a list of tables for open & locking
1395
* The lock will automaticaly be freed by close_thread_tables()
1397
bool openTablesLock(TableList *tables);
1400
* Open all tables in list and process derived tables
1402
* @param Pointer to a list of tables for open
1403
* @param Bitmap of flags to modify how the tables will be open:
1404
* DRIZZLE_LOCK_IGNORE_FLUSH - open table even if someone has
1405
* done a flush or namelock on it.
1414
* This is to be used on prepare stage when you don't read any
1415
* data from the tables.
1417
bool openTables(TableList *tables, uint32_t flags= 0);
1419
int open_tables_from_list(TableList **start, uint32_t *counter, uint32_t flags= 0);
1421
Table *openTableLock(TableList *table_list, thr_lock_type lock_type);
1422
Table *openTable(TableList *table_list, bool *refresh, uint32_t flags= 0);
1424
void unlink_open_table(Table *find);
1425
void drop_open_table(Table *table, const char *db_name,
1426
const char *table_name);
1427
void close_cached_table(Table *table);
1429
/* Create a lock in the cache */
1430
Table *table_cache_insert_placeholder(const char *key, uint32_t key_length);
1431
bool lock_table_name_if_not_cached(const char *db,
1432
const char *table_name, Table **table);
1434
/* Work with temporary tables */
1435
Table *find_temporary_table(TableList *table_list);
1436
Table *find_temporary_table(const char *db, const char *table_name);
1438
void close_temporary_tables();
1439
void close_temporary_table(Table *table);
1440
// The method below just handles the de-allocation of the table. In
1441
// a better memory type world, this would not be needed.
1443
void close_temporary(Table *table);
1446
int drop_temporary_table(TableList *table_list);
1447
bool rm_temporary_table(drizzled::plugin::StorageEngine *base, const char *path);
1448
bool rm_temporary_table(drizzled::plugin::StorageEngine *base, drizzled::TableIdentifier &identifier);
1449
Table *open_temporary_table(drizzled::TableIdentifier &identifier,
1450
bool link_in_list= true);
1452
/* Reopen operations */
1453
bool reopen_tables(bool get_locks, bool mark_share_as_old);
1454
bool reopen_name_locked_table(TableList* table_list, bool link_in);
1455
bool close_cached_tables(TableList *tables, bool wait_for_refresh, bool wait_for_placeholders);
1457
void wait_for_condition(pthread_mutex_t *mutex, pthread_cond_t *cond);
1458
int setup_conds(TableList *leaves, COND **conds);
1459
int lock_tables(TableList *tables, uint32_t count, bool *need_reopen);
1463
Return the default storage engine
1465
@param getDefaultStorageEngine()
1468
pointer to plugin::StorageEngine
1470
drizzled::plugin::StorageEngine *getDefaultStorageEngine()
1472
if (variables.storage_engine)
1473
return variables.storage_engine;
1474
return global_system_variables.storage_engine;
1922
/** A short cut for thd->main_da.set_ok_status(). */
1925
my_ok(THD *thd, ha_rows affected_rows= 0, uint64_t id= 0,
1926
const char *message= NULL)
1928
thd->main_da.set_ok_status(thd, affected_rows, id, message);
1932
/** A short cut for thd->main_da.set_eof_status(). */
1937
thd->main_da.set_eof_status(thd);
1940
#define tmp_disable_binlog(A) \
1941
{uint64_t tmp_disable_binlog__save_options= (A)->options; \
1942
(A)->options&= ~OPTION_BIN_LOG
1944
#define reenable_binlog(A) (A)->options= tmp_disable_binlog__save_options;}
1948
Used to hold information about file and file structure in exchange
1949
via non-DB file (...INTO OUTFILE..., ...LOAD DATA...)
1950
XXX: We never call destructor for objects of this class.
1953
class sql_exchange :public Sql_alloc
1956
enum enum_filetype filetype; /* load XML, Added by Arnold & Erik */
1958
String *field_term,*enclosed,*line_term,*line_start,*escaped;
1962
const CHARSET_INFO *cs;
1963
sql_exchange(char *name, bool dumpfile_flag,
1964
enum_filetype filetype_arg= FILETYPE_CSV);
1967
#include "log_event.h"
1970
This is used to get result from a select
1975
class select_result :public Sql_alloc {
1978
SELECT_LEX_UNIT *unit;
1981
virtual ~select_result() {};
1982
virtual int prepare(List<Item> &list __attribute__((unused)),
1988
virtual int prepare2(void) { return 0; }
1990
Because of peculiarities of prepared statements protocol
1991
we need to know number of columns in the result set (if
1992
there is a result set) apart from sending columns metadata.
1994
virtual uint field_count(List<Item> &fields) const
1995
{ return fields.elements; }
1996
virtual bool send_fields(List<Item> &list, uint flags)=0;
1997
virtual bool send_data(List<Item> &items)=0;
1998
virtual bool initialize_tables (JOIN __attribute__((unused)) *join=0)
2000
virtual void send_error(uint errcode,const char *err);
2001
virtual bool send_eof()=0;
2003
Check if this query returns a result set and therefore is allowed in
2004
cursors and set an error message if it is not the case.
2006
@retval false success
2007
@retval true error, an error message is set
2009
virtual bool check_simple_select() const;
2010
virtual void abort() {}
2012
Cleanup instance of this class for next execution of a prepared
2013
statement/stored procedure.
2015
virtual void cleanup();
2016
void set_thd(THD *thd_arg) { thd= thd_arg; }
2017
void begin_dataset() {}
2022
Base class for select_result descendands which intercept and
2023
transform result set rows. As the rows are not sent to the client,
2024
sending of result set metadata should be suppressed as well.
2027
class select_result_interceptor: public select_result
2030
select_result_interceptor() {} /* Remove gcc warning */
2031
uint field_count(List<Item> &fields __attribute__((unused))) const
2033
bool send_fields(List<Item> &fields __attribute__((unused)),
2034
uint flag __attribute__((unused))) { return false; }
2038
class select_send :public select_result {
2040
True if we have sent result set metadata to the client.
2041
In this case the client always expects us to end the result
2042
set with an eof or error packet
2044
bool is_result_set_started;
2046
select_send() :is_result_set_started(false) {}
2047
bool send_fields(List<Item> &list, uint flags);
2048
bool send_data(List<Item> &items);
2050
virtual bool check_simple_select() const { return false; }
2052
virtual void cleanup();
2056
class select_to_file :public select_result_interceptor {
2058
sql_exchange *exchange;
2062
char path[FN_REFLEN];
2065
select_to_file(sql_exchange *ex) :exchange(ex), file(-1),row_count(0L)
2068
void send_error(uint errcode,const char *err);
1480
2074
#define ESCAPE_CHARS "ntrb0ZN" // keep synchronous with READ_INFO::unescape
1482
#include <drizzled/select_to_file.h>
1483
#include <drizzled/select_export.h>
1484
#include <drizzled/select_dump.h>
1485
#include <drizzled/select_insert.h>
1486
#include <drizzled/select_create.h>
1487
#include <plugin/myisam/myisam.h>
1488
#include <drizzled/tmp_table_param.h>
1489
#include <drizzled/select_union.h>
1490
#include <drizzled/select_subselect.h>
1491
#include <drizzled/select_singlerow_subselect.h>
1492
#include <drizzled/select_max_min_finder_subselect.h>
1493
#include <drizzled/select_exists_subselect.h>
1496
* A structure used to describe sort information
1497
* for a field or item used in ORDER BY.
1499
typedef struct st_sort_field
1501
Field *field; /**< Field to sort */
1502
Item *item; /**< Item if not sorting fields */
1503
size_t length; /**< Length of sort field */
1504
uint32_t suffix_length; /**< Length suffix (0-4) */
1505
Item_result result_type; /**< Type of item */
1506
bool reverse; /**< if descending sort */
1507
bool need_strxnfrm; /**< If we have to use strxnfrm() */
2078
List of all possible characters of a numeric value text representation.
2080
#define NUMERIC_CHARS ".0123456789e+-"
2083
class select_export :public select_to_file {
2084
uint field_term_length;
2085
int field_sep_char,escape_char,line_sep_char;
2086
int field_term_char; // first char of FIELDS TERMINATED BY or MAX_INT
2088
The is_ambiguous_field_sep field is true if a value of the field_sep_char
2089
field is one of the 'n', 't', 'r' etc characters
2090
(see the READ_INFO::unescape method and the ESCAPE_CHARS constant value).
2092
bool is_ambiguous_field_sep;
2094
The is_ambiguous_field_term is true if field_sep_char contains the first
2095
char of the FIELDS TERMINATED BY (ENCLOSED BY is empty), and items can
2096
contain this character.
2098
bool is_ambiguous_field_term;
2100
The is_unsafe_field_sep field is true if a value of the field_sep_char
2101
field is one of the '0'..'9', '+', '-', '.' and 'e' characters
2102
(see the NUMERIC_CHARS constant value).
2104
bool is_unsafe_field_sep;
2105
bool fixed_row_size;
2107
select_export(sql_exchange *ex) :select_to_file(ex) {}
2109
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2110
bool send_data(List<Item> &items);
2114
class select_dump :public select_to_file {
2116
select_dump(sql_exchange *ex) :select_to_file(ex) {}
2117
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2118
bool send_data(List<Item> &items);
2122
class select_insert :public select_result_interceptor {
2124
TABLE_LIST *table_list;
2127
uint64_t autoinc_value_of_last_inserted_row; // autogenerated or not
2129
bool insert_into_view;
2130
select_insert(TABLE_LIST *table_list_par,
2131
TABLE *table_par, List<Item> *fields_par,
2132
List<Item> *update_fields, List<Item> *update_values,
2133
enum_duplicates duplic, bool ignore);
2135
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2136
virtual int prepare2(void);
2137
bool send_data(List<Item> &items);
2138
virtual void store_values(List<Item> &values);
2139
virtual bool can_rollback_data() { return 0; }
2140
void send_error(uint errcode,const char *err);
2143
/* not implemented: select_insert is never re-used in prepared statements */
2148
class select_create: public select_insert {
2150
TABLE_LIST *create_table;
2151
HA_CREATE_INFO *create_info;
2152
TABLE_LIST *select_tables;
2153
Alter_info *alter_info;
2155
/* lock data for tmp table */
2156
DRIZZLE_LOCK *m_lock;
2157
/* m_lock or thd->extra_lock */
2158
DRIZZLE_LOCK **m_plock;
2160
select_create (TABLE_LIST *table_arg,
2161
HA_CREATE_INFO *create_info_par,
2162
Alter_info *alter_info_arg,
2163
List<Item> &select_fields,enum_duplicates duplic, bool ignore,
2164
TABLE_LIST *select_tables_arg)
2165
:select_insert (NULL, NULL, &select_fields, 0, 0, duplic, ignore),
2166
create_table(table_arg),
2167
create_info(create_info_par),
2168
select_tables(select_tables_arg),
2169
alter_info(alter_info_arg),
2172
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2174
void binlog_show_create_table(TABLE **tables, uint count);
2175
void store_values(List<Item> &values);
2176
void send_error(uint errcode,const char *err);
2179
virtual bool can_rollback_data() { return 1; }
2181
// Needed for access from local class MY_HOOKS in prepare(), since thd is proteted.
2182
const THD *get_thd(void) { return thd; }
2183
const HA_CREATE_INFO *get_create_info() { return create_info; };
2184
int prepare2(void) { return 0; }
2187
#include <storage/myisam/myisam.h>
2190
Param to create temporary tables when doing SELECT:s
2192
This structure is copied using memcpy as a part of JOIN.
2195
class TMP_TABLE_PARAM :public Sql_alloc
2198
/* Prevent use of these (not safe because of lists and copy_field) */
2199
TMP_TABLE_PARAM(const TMP_TABLE_PARAM &);
2200
void operator=(TMP_TABLE_PARAM &);
2203
List<Item> copy_funcs;
2204
List<Item> save_copy_funcs;
2205
Copy_field *copy_field, *copy_field_end;
2206
Copy_field *save_copy_field, *save_copy_field_end;
2208
Item **items_to_copy; /* Fields in tmp table */
2209
MI_COLUMNDEF *recinfo,*start_recinfo;
2211
ha_rows end_write_records;
2212
uint field_count,sum_func_count,func_count;
2213
uint hidden_field_count;
2214
uint group_parts,group_length,group_null_parts;
2216
bool using_indirect_summary_function;
2217
/* If >0 convert all blob fields to varchar(convert_blob_length) */
2218
uint convert_blob_length;
2219
const CHARSET_INFO *table_charset;
2222
True if GROUP BY and its aggregate functions are already computed
2223
by a table access method (e.g. by loose index scan). In this case
2224
query execution should not perform aggregation and should treat
2225
aggregate functions as normal functions.
2227
bool precomputed_group_by;
2228
bool force_copy_fields;
2230
If true, create_tmp_field called from create_tmp_table will convert
2231
all BIT fields to 64-bit longs. This is a workaround the limitation
2232
that MEMORY tables cannot index BIT columns.
2234
bool bit_fields_as_long;
2237
:copy_field(0), group_parts(0),
2238
group_length(0), group_null_parts(0), convert_blob_length(0),
2239
schema_table(0), precomputed_group_by(0), force_copy_fields(0),
2240
bit_fields_as_long(0)
2247
inline void cleanup(void)
2249
if (copy_field) /* Fix for Intel compiler */
2251
delete [] copy_field;
2252
save_copy_field= copy_field= 0;
2257
class select_union :public select_result_interceptor
2259
TMP_TABLE_PARAM tmp_table_param;
2263
select_union() :table(0) {}
2264
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2265
bool send_data(List<Item> &items);
2269
bool create_result_table(THD *thd, List<Item> *column_types,
2270
bool is_distinct, uint64_t options,
2271
const char *alias, bool bit_fields_as_long);
2274
/* Base subselect interface class */
2275
class select_subselect :public select_result_interceptor
2278
Item_subselect *item;
2280
select_subselect(Item_subselect *item);
2281
bool send_data(List<Item> &items)=0;
2282
bool send_eof() { return 0; };
2285
/* Single value subselect interface class */
2286
class select_singlerow_subselect :public select_subselect
2289
select_singlerow_subselect(Item_subselect *item_arg)
2290
:select_subselect(item_arg)
2292
bool send_data(List<Item> &items);
2295
/* used in independent ALL/ANY optimisation */
2296
class select_max_min_finder_subselect :public select_subselect
2299
bool (select_max_min_finder_subselect::*op)();
2302
select_max_min_finder_subselect(Item_subselect *item_arg, bool mx)
2303
:select_subselect(item_arg), cache(0), fmax(mx)
2306
bool send_data(List<Item> &items);
2313
/* EXISTS subselect interface class */
2314
class select_exists_subselect :public select_subselect
2317
select_exists_subselect(Item_subselect *item_arg)
2318
:select_subselect(item_arg){}
2319
bool send_data(List<Item> &items);
2322
/* Structs used when sorting */
2324
typedef struct st_sort_field {
2325
Field *field; /* Field to sort */
2326
Item *item; /* Item if not sorting fields */
2327
uint length; /* Length of sort field */
2328
uint suffix_length; /* Length suffix (0-4) */
2329
Item_result result_type; /* Type of item */
2330
bool reverse; /* if descending sort */
2331
bool need_strxnfrm; /* If we have to use strxnfrm() */
1510
typedef struct st_sort_buffer
1512
uint32_t index; /* 0 or 1 */
1513
uint32_t sort_orders;
1514
uint32_t change_pos; /* If sort-fields changed */
2335
typedef struct st_sort_buffer {
2336
uint index; /* 0 or 1 */
2338
uint change_pos; /* If sort-fields changed */
1516
2340
SORT_FIELD *sortorder;
1519
#include <drizzled/table_ident.h>
1520
#include <drizzled/user_var_entry.h>
1521
#include <drizzled/unique.h>
1522
#include <drizzled/my_var.h>
1523
#include <drizzled/select_dumpvar.h>
2343
/* Structure for db & table in sql_yacc */
2345
class Table_ident :public Sql_alloc
2350
SELECT_LEX_UNIT *sel;
2351
inline Table_ident(THD *thd, LEX_STRING db_arg, LEX_STRING table_arg,
2353
:table(table_arg), sel((SELECT_LEX_UNIT *)0)
2355
if (!force && (thd->client_capabilities & CLIENT_NO_SCHEMA))
2360
inline Table_ident(LEX_STRING table_arg)
2361
:table(table_arg), sel((SELECT_LEX_UNIT *)0)
2366
This constructor is used only for the case when we create a derived
2367
table. A derived table has no name and doesn't belong to any database.
2368
Later, if there was an alias specified for the table, it will be set
2369
by add_table_to_list.
2371
inline Table_ident(SELECT_LEX_UNIT *s) : sel(s)
2373
/* We must have a table name here as this is used with add_table_to_list */
2374
db.str= empty_c_string; /* a subject to casedn_str */
2376
table.str= internal_table_name;
2379
bool is_derived_table() const { return test(sel); }
2380
inline void change_db(char *db_name)
2382
db.str= db_name; db.length= (uint) strlen(db_name);
2386
// this is needed for user_vars hash
2387
class user_var_entry
2390
user_var_entry() {} /* Remove gcc warning */
2394
query_id_t update_query_id, used_query_id;
2398
double val_real(bool *null_value);
2399
int64_t val_int(bool *null_value) const;
2400
String *val_str(bool *null_value, String *str, uint decimals);
2401
my_decimal *val_decimal(bool *null_value, my_decimal *result);
2402
DTCollation collation;
2406
Unique -- class for unique (removing of duplicates).
2407
Puts all values to the TREE. If the tree becomes too big,
2408
it's dumped to the file. User can request sorted values, or
2409
just iterate through them. In the last case tree merging is performed in
2410
memory simultaneously with iteration, so it should be ~2-3x faster.
2413
class Unique :public Sql_alloc
2415
DYNAMIC_ARRAY file_ptrs;
2417
uint64_t max_in_memory_size;
2420
uchar *record_pointers;
2426
Unique(qsort_cmp2 comp_func, void *comp_func_fixed_arg,
2427
uint size_arg, uint64_t max_in_memory_size_arg);
2429
ulong elements_in_tree() { return tree.elements_in_tree; }
2430
inline bool unique_add(void *ptr)
2432
if (tree.elements_in_tree > max_elements && flush())
2434
return(!tree_insert(&tree, ptr, 0, tree.custom_arg));
2437
bool get(TABLE *table);
2438
static double get_use_cost(uint *buffer, uint nkeys, uint key_size,
2439
uint64_t max_in_memory_size);
2440
inline static int get_cost_calc_buff_size(ulong nkeys, uint key_size,
2441
uint64_t max_in_memory_size)
2443
register uint64_t max_elems_in_tree=
2444
(1 + max_in_memory_size / ALIGN_SIZE(sizeof(TREE_ELEMENT)+key_size));
2445
return (int) (sizeof(uint)*(1 + nkeys/max_elems_in_tree));
2449
bool walk(tree_walk_action action, void *walk_action_arg);
2451
friend int unique_write_to_file(uchar* key, element_count count, Unique *unique);
2452
friend int unique_write_to_ptrs(uchar* key, element_count count, Unique *unique);
2456
class multi_delete :public select_result_interceptor
2458
TABLE_LIST *delete_tables, *table_being_deleted;
2460
ha_rows deleted, found;
2464
/* True if at least one table we delete from is transactional */
2465
bool transactional_tables;
2466
/* True if at least one table we delete from is not transactional */
2468
bool delete_while_scanning;
2470
error handling (rollback and binlogging) can happen in send_eof()
2471
so that afterward send_error() needs to find out that.
2476
multi_delete(TABLE_LIST *dt, uint num_of_tables);
2478
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2479
bool send_data(List<Item> &items);
2480
bool initialize_tables (JOIN *join);
2481
void send_error(uint errcode,const char *err);
2484
virtual void abort();
2488
class multi_update :public select_result_interceptor
2490
TABLE_LIST *all_tables; /* query/update command tables */
2491
TABLE_LIST *leaves; /* list of leves of join table tree */
2492
TABLE_LIST *update_tables, *table_being_updated;
2493
TABLE **tmp_tables, *main_table, *table_to_update;
2494
TMP_TABLE_PARAM *tmp_table_param;
2495
ha_rows updated, found;
2496
List <Item> *fields, *values;
2497
List <Item> **fields_for_table, **values_for_table;
2500
List of tables referenced in the CHECK OPTION condition of
2501
the updated view excluding the updated table.
2503
List <TABLE> unupdated_check_opt_tables;
2504
Copy_field *copy_field;
2505
enum enum_duplicates handle_duplicates;
2506
bool do_update, trans_safe;
2507
/* True if the update operation has made a change in a transactional table */
2508
bool transactional_tables;
2511
error handling (rollback and binlogging) can happen in send_eof()
2512
so that afterward send_error() needs to find out that.
2517
multi_update(TABLE_LIST *ut, TABLE_LIST *leaves_list,
2518
List<Item> *fields, List<Item> *values,
2519
enum_duplicates handle_duplicates, bool ignore);
2521
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2522
bool send_data(List<Item> &items);
2523
bool initialize_tables (JOIN *join);
2524
void send_error(uint errcode,const char *err);
2527
virtual void abort();
2530
class my_var : public Sql_alloc {
2535
enum_field_types type;
2536
my_var (LEX_STRING& j, bool i, uint o, enum_field_types t)
2537
:s(j), local(i), offset(o), type(t)
2542
class select_dumpvar :public select_result_interceptor {
2545
List<my_var> var_list;
2546
select_dumpvar() { var_list.empty(); row_count= 0;}
2547
~select_dumpvar() {}
2548
int prepare(List<Item> &list, SELECT_LEX_UNIT *u);
2549
bool send_data(List<Item> &items);
2551
virtual bool check_simple_select() const;
1525
2555
/* Bits in sql_command_flags */
1527
enum sql_command_flag_bits
1529
CF_BIT_CHANGES_DATA,
1530
CF_BIT_HAS_ROW_COUNT,
1531
CF_BIT_STATUS_COMMAND,
1532
CF_BIT_SHOW_TABLE_COMMAND,
1533
CF_BIT_WRITE_LOGS_COMMAND,
1537
static const std::bitset<CF_BIT_SIZE> CF_CHANGES_DATA(1 << CF_BIT_CHANGES_DATA);
1538
static const std::bitset<CF_BIT_SIZE> CF_HAS_ROW_COUNT(1 << CF_BIT_HAS_ROW_COUNT);
1539
static const std::bitset<CF_BIT_SIZE> CF_STATUS_COMMAND(1 << CF_BIT_STATUS_COMMAND);
1540
static const std::bitset<CF_BIT_SIZE> CF_SHOW_TABLE_COMMAND(1 << CF_BIT_SHOW_TABLE_COMMAND);
1541
static const std::bitset<CF_BIT_SIZE> CF_WRITE_LOGS_COMMAND(1 << CF_BIT_WRITE_LOGS_COMMAND);
2557
#define CF_CHANGES_DATA 1
2558
#define CF_HAS_ROW_COUNT 2
2559
#define CF_STATUS_COMMAND 4
2560
#define CF_SHOW_TABLE_COMMAND 8
2561
#define CF_WRITE_LOGS_COMMAND 16
1543
2563
/* Functions in sql_class.cc */
1544
2565
void add_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var);
1546
2567
void add_diff_to_status(STATUS_VAR *to_var, STATUS_VAR *from_var,
1547
2568
STATUS_VAR *dec_var);
1549
#endif /* DRIZZLED_SESSION_H */
2570
#endif /* DRIZZLE_SERVER */