1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#ifndef DRIZZLED_HANDLER_STRUCTS_H
21
#define DRIZZLED_HANDLER_STRUCTS_H
26
#include <drizzled/base.h>
27
#include <drizzled/structs.h>
28
#include <drizzled/definitions.h>
29
#include <drizzled/lex_string.h>
33
typedef struct st_key KEY;
35
typedef struct st_key_cache KEY_CACHE;
49
/* true is not all entries in the engines[] support 2pc */
51
/* storage engines that registered in this transaction */
54
The purpose of this flag is to keep track of non-transactional
55
tables that were modified in scope of:
56
- transaction, when the variable is a member of
57
Session::transaction.all
58
- top-level statement or sub-statement, when the variable is a
59
member of Session::transaction.stmt
60
This member has the following life cycle:
61
* stmt.modified_non_trans_table is used to keep track of
62
modified non-transactional tables of top-level statements. At
63
the end of the previous statement and at the beginning of the session,
64
it is reset to false. If such functions
65
as mysql_insert, mysql_update, mysql_delete etc modify a
66
non-transactional table, they set this flag to true. At the
67
end of the statement, the value of stmt.modified_non_trans_table
68
is merged with all.modified_non_trans_table and gets reset.
69
* all.modified_non_trans_table is reset at the end of transaction
71
* Since we do not have a dedicated context for execution of a
72
sub-statement, to keep track of non-transactional changes in a
73
sub-statement, we re-use stmt.modified_non_trans_table.
74
At entrance into a sub-statement, a copy of the value of
75
stmt.modified_non_trans_table (containing the changes of the
76
outer statement) is saved on stack. Then
77
stmt.modified_non_trans_table is reset to false and the
78
substatement is executed. Then the new value is merged with the
81
bool modified_non_trans_table;
83
void reset() { no_2pc= false; modified_non_trans_table= false; }
86
typedef struct st_ha_create_information
88
const CHARSET_INFO *table_charset, *default_table_charset;
90
uint64_t auto_increment_value;
91
uint32_t table_options;
93
enum row_type row_type;
94
drizzled::plugin::StorageEngine *db_type;
95
uint32_t options; /* OR of HA_CREATE_ options */
96
bool table_existed; /* 1 in create if table existed */
99
typedef struct st_ha_alter_information
101
KEY *key_info_buffer;
103
uint32_t index_drop_count;
104
uint32_t *index_drop_buffer;
105
uint32_t index_add_count;
106
uint32_t *index_add_buffer;
111
typedef struct st_key_create_information
113
enum ha_key_alg algorithm;
119
typedef struct st_ha_check_opt
121
st_ha_check_opt() {} /* Remove gcc warning */
123
uint32_t flags; /* myisam layer flags (e.g. for myisamchk) */
125
/* Just rebuild based on the defintion of the table */
128
/* new key cache when changing key cache */
129
KEY_CACHE *key_cache;
139
typedef struct st_range_seq_if
142
Initialize the traversal of range sequence
146
init_params The seq_init_param parameter
147
n_ranges The number of ranges obtained
148
flags A combination of HA_MRR_SINGLE_POINT, HA_MRR_FIXED_KEY
151
An opaque value to be used as RANGE_SEQ_IF::next() parameter
153
range_seq_t (*init)(void *init_params, uint32_t n_ranges, uint32_t flags);
157
Get the next range in the range sequence
161
seq The value returned by RANGE_SEQ_IF::init()
162
range OUT Information about the next range
165
0 - Ok, the range structure filled with info about the next range
168
uint32_t (*next) (range_seq_t seq, KEY_MULTI_RANGE *range);
172
This is a buffer area that the handler can use to store rows.
173
'end_of_used_area' should be kept updated after calls to
174
read-functions so that other parts of the code can use the
175
remaining area (until next read calls is issued).
178
typedef struct st_handler_buffer
180
unsigned char *buffer; /* Buffer one can start using */
181
unsigned char *buffer_end; /* End of buffer */
182
unsigned char *end_of_used_area; /* End of area that was used by handler */
185
#endif /* DRIZZLED_HANDLER_STRUCTS_H */