~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2006 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
17
/* Definitions for parameters to do with handler-routines */
18
19
#ifdef USE_PRAGMA_INTERFACE
20
#pragma interface			/* gcc class implementation */
21
#endif
22
212.5.27 by Monty Taylor
Moved my_handler to mysys.
23
#include <mysys/my_handler.h>
212.4.2 by Monty Taylor
Fixed the includes in places to make the myisam header file move work.
24
#include <storage/myisam/keycache.h>
1 by brian
clean slate
25
26
#ifndef NO_HASH
27
#define NO_HASH				/* Not yet implemented */
28
#endif
29
30
// the following is for checking tables
31
32
#define HA_ADMIN_ALREADY_DONE	  1
33
#define HA_ADMIN_OK               0
34
#define HA_ADMIN_NOT_IMPLEMENTED -1
35
#define HA_ADMIN_FAILED		 -2
36
#define HA_ADMIN_CORRUPT         -3
37
#define HA_ADMIN_INTERNAL_ERROR  -4
38
#define HA_ADMIN_INVALID         -5
39
#define HA_ADMIN_REJECT          -6
40
#define HA_ADMIN_TRY_ALTER       -7
41
#define HA_ADMIN_WRONG_CHECKSUM  -8
42
#define HA_ADMIN_NOT_BASE_TABLE  -9
43
#define HA_ADMIN_NEEDS_UPGRADE  -10
44
#define HA_ADMIN_NEEDS_ALTER    -11
45
#define HA_ADMIN_NEEDS_CHECK    -12
46
47
/* Bits to show what an alter table will do */
212.5.45 by Monty Taylor
Removed excess AM_CPPFLAGS from the tree. Now the only thing that should be in the include path should be -I${top_srcdir} and -I${top_builddir}w
48
#include <drizzled/sql_bitmap.h>
1 by brian
clean slate
49
50
#define HA_MAX_ALTER_FLAGS 39
51
typedef Bitmap<HA_MAX_ALTER_FLAGS> HA_ALTER_FLAGS;
52
53
#define HA_ADD_INDEX                  (0)
54
#define HA_DROP_INDEX                 (1)
55
#define HA_ALTER_INDEX                (2)
56
#define HA_RENAME_INDEX               (3)
57
#define HA_ADD_UNIQUE_INDEX           (4)
58
#define HA_DROP_UNIQUE_INDEX          (5)
59
#define HA_ALTER_UNIQUE_INDEX         (6)
60
#define HA_RENAME_UNIQUE_INDEX        (7)
61
#define HA_ADD_PK_INDEX               (8)
62
#define HA_DROP_PK_INDEX              (9)
63
#define HA_ALTER_PK_INDEX             (10)
64
#define HA_ADD_COLUMN                 (11)
65
#define HA_DROP_COLUMN                (12)
66
#define HA_CHANGE_COLUMN              (13)
67
#define HA_ALTER_COLUMN_NAME          (14)
68
#define HA_ALTER_COLUMN_TYPE          (15)
69
#define HA_ALTER_COLUMN_ORDER         (16)
70
#define HA_ALTER_COLUMN_NULLABLE      (17)
71
#define HA_COLUMN_DEFAULT_VALUE       (18)
72
#define HA_COLUMN_STORAGE             (19)
73
#define HA_COLUMN_FORMAT              (20)
74
#define HA_ADD_FOREIGN_KEY            (21)
75
#define HA_DROP_FOREIGN_KEY           (22)
76
#define HA_ALTER_FOREIGN_KEY          (23)
77
#define HA_ADD_CONSTRAINT             (24)
78
#define HA_CHANGE_CHARACTER_SET       (30)
79
#define HA_SET_DEFAULT_CHARACTER_SET  (31)
80
#define HA_CHANGE_AUTOINCREMENT_VALUE (32)
81
#define HA_ALTER_STORAGE              (33)
82
#define HA_ALTER_TABLESPACE           (34)
83
#define HA_ALTER_ROW_FORMAT           (35)
84
#define HA_RENAME_TABLE               (36)
85
#define HA_ALTER_STORAGE_ENGINE       (37)
86
#define HA_RECREATE                   (38)
87
/* Remember to increase HA_MAX_ALTER_FLAGS when adding more flags! */
88
89
/* Return values for check_if_supported_alter */
90
91
#define HA_ALTER_ERROR               -1
92
#define HA_ALTER_SUPPORTED_WAIT_LOCK  0
93
#define HA_ALTER_SUPPORTED_NO_LOCK    1
94
#define HA_ALTER_NOT_SUPPORTED        2
95
96
/* Bits in table_flags() to show what database can do */
97
98
#define HA_NO_TRANSACTIONS     (1 << 0) /* Doesn't support transactions */
99
#define HA_PARTIAL_COLUMN_READ (1 << 1) /* read may not return all columns */
100
#define HA_TABLE_SCAN_ON_INDEX (1 << 2) /* No separate data/index file */
101
/*
102
  The following should be set if the following is not true when scanning
103
  a table with rnd_next()
104
  - We will see all rows (including deleted ones)
105
  - Row positions are 'table->s->db_record_offset' apart
106
  If this flag is not set, filesort will do a postion() call for each matched
107
  row to be able to find the row later.
108
*/
109
#define HA_REC_NOT_IN_SEQ      (1 << 3)
110
/* This is now a dead option, just left for compatibility */
111
#define HA_CAN_GEOMETRY        (1 << 4)
112
/*
113
  Reading keys in random order is as fast as reading keys in sort order
114
  (Used in records.cc to decide if we should use a record cache and by
115
  filesort to decide if we should sort key + data or key + pointer-to-row
116
*/
117
#define HA_FAST_KEY_READ       (1 << 5)
118
/*
119
  Set the following flag if we on delete should force all key to be read
120
  and on update read all keys that changes
121
*/
122
#define HA_REQUIRES_KEY_COLUMNS_FOR_DELETE (1 << 6)
123
#define HA_NULL_IN_KEY         (1 << 7) /* One can have keys with NULL */
124
#define HA_DUPLICATE_POS       (1 << 8)    /* ha_position() gives dup row */
125
#define HA_NO_BLOBS            (1 << 9) /* Doesn't support blobs */
126
#define HA_CAN_INDEX_BLOBS     (1 << 10)
127
#define HA_AUTO_PART_KEY       (1 << 11) /* auto-increment in multi-part key */
128
#define HA_REQUIRE_PRIMARY_KEY (1 << 12) /* .. and can't create a hidden one */
129
#define HA_STATS_RECORDS_IS_EXACT (1 << 13) /* stats.records is exact */
130
/*
131
  INSERT_DELAYED only works with handlers that uses MySQL internal table
132
  level locks
133
*/
134
#define HA_CAN_INSERT_DELAYED  (1 << 14)
135
/*
136
  If we get the primary key columns for free when we do an index read
137
  It also implies that we have to retrive the primary key when using
138
  position() and rnd_pos().
139
*/
140
#define HA_PRIMARY_KEY_IN_READ_INDEX (1 << 15)
141
/*
142
  If HA_PRIMARY_KEY_REQUIRED_FOR_POSITION is set, it means that to position()
143
  uses a primary key. Without primary key, we can't call position().
144
*/ 
145
#define HA_PRIMARY_KEY_REQUIRED_FOR_POSITION (1 << 16) 
99 by Brian Aker
Second pass at removing old varchar.
146
#define HA_CAN_RTREEKEYS       (1 << 17) /* Historical, no longer supported */
1 by brian
clean slate
147
#define HA_NOT_DELETE_WITH_CACHE (1 << 18)
148
/*
149
  The following is we need to a primary key to delete (and update) a row.
150
  If there is no primary key, all columns needs to be read on update and delete
151
*/
152
#define HA_PRIMARY_KEY_REQUIRED_FOR_DELETE (1 << 19)
153
#define HA_NO_PREFIX_CHAR_KEYS (1 << 20)
99 by Brian Aker
Second pass at removing old varchar.
154
#define HA_CAN_FULLTEXT        (1 << 21) /* Historical, no longer supported */
155
#define HA_CAN_SQL_HANDLER     (1 << 22) /* Historical, no longer supported */
1 by brian
clean slate
156
#define HA_NO_AUTO_INCREMENT   (1 << 23)
157
#define HA_HAS_CHECKSUM        (1 << 24)
158
/* Table data are stored in separate files (for lower_case_table_names) */
159
#define HA_FILE_BASED	       (1 << 26)
99 by Brian Aker
Second pass at removing old varchar.
160
#define HA_NO_VARCHAR	       (1 << 27) /* Historical, no longer supported */
161
#define HA_CAN_BIT_FIELD       (1 << 28) /* Historical, no longer supported */
1 by brian
clean slate
162
#define HA_NEED_READ_RANGE_BUFFER (1 << 29) /* for read_multi_range */
163
#define HA_ANY_INDEX_MAY_BE_UNIQUE (1 << 30)
80.1.1 by Brian Aker
LL() cleanup
164
#define HA_NO_COPY_ON_ALTER    (1LL << 31)
165
#define HA_HAS_RECORDS	       (1LL << 32) /* records() gives exact count*/
1 by brian
clean slate
166
/* Has it's own method of binlog logging */
99 by Brian Aker
Second pass at removing old varchar.
167
#define HA_HAS_OWN_BINLOGGING  (1LL << 33) /* Historical, no longer supported */
80.1.1 by Brian Aker
LL() cleanup
168
#define HA_MRR_CANT_SORT       (1LL << 34)
1 by brian
clean slate
169
170
/*
171
  Engine is capable of row-format and statement-format logging,
172
  respectively
173
*/
80.1.1 by Brian Aker
LL() cleanup
174
#define HA_BINLOG_ROW_CAPABLE  (1LL << 35)
175
#define HA_BINLOG_STMT_CAPABLE (1LL << 36)
1 by brian
clean slate
176
80.1.1 by Brian Aker
LL() cleanup
177
#define HA_ONLINE_ALTER        (1LL << 37)
1 by brian
clean slate
178
179
/*
180
  Set of all binlog flags. Currently only contain the capabilities
181
  flags.
182
 */
183
#define HA_BINLOG_FLAGS (HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE)
184
185
/* bits in index_flags(index_number) for what you can do with index */
186
#define HA_READ_NEXT            1       /* TODO really use this flag */
187
#define HA_READ_PREV            2       /* supports ::index_prev */
188
#define HA_READ_ORDER           4       /* index_next/prev follow sort order */
189
#define HA_READ_RANGE           8       /* can find all records in a range */
190
#define HA_ONLY_WHOLE_INDEX	16	/* Can't use part key searches */
191
#define HA_KEYREAD_ONLY         64	/* Support HA_EXTRA_KEYREAD */
192
/*
193
  Index scan will not return records in rowid order. Not guaranteed to be
194
  set for unordered (e.g. HASH) indexes.
195
*/
196
#define HA_KEY_SCAN_NOT_ROR     128 
197
#define HA_DO_INDEX_COND_PUSHDOWN  256 /* Supports Index Condition Pushdown */
198
199
200
201
/*
202
  HA_PARTITION_FUNCTION_SUPPORTED indicates that the function is
203
  supported at all.
204
  HA_FAST_CHANGE_PARTITION means that optimised variants of the changes
205
  exists but they are not necessarily done online.
206
207
  HA_ONLINE_DOUBLE_WRITE means that the handler supports writing to both
208
  the new partition and to the old partitions when updating through the
209
  old partitioning schema while performing a change of the partitioning.
210
  This means that we can support updating of the table while performing
211
  the copy phase of the change. For no lock at all also a double write
212
  from new to old must exist and this is not required when this flag is
213
  set.
214
  This is actually removed even before it was introduced the first time.
215
  The new idea is that handlers will handle the lock level already in
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
216
  store_lock for ALTER Table partitions.
1 by brian
clean slate
217
218
  HA_PARTITION_ONE_PHASE is a flag that can be set by handlers that take
219
  care of changing the partitions online and in one phase. Thus all phases
220
  needed to handle the change are implemented inside the storage engine.
221
  The storage engine must also support auto-discovery since the frm file
222
  is changed as part of the change and this change must be controlled by
223
  the storage engine. A typical engine to support this is NDB (through
224
  WL #2498).
225
*/
226
#define HA_PARTITION_FUNCTION_SUPPORTED         (1L << 1)
227
#define HA_FAST_CHANGE_PARTITION                (1L << 2)
228
#define HA_PARTITION_ONE_PHASE                  (1L << 3)
229
230
/* operations for disable/enable indexes */
231
#define HA_KEY_SWITCH_NONUNIQ      0
232
#define HA_KEY_SWITCH_ALL          1
233
#define HA_KEY_SWITCH_NONUNIQ_SAVE 2
234
#define HA_KEY_SWITCH_ALL_SAVE     3
235
236
/*
237
  Note: the following includes binlog and closing 0.
238
  so: innodb + bdb + ndb + binlog + myisam + myisammrg + archive +
239
      example + csv + heap + blackhole + federated + 0
240
  (yes, the sum is deliberately inaccurate)
241
  TODO remove the limit, use dynarrays
242
*/
243
#define MAX_HA 15
244
245
/*
246
  Parameters for open() (in register form->filestat)
247
  HA_GET_INFO does an implicit HA_ABORT_IF_LOCKED
248
*/
249
250
#define HA_OPEN_KEYFILE		1
251
#define HA_OPEN_RNDFILE		2
252
#define HA_GET_INDEX		4
253
#define HA_GET_INFO		8	/* do a ha_info() after open */
254
#define HA_READ_ONLY		16	/* File opened as readonly */
255
/* Try readonly if can't open with read and write */
256
#define HA_TRY_READ_ONLY	32
257
#define HA_WAIT_IF_LOCKED	64	/* Wait if locked on open */
258
#define HA_ABORT_IF_LOCKED	128	/* skip if locked on open.*/
259
#define HA_BLOCK_LOCK		256	/* unlock when reading some records */
260
#define HA_OPEN_TEMPORARY	512
261
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
262
/* For transactional LOCK Table. handler::lock_table() */
1 by brian
clean slate
263
#define HA_LOCK_IN_SHARE_MODE      F_RDLCK
264
#define HA_LOCK_IN_EXCLUSIVE_MODE  F_WRLCK
265
266
/* Some key definitions */
267
#define HA_KEY_NULL_LENGTH	1
268
#define HA_KEY_BLOB_LENGTH	2
269
270
#define HA_LEX_CREATE_TMP_TABLE	1
271
#define HA_LEX_CREATE_IF_NOT_EXISTS 2
272
#define HA_LEX_CREATE_TABLE_LIKE 4
273
#define HA_OPTION_NO_CHECKSUM	(1L << 17)
274
#define HA_OPTION_NO_DELAY_KEY_WRITE (1L << 18)
275
#define HA_MAX_REC_LENGTH	65535
276
277
/* Table caching type */
278
#define HA_CACHE_TBL_NONTRANSACT 0
279
#define HA_CACHE_TBL_NOCACHE     1
280
#define HA_CACHE_TBL_ASKTRANSACT 2
281
#define HA_CACHE_TBL_TRANSACT    4
282
283
/* Options of START TRANSACTION statement (and later of SET TRANSACTION stmt) */
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
284
#define DRIZZLE_START_TRANS_OPT_WITH_CONS_SNAPSHOT 1
1 by brian
clean slate
285
286
/* Flags for method is_fatal_error */
287
#define HA_CHECK_DUP_KEY 1
288
#define HA_CHECK_DUP_UNIQUE 2
289
#define HA_CHECK_DUP (HA_CHECK_DUP_KEY + HA_CHECK_DUP_UNIQUE)
290
291
enum legacy_db_type
292
{
293
  DB_TYPE_UNKNOWN=0,DB_TYPE_DIAB_ISAM=1,
294
  DB_TYPE_HASH,DB_TYPE_MISAM,DB_TYPE_PISAM,
295
  DB_TYPE_RMS_ISAM, DB_TYPE_HEAP, DB_TYPE_ISAM,
296
  DB_TYPE_MRG_ISAM, DB_TYPE_MYISAM, DB_TYPE_MRG_MYISAM,
297
  DB_TYPE_BERKELEY_DB, DB_TYPE_INNODB,
298
  DB_TYPE_GEMINI, DB_TYPE_NDBCLUSTER,
299
  DB_TYPE_EXAMPLE_DB, DB_TYPE_ARCHIVE_DB, DB_TYPE_CSV_DB,
300
  DB_TYPE_FEDERATED_DB,
301
  DB_TYPE_BLACKHOLE_DB,
302
  DB_TYPE_PARTITION_DB,
303
  DB_TYPE_BINLOG,
304
  DB_TYPE_SOLID,
305
  DB_TYPE_PBXT,
306
  DB_TYPE_TABLE_FUNCTION,
307
  DB_TYPE_MEMCACHE,
308
  DB_TYPE_FALCON,
309
  DB_TYPE_MARIA,
310
  DB_TYPE_FIRST_DYNAMIC=42,
311
  DB_TYPE_DEFAULT=127 // Must be last
312
};
313
314
enum row_type { ROW_TYPE_NOT_USED=-1, ROW_TYPE_DEFAULT, ROW_TYPE_FIXED,
315
		ROW_TYPE_DYNAMIC, ROW_TYPE_COMPRESSED,
316
		ROW_TYPE_REDUNDANT, ROW_TYPE_COMPACT, ROW_TYPE_PAGE };
317
318
enum column_format_type { COLUMN_FORMAT_TYPE_NOT_USED= -1,
319
                          COLUMN_FORMAT_TYPE_DEFAULT=   0,
320
                          COLUMN_FORMAT_TYPE_FIXED=     1,
321
                          COLUMN_FORMAT_TYPE_DYNAMIC=   2 };
322
323
enum enum_binlog_func {
324
  BFN_RESET_LOGS=        1,
325
  BFN_RESET_SLAVE=       2,
326
  BFN_BINLOG_WAIT=       3,
327
  BFN_BINLOG_END=        4,
328
  BFN_BINLOG_PURGE_FILE= 5
329
};
330
331
enum enum_binlog_command {
332
  LOGCOM_CREATE_TABLE,
333
  LOGCOM_ALTER_TABLE,
334
  LOGCOM_RENAME_TABLE,
335
  LOGCOM_DROP_TABLE,
336
  LOGCOM_CREATE_DB,
337
  LOGCOM_ALTER_DB,
338
  LOGCOM_DROP_DB
339
};
340
341
/* struct to hold information about the table that should be created */
342
343
/* Bits in used_fields */
344
#define HA_CREATE_USED_AUTO             (1L << 0)
314 by Brian Aker
Clean up UNION in CREATE TABLE statement
345
#ifdef DEAD_OPTIONS
99 by Brian Aker
Second pass at removing old varchar.
346
#define HA_CREATE_USED_RAID             (1L << 1) /* Historical, no longer supported */
1 by brian
clean slate
347
#define HA_CREATE_USED_UNION            (1L << 2)
314 by Brian Aker
Clean up UNION in CREATE TABLE statement
348
#define HA_CREATE_USED_PASSWORD         (1L << 17)
349
#endif
1 by brian
clean slate
350
#define HA_CREATE_USED_INSERT_METHOD    (1L << 3)
351
#define HA_CREATE_USED_MIN_ROWS         (1L << 4)
352
#define HA_CREATE_USED_MAX_ROWS         (1L << 5)
353
#define HA_CREATE_USED_AVG_ROW_LENGTH   (1L << 6)
354
#define HA_CREATE_USED_PACK_KEYS        (1L << 7)
355
#define HA_CREATE_USED_CHARSET          (1L << 8)
356
#define HA_CREATE_USED_DEFAULT_CHARSET  (1L << 9)
357
#define HA_CREATE_USED_DATADIR          (1L << 10)
358
#define HA_CREATE_USED_INDEXDIR         (1L << 11)
359
#define HA_CREATE_USED_ENGINE           (1L << 12)
360
#define HA_CREATE_USED_CHECKSUM         (1L << 13)
361
#define HA_CREATE_USED_DELAY_KEY_WRITE  (1L << 14)
362
#define HA_CREATE_USED_ROW_FORMAT       (1L << 15)
363
#define HA_CREATE_USED_COMMENT          (1L << 16)
364
#define HA_CREATE_USED_CONNECTION       (1L << 18)
365
#define HA_CREATE_USED_KEY_BLOCK_SIZE   (1L << 19)
366
#define HA_CREATE_USED_TRANSACTIONAL    (1L << 20)
367
#define HA_CREATE_USED_PAGE_CHECKSUM    (1L << 21)
244.1.1 by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns.
368
#define HA_CREATE_USED_BLOCK_SIZE       (1L << 22)
1 by brian
clean slate
369
370
typedef uint64_t my_xid; // this line is the same as in log_event.h
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
371
#define DRIZZLE_XID_PREFIX "MySQLXid"
372
#define DRIZZLE_XID_PREFIX_LEN 8 // must be a multiple of 8
373
#define DRIZZLE_XID_OFFSET (DRIZZLE_XID_PREFIX_LEN+sizeof(server_id))
374
#define DRIZZLE_XID_GTRID_LEN (DRIZZLE_XID_OFFSET+sizeof(my_xid))
1 by brian
clean slate
375
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
376
#define XIDDATASIZE DRIZZLE_XIDDATASIZE
1 by brian
clean slate
377
#define MAXGTRIDSIZE 64
378
#define MAXBQUALSIZE 64
379
380
#define COMPATIBLE_DATA_YES 0
381
#define COMPATIBLE_DATA_NO  1
382
243.1.1 by Jay Pipes
* Pulled Object_creation_ctx and Default_creation_ctx out of mysql_priv.h
383
typedef bool (*qc_engine_callback)(THD *thd, char *table_key,
384
                                      uint key_length,
385
                                      uint64_t *engine_data);
386
1 by brian
clean slate
387
/**
388
  struct xid_t is binary compatible with the XID structure as
389
  in the X/Open CAE Specification, Distributed Transaction Processing:
390
  The XA Specification, X/Open Company Ltd., 1991.
391
  http://www.opengroup.org/bookstore/catalog/c193.htm
392
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
393
  @see DRIZZLE_XID in mysql/plugin.h
1 by brian
clean slate
394
*/
395
struct xid_t {
396
  long formatID;
397
  long gtrid_length;
398
  long bqual_length;
399
  char data[XIDDATASIZE];  // not \0-terminated !
400
401
  xid_t() {}                                /* Remove gcc warning */  
402
  bool eq(struct xid_t *xid)
403
  { return eq(xid->gtrid_length, xid->bqual_length, xid->data); }
404
  bool eq(long g, long b, const char *d)
405
  { return g == gtrid_length && b == bqual_length && !memcmp(d, data, g+b); }
406
  void set(struct xid_t *xid)
407
  { memcpy(this, xid, xid->length()); }
408
  void set(long f, const char *g, long gl, const char *b, long bl)
409
  {
410
    formatID= f;
411
    memcpy(data, g, gtrid_length= gl);
412
    memcpy(data+gl, b, bqual_length= bl);
413
  }
414
  void set(uint64_t xid)
415
  {
416
    my_xid tmp;
417
    formatID= 1;
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
418
    set(DRIZZLE_XID_PREFIX_LEN, 0, DRIZZLE_XID_PREFIX);
419
    memcpy(data+DRIZZLE_XID_PREFIX_LEN, &server_id, sizeof(server_id));
1 by brian
clean slate
420
    tmp= xid;
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
421
    memcpy(data+DRIZZLE_XID_OFFSET, &tmp, sizeof(tmp));
422
    gtrid_length=DRIZZLE_XID_GTRID_LEN;
1 by brian
clean slate
423
  }
424
  void set(long g, long b, const char *d)
425
  {
426
    formatID= 1;
427
    gtrid_length= g;
428
    bqual_length= b;
429
    memcpy(data, d, g+b);
430
  }
431
  bool is_null() { return formatID == -1; }
432
  void null() { formatID= -1; }
433
  my_xid quick_get_my_xid()
434
  {
435
    my_xid tmp;
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
436
    memcpy(&tmp, data+DRIZZLE_XID_OFFSET, sizeof(tmp));
1 by brian
clean slate
437
    return tmp;
438
  }
439
  my_xid get_my_xid()
440
  {
319.1.1 by Grant Limberg
renamed all instances of MYSQL_ to DRIZZLE_
441
    return gtrid_length == DRIZZLE_XID_GTRID_LEN && bqual_length == 0 &&
442
           !memcmp(data+DRIZZLE_XID_PREFIX_LEN, &server_id, sizeof(server_id)) &&
443
           !memcmp(data, DRIZZLE_XID_PREFIX, DRIZZLE_XID_PREFIX_LEN) ?
1 by brian
clean slate
444
           quick_get_my_xid() : 0;
445
  }
446
  uint length()
447
  {
448
    return sizeof(formatID)+sizeof(gtrid_length)+sizeof(bqual_length)+
449
           gtrid_length+bqual_length;
450
  }
451
  uchar *key()
452
  {
453
    return (uchar *)&gtrid_length;
454
  }
455
  uint key_length()
456
  {
457
    return sizeof(gtrid_length)+sizeof(bqual_length)+gtrid_length+bqual_length;
458
  }
459
};
460
typedef struct xid_t XID;
461
462
/* for recover() handlerton call */
463
#define MIN_XID_LIST_SIZE  128
464
#define MAX_XID_LIST_SIZE  (1024*128)
465
466
struct handlerton;
467
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
468
/* The handler for a table type.  Will be included in the Table structure */
1 by brian
clean slate
469
327.1.1 by Brian Aker
First pass in encapsulating table (it is now an object, no longer a structure).
470
class Table;
1 by brian
clean slate
471
typedef struct st_table_share TABLE_SHARE;
472
struct st_foreign_key_info;
473
typedef struct st_foreign_key_info FOREIGN_KEY_INFO;
474
typedef bool (stat_print_fn)(THD *thd, const char *type, uint type_len,
475
                             const char *file, uint file_len,
476
                             const char *status, uint status_len);
477
enum ha_stat_type { HA_ENGINE_STATUS, HA_ENGINE_LOGS, HA_ENGINE_MUTEX };
478
extern st_plugin_int *hton2plugin[MAX_HA];
479
480
/*
481
  handlerton is a singleton structure - one instance per storage engine -
482
  to provide access to storage engine functionality that works on the
483
  "global" level (unlike handler class that works on a per-table basis)
484
485
  usually handlerton instance is defined statically in ha_xxx.cc as
486
487
  static handlerton { ... } xxx_hton;
488
489
  savepoint_*, prepare, recover, and *_by_xid pointers can be 0.
490
*/
491
struct handlerton
492
{
493
  /*
494
    Historical marker for if the engine is available of not
495
  */
496
  SHOW_COMP_OPTION state;
497
498
  /*
499
    Historical number used for frm file to determine the correct storage engine.
500
    This is going away and new engines will just use "name" for this.
501
  */
502
  enum legacy_db_type db_type;
503
  /*
504
    each storage engine has it's own memory area (actually a pointer)
505
    in the thd, for storing per-connection information.
506
    It is accessed as
507
508
      thd->ha_data[xxx_hton.slot]
509
510
   slot number is initialized by MySQL after xxx_init() is called.
511
   */
512
   uint slot;
513
   /*
514
     to store per-savepoint data storage engine is provided with an area
515
     of a requested size (0 is ok here).
516
     savepoint_offset must be initialized statically to the size of
517
     the needed memory to store per-savepoint information.
518
     After xxx_init it is changed to be an offset to savepoint storage
519
     area and need not be used by storage engine.
520
     see binlog_hton and binlog_savepoint_set/rollback for an example.
521
   */
522
   uint savepoint_offset;
523
   /*
524
     handlerton methods:
525
526
     close_connection is only called if
527
     thd->ha_data[xxx_hton.slot] is non-zero, so even if you don't need
528
     this storage area - set it to something, so that MySQL would know
529
     this storage engine was accessed in this connection
530
   */
531
   int  (*close_connection)(handlerton *hton, THD *thd);
532
   /*
533
     sv points to an uninitialized storage area of requested size
534
     (see savepoint_offset description)
535
   */
536
   int  (*savepoint_set)(handlerton *hton, THD *thd, void *sv);
537
   /*
538
     sv points to a storage area, that was earlier passed
539
     to the savepoint_set call
540
   */
541
   int  (*savepoint_rollback)(handlerton *hton, THD *thd, void *sv);
542
   int  (*savepoint_release)(handlerton *hton, THD *thd, void *sv);
543
   /*
544
     'all' is true if it's a real commit, that makes persistent changes
545
     'all' is false if it's not in fact a commit but an end of the
546
     statement that is part of the transaction.
547
     NOTE 'all' is also false in auto-commit mode where 'end of statement'
548
     and 'real commit' mean the same event.
549
   */
550
   int  (*commit)(handlerton *hton, THD *thd, bool all);
551
   int  (*rollback)(handlerton *hton, THD *thd, bool all);
552
   int  (*prepare)(handlerton *hton, THD *thd, bool all);
553
   int  (*recover)(handlerton *hton, XID *xid_list, uint len);
554
   int  (*commit_by_xid)(handlerton *hton, XID *xid);
555
   int  (*rollback_by_xid)(handlerton *hton, XID *xid);
556
   void *(*create_cursor_read_view)(handlerton *hton, THD *thd);
557
   void (*set_cursor_read_view)(handlerton *hton, THD *thd, void *read_view);
558
   void (*close_cursor_read_view)(handlerton *hton, THD *thd, void *read_view);
559
   handler *(*create)(handlerton *hton, TABLE_SHARE *table, MEM_ROOT *mem_root);
560
   void (*drop_database)(handlerton *hton, char* path);
561
   int (*start_consistent_snapshot)(handlerton *hton, THD *thd);
562
   bool (*flush_logs)(handlerton *hton);
563
   bool (*show_status)(handlerton *hton, THD *thd, stat_print_fn *print, enum ha_stat_type stat);
564
   int (*fill_files_table)(handlerton *hton, THD *thd,
565
                           TABLE_LIST *tables,
566
                           class Item *cond);
205 by Brian Aker
uint32 -> uin32_t
567
   uint32_t flags;                                /* global handler flags */
1 by brian
clean slate
568
   int (*release_temporary_latches)(handlerton *hton, THD *thd);
569
570
   int (*discover)(handlerton *hton, THD* thd, const char *db, 
571
                   const char *name,
572
                   uchar **frmblob, 
573
                   size_t *frmlen);
574
   int (*table_exists_in_engine)(handlerton *hton, THD* thd, const char *db,
575
                                 const char *name);
205 by Brian Aker
uint32 -> uin32_t
576
   uint32_t license; /* Flag for Engine License */
1 by brian
clean slate
577
   void *data; /* Location for engines to keep personal structures */
578
};
579
580
581
/* Possible flags of a handlerton (there can be 32 of them) */
582
#define HTON_NO_FLAGS                 0
583
#define HTON_CLOSE_CURSORS_AT_COMMIT (1 << 0)
584
#define HTON_ALTER_NOT_SUPPORTED     (1 << 1) //Engine does not support alter
585
#define HTON_CAN_RECREATE            (1 << 2) //Delete all is used fro truncate
586
#define HTON_HIDDEN                  (1 << 3) //Engine does not appear in lists
587
#define HTON_FLUSH_AFTER_RENAME      (1 << 4)
588
#define HTON_NOT_USER_SELECTABLE     (1 << 5)
589
#define HTON_TEMPORARY_NOT_SUPPORTED (1 << 6) //Having temporary tables not supported
590
#define HTON_SUPPORT_LOG_TABLES      (1 << 7) //Engine supports log tables
591
#define HTON_NO_PARTITION            (1 << 8) //You can not partition these tables
592
593
class Ha_trx_info;
594
595
struct THD_TRANS
596
{
597
  /* true is not all entries in the ht[] support 2pc */
598
  bool        no_2pc;
599
  /* storage engines that registered in this transaction */
600
  Ha_trx_info *ha_list;
601
  /* 
602
    The purpose of this flag is to keep track of non-transactional
603
    tables that were modified in scope of:
604
    - transaction, when the variable is a member of
605
    THD::transaction.all
606
    - top-level statement or sub-statement, when the variable is a
607
    member of THD::transaction.stmt
608
    This member has the following life cycle:
609
    * stmt.modified_non_trans_table is used to keep track of
610
    modified non-transactional tables of top-level statements. At
611
    the end of the previous statement and at the beginning of the session,
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
612
    it is reset to false.  If such functions
1 by brian
clean slate
613
    as mysql_insert, mysql_update, mysql_delete etc modify a
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
614
    non-transactional table, they set this flag to true.  At the
1 by brian
clean slate
615
    end of the statement, the value of stmt.modified_non_trans_table 
616
    is merged with all.modified_non_trans_table and gets reset.
617
    * all.modified_non_trans_table is reset at the end of transaction
618
    
619
    * Since we do not have a dedicated context for execution of a
620
    sub-statement, to keep track of non-transactional changes in a
621
    sub-statement, we re-use stmt.modified_non_trans_table. 
622
    At entrance into a sub-statement, a copy of the value of
623
    stmt.modified_non_trans_table (containing the changes of the
624
    outer statement) is saved on stack. Then 
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
625
    stmt.modified_non_trans_table is reset to false and the
1 by brian
clean slate
626
    substatement is executed. Then the new value is merged with the
627
    saved value.
628
  */
629
  bool modified_non_trans_table;
630
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
631
  void reset() { no_2pc= false; modified_non_trans_table= false; }
1 by brian
clean slate
632
};
633
634
635
/**
636
  Either statement transaction or normal transaction - related
637
  thread-specific storage engine data.
638
639
  If a storage engine participates in a statement/transaction,
640
  an instance of this class is present in
641
  thd->transaction.{stmt|all}.ha_list. The addition to
642
  {stmt|all}.ha_list is made by trans_register_ha().
643
644
  When it's time to commit or rollback, each element of ha_list
645
  is used to access storage engine's prepare()/commit()/rollback()
646
  methods, and also to evaluate if a full two phase commit is
647
  necessary.
648
649
  @sa General description of transaction handling in handler.cc.
650
*/
651
652
class Ha_trx_info
653
{
654
public:
655
  /** Register this storage engine in the given transaction context. */
656
  void register_ha(THD_TRANS *trans, handlerton *ht_arg)
657
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
658
    assert(m_flags == 0);
659
    assert(m_ht == NULL);
660
    assert(m_next == NULL);
1 by brian
clean slate
661
662
    m_ht= ht_arg;
663
    m_flags= (int) TRX_READ_ONLY; /* Assume read-only at start. */
664
665
    m_next= trans->ha_list;
666
    trans->ha_list= this;
667
  }
668
669
  /** Clear, prepare for reuse. */
670
  void reset()
671
  {
672
    m_next= NULL;
673
    m_ht= NULL;
674
    m_flags= 0;
675
  }
676
677
  Ha_trx_info() { reset(); }
678
679
  void set_trx_read_write()
680
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
681
    assert(is_started());
1 by brian
clean slate
682
    m_flags|= (int) TRX_READ_WRITE;
683
  }
684
  bool is_trx_read_write() const
685
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
686
    assert(is_started());
1 by brian
clean slate
687
    return m_flags & (int) TRX_READ_WRITE;
688
  }
689
  bool is_started() const { return m_ht != NULL; }
690
  /** Mark this transaction read-write if the argument is read-write. */
691
  void coalesce_trx_with(const Ha_trx_info *stmt_trx)
692
  {
693
    /*
694
      Must be called only after the transaction has been started.
695
      Can be called many times, e.g. when we have many
696
      read-write statements in a transaction.
697
    */
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
698
    assert(is_started());
1 by brian
clean slate
699
    if (stmt_trx->is_trx_read_write())
700
      set_trx_read_write();
701
  }
702
  Ha_trx_info *next() const
703
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
704
    assert(is_started());
1 by brian
clean slate
705
    return m_next;
706
  }
707
  handlerton *ht() const
708
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
709
    assert(is_started());
1 by brian
clean slate
710
    return m_ht;
711
  }
712
private:
713
  enum { TRX_READ_ONLY= 0, TRX_READ_WRITE= 1 };
714
  /** Auxiliary, used for ha_list management */
715
  Ha_trx_info *m_next;
716
  /**
717
    Although a given Ha_trx_info instance is currently always used
718
    for the same storage engine, 'ht' is not-NULL only when the
719
    corresponding storage is a part of a transaction.
720
  */
721
  handlerton *m_ht;
722
  /**
723
    Transaction flags related to this engine.
724
    Not-null only if this instance is a part of transaction.
725
    May assume a combination of enum values above.
726
  */
727
  uchar       m_flags;
728
};
729
730
731
enum enum_tx_isolation { ISO_READ_UNCOMMITTED, ISO_READ_COMMITTED,
732
                         ISO_REPEATABLE_READ, ISO_SERIALIZABLE};
733
734
typedef struct {
735
  uint64_t data_file_length;
736
  uint64_t max_data_file_length;
737
  uint64_t index_file_length;
738
  uint64_t delete_length;
739
  ha_rows records;
61 by Brian Aker
Conversion of handler type.
740
  uint32_t mean_rec_length;
1 by brian
clean slate
741
  time_t create_time;
742
  time_t check_time;
743
  time_t update_time;
744
  uint64_t check_sum;
745
} PARTITION_INFO;
746
747
#define UNDEF_NODEGROUP 65535
748
class Item;
749
struct st_table_log_memory_entry;
750
205 by Brian Aker
uint32 -> uin32_t
751
#define NOT_A_PARTITION_ID ((uint32_t)-1)
1 by brian
clean slate
752
753
enum ha_choice { HA_CHOICE_UNDEF, HA_CHOICE_NO, HA_CHOICE_YES };
754
755
typedef struct st_ha_create_information
756
{
264.2.6 by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code.
757
  const CHARSET_INFO *table_charset, *default_table_charset;
1 by brian
clean slate
758
  LEX_STRING connect_string;
759
  LEX_STRING comment;
760
  const char *data_file_name, *index_file_name;
761
  const char *alias;
762
  uint64_t max_rows,min_rows;
763
  uint64_t auto_increment_value;
61 by Brian Aker
Conversion of handler type.
764
  uint32_t table_options;
765
  uint32_t avg_row_length;
766
  uint32_t used_fields;
767
  uint32_t key_block_size;
244.1.1 by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns.
768
  uint32_t block_size;
1 by brian
clean slate
769
  SQL_LIST merge_list;
770
  handlerton *db_type;
771
  enum row_type row_type;
772
  uint null_bits;                       /* NULL bits at start of record */
773
  uint options;				/* OR of HA_CREATE_ options */
774
  uint merge_insert_method;
775
  uint extra_size;                      /* length of extra data segment */
776
  /* 0 not used, 1 if not transactional, 2 if transactional */
777
  enum ha_choice transactional;
778
  bool table_existed;			/* 1 in create if table existed */
779
  bool frm_only;                        /* 1 if no ha_create_table() */
780
  bool varchar;                         /* 1 if table has a VARCHAR */
781
  enum ha_choice page_checksum;         /* If we have page_checksums */
782
} HA_CREATE_INFO;
783
784
typedef struct st_ha_alter_information
785
{
786
  KEY  *key_info_buffer;
787
  uint key_count;
788
  uint index_drop_count;
789
  uint *index_drop_buffer;
790
  uint index_add_count;
791
  uint *index_add_buffer;
792
  void *data;
793
} HA_ALTER_INFO;
794
795
796
typedef struct st_key_create_information
797
{
798
  enum ha_key_alg algorithm;
61 by Brian Aker
Conversion of handler type.
799
  uint32_t block_size;
1 by brian
clean slate
800
  LEX_STRING parser_name;
801
  LEX_STRING comment;
802
} KEY_CREATE_INFO;
803
804
805
/*
806
  Class for maintaining hooks used inside operations on tables such
807
  as: create table functions, delete table functions, and alter table
808
  functions.
809
810
  Class is using the Template Method pattern to separate the public
811
  usage interface from the private inheritance interface.  This
812
  imposes no overhead, since the public non-virtual function is small
813
  enough to be inlined.
814
815
  The hooks are usually used for functions that does several things,
816
  e.g., create_table_from_items(), which both create a table and lock
817
  it.
818
 */
819
class TABLEOP_HOOKS
820
{
821
public:
822
  TABLEOP_HOOKS() {}
823
  virtual ~TABLEOP_HOOKS() {}
824
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
825
  inline void prelock(Table **tables, uint count)
1 by brian
clean slate
826
  {
827
    do_prelock(tables, count);
828
  }
829
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
830
  inline int postlock(Table **tables, uint count)
1 by brian
clean slate
831
  {
832
    return do_postlock(tables, count);
833
  }
834
private:
835
  /* Function primitive that is called prior to locking tables */
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
836
  virtual void do_prelock(Table **tables __attribute__((unused)),
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
837
                          uint count __attribute__((unused)))
1 by brian
clean slate
838
  {
839
    /* Default is to do nothing */
840
  }
841
842
  /**
843
     Primitive called after tables are locked.
844
845
     If an error is returned, the tables will be unlocked and error
846
     handling start.
847
848
     @return Error code or zero.
849
   */
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
850
  virtual int do_postlock(Table **tables __attribute__((unused)),
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
851
                          uint count __attribute__((unused)))
1 by brian
clean slate
852
  {
853
    return 0;                           /* Default is to do nothing */
854
  }
855
};
856
857
typedef struct st_savepoint SAVEPOINT;
61 by Brian Aker
Conversion of handler type.
858
extern uint32_t savepoint_alloc_size;
1 by brian
clean slate
859
extern KEY_CREATE_INFO default_key_create_info;
860
861
/* Forward declaration for condition pushdown to storage engine */
862
typedef class Item COND;
863
864
typedef struct st_ha_check_opt
865
{
866
  st_ha_check_opt() {}                        /* Remove gcc warning */
61 by Brian Aker
Conversion of handler type.
867
  uint32_t sort_buffer_size;
1 by brian
clean slate
868
  uint flags;       /* isam layer flags (e.g. for myisamchk) */
869
  uint sql_flags;   /* sql layer flags - for something myisamchk cannot do */
870
  KEY_CACHE *key_cache;	/* new key cache when changing key cache */
871
  void init();
872
} HA_CHECK_OPT;
873
874
875
876
/*
877
  This is a buffer area that the handler can use to store rows.
878
  'end_of_used_area' should be kept updated after calls to
879
  read-functions so that other parts of the code can use the
880
  remaining area (until next read calls is issued).
881
*/
882
883
typedef struct st_handler_buffer
884
{
885
  uchar *buffer;         /* Buffer one can start using */
886
  uchar *buffer_end;     /* End of buffer */
887
  uchar *end_of_used_area;     /* End of area that was used by handler */
888
} HANDLER_BUFFER;
889
890
typedef struct system_status_var SSV;
891
892
893
typedef void *range_seq_t;
894
895
typedef struct st_range_seq_if
896
{
897
  /*
898
    Initialize the traversal of range sequence
899
    
900
    SYNOPSIS
901
      init()
902
        init_params  The seq_init_param parameter 
903
        n_ranges     The number of ranges obtained 
904
        flags        A combination of HA_MRR_SINGLE_POINT, HA_MRR_FIXED_KEY
905
906
    RETURN
907
      An opaque value to be used as RANGE_SEQ_IF::next() parameter
908
  */
909
  range_seq_t (*init)(void *init_params, uint n_ranges, uint flags);
910
911
912
  /*
913
    Get the next range in the range sequence
914
915
    SYNOPSIS
916
      next()
917
        seq    The value returned by RANGE_SEQ_IF::init()
918
        range  OUT Information about the next range
919
    
920
    RETURN
921
      0 - Ok, the range structure filled with info about the next range
922
      1 - No more ranges
923
  */
924
  uint (*next) (range_seq_t seq, KEY_MULTI_RANGE *range);
925
} RANGE_SEQ_IF;
926
206 by Brian Aker
Removed final uint dead types.
927
uint16_t &mrr_persistent_flag_storage(range_seq_t seq, uint idx);
1 by brian
clean slate
928
char* &mrr_get_ptr_by_idx(range_seq_t seq, uint idx);
929
930
class COST_VECT
931
{ 
932
public:
933
  double io_count;     /* number of I/O                 */
934
  double avg_io_cost;  /* cost of an average I/O oper.  */
935
  double cpu_cost;     /* cost of operations in CPU     */
936
  double mem_cost;     /* cost of used memory           */ 
937
  double import_cost;  /* cost of remote operations     */
938
  
939
  enum { IO_COEFF=1 };
940
  enum { CPU_COEFF=1 };
941
  enum { MEM_COEFF=1 };
942
  enum { IMPORT_COEFF=1 };
943
944
  COST_VECT() {}                              // keep gcc happy
945
946
  double total_cost() 
947
  {
948
    return IO_COEFF*io_count*avg_io_cost + CPU_COEFF * cpu_cost +
949
           MEM_COEFF*mem_cost + IMPORT_COEFF*import_cost;
950
  }
951
952
  void zero()
953
  {
954
    avg_io_cost= 1.0;
955
    io_count= cpu_cost= mem_cost= import_cost= 0.0;
956
  }
957
958
  void multiply(double m)
959
  {
960
    io_count *= m;
961
    cpu_cost *= m;
962
    import_cost *= m;
963
    /* Don't multiply mem_cost */
964
  }
965
966
  void add(const COST_VECT* cost)
967
  {
968
    double io_count_sum= io_count + cost->io_count;
969
    add_io(cost->io_count, cost->avg_io_cost);
970
    io_count= io_count_sum;
971
    cpu_cost += cost->cpu_cost;
972
  }
973
  void add_io(double add_io_cnt, double add_avg_cost)
974
  {
975
    double io_count_sum= io_count + add_io_cnt;
976
    avg_io_cost= (io_count * avg_io_cost + 
977
                  add_io_cnt * add_avg_cost) / io_count_sum;
978
    io_count= io_count_sum;
979
  }
980
};
981
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
982
void get_sweep_read_cost(Table *table, ha_rows nrows, bool interrupted, 
1 by brian
clean slate
983
                         COST_VECT *cost);
984
985
/*
986
  The below two are not used (and not handled) in this milestone of this WL
987
  entry because there seems to be no use for them at this stage of
988
  implementation.
989
*/
990
#define HA_MRR_SINGLE_POINT 1
991
#define HA_MRR_FIXED_KEY  2
992
993
/* 
994
  Indicates that RANGE_SEQ_IF::next(&range) doesn't need to fill in the
995
  'range' parameter.
996
*/
997
#define HA_MRR_NO_ASSOCIATION 4
998
999
/* 
1000
  The MRR user will provide ranges in key order, and MRR implementation
1001
  must return rows in key order.
1002
*/
1003
#define HA_MRR_SORTED 8
1004
1005
/* MRR implementation doesn't have to retrieve full records */
1006
#define HA_MRR_INDEX_ONLY 16
1007
1008
/* 
1009
  The passed memory buffer is of maximum possible size, the caller can't
1010
  assume larger buffer.
1011
*/
1012
#define HA_MRR_LIMITS 32
1013
1014
1015
/*
1016
  Flag set <=> default MRR implementation is used
1017
  (The choice is made by **_info[_const]() function which may set this
1018
   flag. SQL layer remembers the flag value and then passes it to
1019
   multi_read_range_init().
1020
*/
1021
#define HA_MRR_USE_DEFAULT_IMPL 64
1022
1023
/*
1024
  Used only as parameter to multi_range_read_info():
1025
  Flag set <=> the caller guarantees that the bounds of the scanned ranges
1026
  will not have NULL values.
1027
*/
1028
#define HA_MRR_NO_NULL_ENDPOINTS 128
1029
1030
1031
class ha_statistics
1032
{
1033
public:
1034
  uint64_t data_file_length;		/* Length off data file */
1035
  uint64_t max_data_file_length;	/* Length off data file */
1036
  uint64_t index_file_length;
1037
  uint64_t max_index_file_length;
1038
  uint64_t delete_length;		/* Free bytes */
1039
  uint64_t auto_increment_value;
1040
  /*
1041
    The number of records in the table. 
1042
      0    - means the table has exactly 0 rows
1043
    other  - if (table_flags() & HA_STATS_RECORDS_IS_EXACT)
1044
               the value is the exact number of records in the table
1045
             else
1046
               it is an estimate
1047
  */
1048
  ha_rows records;
1049
  ha_rows deleted;			/* Deleted records */
61 by Brian Aker
Conversion of handler type.
1050
  uint32_t mean_rec_length;		/* physical reclength */
1 by brian
clean slate
1051
  time_t create_time;			/* When table was created */
1052
  time_t check_time;
1053
  time_t update_time;
1054
  uint block_size;			/* index block size */
1055
1056
  ha_statistics():
1057
    data_file_length(0), max_data_file_length(0),
1058
    index_file_length(0), delete_length(0), auto_increment_value(0),
1059
    records(0), deleted(0), mean_rec_length(0), create_time(0),
1060
    check_time(0), update_time(0), block_size(0)
1061
  {}
1062
};
1063
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1064
uint calculate_key_len(Table *, uint, const uchar *, key_part_map);
1 by brian
clean slate
1065
/*
1066
  bitmap with first N+1 bits set
1067
  (keypart_map for a key prefix of [0..N] keyparts)
1068
*/
1069
#define make_keypart_map(N) (((key_part_map)2 << (N)) - 1)
1070
/*
1071
  bitmap with first N bits set
1072
  (keypart_map for a key prefix of [0..N-1] keyparts)
1073
*/
1074
#define make_prev_keypart_map(N) (((key_part_map)1 << (N)) - 1)
1075
1076
/**
1077
  The handler class is the interface for dynamically loadable
1078
  storage engines. Do not add ifdefs and take care when adding or
1079
  changing virtual functions to avoid vtable confusion
1080
1081
  Functions in this class accept and return table columns data. Two data
1082
  representation formats are used:
1083
  1. TableRecordFormat - Used to pass [partial] table records to/from
1084
     storage engine
1085
1086
  2. KeyTupleFormat - used to pass index search tuples (aka "keys") to
1087
     storage engine. See opt_range.cc for description of this format.
1088
1089
  TableRecordFormat
1090
  =================
1091
  [Warning: this description is work in progress and may be incomplete]
1092
  The table record is stored in a fixed-size buffer:
1093
   
1094
    record: null_bytes, column1_data, column2_data, ...
1095
  
1096
  The offsets of the parts of the buffer are also fixed: every column has 
1097
  an offset to its column{i}_data, and if it is nullable it also has its own
1098
  bit in null_bytes. 
1099
1100
  The record buffer only includes data about columns that are marked in the
1101
  relevant column set (table->read_set and/or table->write_set, depending on
1102
  the situation). 
1103
  <not-sure>It could be that it is required that null bits of non-present
1104
  columns are set to 1</not-sure>
1105
1106
  VARIOUS EXCEPTIONS AND SPECIAL CASES
1107
1108
  f the table has no nullable columns, then null_bytes is still 
1109
  present, its length is one byte <not-sure> which must be set to 0xFF 
1110
  at all times. </not-sure>
1111
  
1112
  If the table has columns of type BIT, then certain bits from those columns
1113
  may be stored in null_bytes as well. Grep around for Field_bit for
1114
  details.
1115
1116
  For blob columns (see Field_blob), the record buffer stores length of the 
1117
  data, following by memory pointer to the blob data. The pointer is owned 
1118
  by the storage engine and is valid until the next operation.
1119
1120
  If a blob column has NULL value, then its length and blob data pointer
1121
  must be set to 0.
1122
*/
1123
1124
class handler :public Sql_alloc
1125
{
1126
public:
1127
  typedef uint64_t Table_flags;
1128
protected:
1129
  struct st_table_share *table_share;   /* The table definition */
327.1.1 by Brian Aker
First pass in encapsulating table (it is now an object, no longer a structure).
1130
  Table *table;               /* The current open table */
1 by brian
clean slate
1131
  Table_flags cached_table_flags;       /* Set on init() and open() */
1132
1133
  ha_rows estimation_rows_to_insert;
1134
public:
1135
  handlerton *ht;                 /* storage engine of this handler */
1136
  uchar *ref;				/* Pointer to current row */
1137
  uchar *dup_ref;			/* Pointer to duplicate row */
1138
1139
  ha_statistics stats;
1140
  /** MultiRangeRead-related members: */
1141
  range_seq_t mrr_iter;    /* Interator to traverse the range sequence */
1142
  RANGE_SEQ_IF mrr_funcs;  /* Range sequence traversal functions */
1143
  HANDLER_BUFFER *multi_range_buffer; /* MRR buffer info */
1144
  uint ranges_in_seq; /* Total number of ranges in the traversed sequence */
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1145
  /* true <=> source MRR ranges and the output are ordered */
1 by brian
clean slate
1146
  bool mrr_is_output_sorted;
1147
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1148
  /** true <=> we're currently traversing a range in mrr_cur_range. */
1 by brian
clean slate
1149
  bool mrr_have_range;
1150
  /** Current range (the one we're now returning rows from) */
1151
  KEY_MULTI_RANGE mrr_cur_range;
1152
1153
  /** The following are for read_range() */
1154
  key_range save_end_range, *end_range;
1155
  KEY_PART_INFO *range_key_part;
1156
  int key_compare_result_on_equal;
1157
  bool eq_range;
1158
  /* 
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1159
    true <=> the engine guarantees that returned records are within the range
1 by brian
clean slate
1160
    being scanned.
1161
  */
1162
  bool in_range_check_pushed_down;
1163
1164
  uint errkey;				/* Last dup key */
1165
  uint key_used_on_scan;
1166
  uint active_index;
1167
  /** Length of ref (1-8 or the clustered key length) */
1168
  uint ref_length;
1169
  enum {NONE=0, INDEX, RND} inited;
1170
  bool locked;
1171
  bool implicit_emptied;                /* Can be !=0 only if HEAP */
1172
  const Item *pushed_cond;
1173
1174
  Item *pushed_idx_cond;
1175
  uint pushed_idx_cond_keyno;  /* The index which the above condition is for */
1176
1177
  /**
1178
    next_insert_id is the next value which should be inserted into the
1179
    auto_increment column: in a inserting-multi-row statement (like INSERT
1180
    SELECT), for the first row where the autoinc value is not specified by the
1181
    statement, get_auto_increment() called and asked to generate a value,
1182
    next_insert_id is set to the next value, then for all other rows
1183
    next_insert_id is used (and increased each time) without calling
1184
    get_auto_increment().
1185
  */
1186
  uint64_t next_insert_id;
1187
  /**
1188
    insert id for the current row (*autogenerated*; if not
1189
    autogenerated, it's 0).
1190
    At first successful insertion, this variable is stored into
1191
    THD::first_successful_insert_id_in_cur_stmt.
1192
  */
1193
  uint64_t insert_id_for_cur_row;
1194
  /**
1195
    Interval returned by get_auto_increment() and being consumed by the
1196
    inserter.
1197
  */
1198
  Discrete_interval auto_inc_interval_for_cur_row;
1199
1200
  handler(handlerton *ht_arg, TABLE_SHARE *share_arg)
1201
    :table_share(share_arg), table(0),
1202
    estimation_rows_to_insert(0), ht(ht_arg),
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1203
    ref(0), in_range_check_pushed_down(false),
1 by brian
clean slate
1204
    key_used_on_scan(MAX_KEY), active_index(MAX_KEY),
1205
    ref_length(sizeof(my_off_t)),
137 by Brian Aker
Removed dead FT bits. Small refactoring in sql_plugin.cc
1206
    inited(NONE),
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1207
    locked(false), implicit_emptied(0),
1 by brian
clean slate
1208
    pushed_cond(0), pushed_idx_cond(NULL), pushed_idx_cond_keyno(MAX_KEY),
1209
    next_insert_id(0), insert_id_for_cur_row(0)
1210
    {}
1211
  virtual ~handler(void)
1212
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1213
    assert(locked == false);
1214
    /* TODO: assert(inited == NONE); */
1 by brian
clean slate
1215
  }
1216
  virtual handler *clone(MEM_ROOT *mem_root);
1217
  /** This is called after create to allow us to set up cached variables */
1218
  void init()
1219
  {
1220
    cached_table_flags= table_flags();
1221
  }
1222
  /* ha_ methods: pubilc wrappers for private virtual API */
1223
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1224
  int ha_open(Table *table, const char *name, int mode, int test_if_locked);
1 by brian
clean slate
1225
  int ha_index_init(uint idx, bool sorted)
1226
  {
1227
    int result;
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1228
    assert(inited==NONE);
1 by brian
clean slate
1229
    if (!(result= index_init(idx, sorted)))
1230
      inited=INDEX;
1231
    end_range= NULL;
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1232
    return(result);
1 by brian
clean slate
1233
  }
1234
  int ha_index_end()
1235
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1236
    assert(inited==INDEX);
1 by brian
clean slate
1237
    inited=NONE;
1238
    end_range= NULL;
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1239
    return(index_end());
1 by brian
clean slate
1240
  }
1241
  int ha_rnd_init(bool scan)
1242
  {
1243
    int result;
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1244
    assert(inited==NONE || (inited==RND && scan));
1 by brian
clean slate
1245
    inited= (result= rnd_init(scan)) ? NONE: RND;
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1246
    return(result);
1 by brian
clean slate
1247
  }
1248
  int ha_rnd_end()
1249
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1250
    assert(inited==RND);
1 by brian
clean slate
1251
    inited=NONE;
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1252
    return(rnd_end());
1 by brian
clean slate
1253
  }
1254
  int ha_reset();
1255
  /* this is necessary in many places, e.g. in HANDLER command */
1256
  int ha_index_or_rnd_end()
1257
  {
1258
    return inited == INDEX ? ha_index_end() : inited == RND ? ha_rnd_end() : 0;
1259
  }
1260
  Table_flags ha_table_flags() const { return cached_table_flags; }
1261
  /**
1262
    These functions represent the public interface to *users* of the
1263
    handler class, hence they are *not* virtual. For the inheritance
1264
    interface, see the (private) functions write_row(), update_row(),
1265
    and delete_row() below.
1266
  */
1267
  int ha_external_lock(THD *thd, int lock_type);
1268
  int ha_write_row(uchar * buf);
1269
  int ha_update_row(const uchar * old_data, uchar * new_data);
1270
  int ha_delete_row(const uchar * buf);
1271
  void ha_release_auto_increment();
1272
1273
  int ha_check_for_upgrade(HA_CHECK_OPT *check_opt);
1274
  /** to be actually called to get 'check()' functionality*/
1275
  int ha_check(THD *thd, HA_CHECK_OPT *check_opt);
1276
  int ha_repair(THD* thd, HA_CHECK_OPT* check_opt);
1277
  void ha_start_bulk_insert(ha_rows rows)
1278
  {
1279
    estimation_rows_to_insert= rows;
1280
    start_bulk_insert(rows);
1281
  }
1282
  int ha_end_bulk_insert()
1283
  {
1284
    estimation_rows_to_insert= 0;
1285
    return end_bulk_insert();
1286
  }
1287
  int ha_bulk_update_row(const uchar *old_data, uchar *new_data,
1288
                         uint *dup_key_found);
1289
  int ha_delete_all_rows();
1290
  int ha_reset_auto_increment(uint64_t value);
1291
  int ha_optimize(THD* thd, HA_CHECK_OPT* check_opt);
1292
  int ha_analyze(THD* thd, HA_CHECK_OPT* check_opt);
1293
  bool ha_check_and_repair(THD *thd);
1294
  int ha_disable_indexes(uint mode);
1295
  int ha_enable_indexes(uint mode);
200 by Brian Aker
my_bool from handler and set_var
1296
  int ha_discard_or_import_tablespace(bool discard);
1 by brian
clean slate
1297
  void ha_prepare_for_alter();
1298
  int ha_rename_table(const char *from, const char *to);
1299
  int ha_delete_table(const char *name);
1300
  void ha_drop_table(const char *name);
1301
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1302
  int ha_create(const char *name, Table *form, HA_CREATE_INFO *info);
1 by brian
clean slate
1303
1304
  int ha_create_handler_files(const char *name, const char *old_name,
1305
                              int action_flag, HA_CREATE_INFO *info);
1306
1307
  void adjust_next_insert_id_after_explicit_value(uint64_t nr);
1308
  int update_auto_increment();
1309
  void print_keydup_error(uint key_nr, const char *msg);
1310
  virtual void print_error(int error, myf errflag);
1311
  virtual bool get_error_message(int error, String *buf);
1312
  uint get_dup_key(int error);
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1313
  virtual void change_table_ptr(Table *table_arg, TABLE_SHARE *share)
1 by brian
clean slate
1314
  {
1315
    table= table_arg;
1316
    table_share= share;
1317
  }
1318
  /* Estimates calculation */
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1319
  virtual double scan_time(void)
151 by Brian Aker
Ulonglong to uint64_t
1320
  { return uint64_t2double(stats.data_file_length) / IO_SIZE + 2; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1321
  virtual double read_time(uint index __attribute__((unused)),
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1322
                           uint ranges, ha_rows rows)
1 by brian
clean slate
1323
  { return rows2double(ranges+rows); }
1324
1325
  virtual double index_only_read_time(uint keynr, double records);
1326
  
1327
  virtual ha_rows multi_range_read_info_const(uint keyno, RANGE_SEQ_IF *seq,
1328
                                              void *seq_init_param, 
1329
                                              uint n_ranges, uint *bufsz,
1330
                                              uint *flags, COST_VECT *cost);
1331
  virtual int multi_range_read_info(uint keyno, uint n_ranges, uint keys,
1332
                                    uint *bufsz, uint *flags, COST_VECT *cost);
1333
  virtual int multi_range_read_init(RANGE_SEQ_IF *seq, void *seq_init_param,
1334
                                    uint n_ranges, uint mode,
1335
                                    HANDLER_BUFFER *buf);
1336
  virtual int multi_range_read_next(char **range_info);
1337
1338
1339
  virtual const key_map *keys_to_use_for_scanning() { return &key_map_empty; }
1340
  bool has_transactions()
1341
  { return (ha_table_flags() & HA_NO_TRANSACTIONS) == 0; }
1342
  virtual uint extra_rec_buf_length() const { return 0; }
1343
1344
  /**
1345
    This method is used to analyse the error to see whether the error
1346
    is ignorable or not, certain handlers can have more error that are
1347
    ignorable than others. E.g. the partition handler can get inserts
1348
    into a range where there is no partition and this is an ignorable
1349
    error.
1350
    HA_ERR_FOUND_DUP_UNIQUE is a special case in MyISAM that means the
1351
    same thing as HA_ERR_FOUND_DUP_KEY but can in some cases lead to
1352
    a slightly different error message.
1353
  */
1354
  virtual bool is_fatal_error(int error, uint flags)
1355
  {
1356
    if (!error ||
1357
        ((flags & HA_CHECK_DUP_KEY) &&
1358
         (error == HA_ERR_FOUND_DUPP_KEY ||
1359
          error == HA_ERR_FOUND_DUPP_UNIQUE)))
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1360
      return false;
1361
    return true;
1 by brian
clean slate
1362
  }
1363
1364
  /**
1365
    Number of rows in table. It will only be called if
1366
    (table_flags() & (HA_HAS_RECORDS | HA_STATS_RECORDS_IS_EXACT)) != 0
1367
  */
1368
  virtual ha_rows records() { return stats.records; }
1369
  /**
1370
    Return upper bound of current number of records in the table
1371
    (max. of how many records one will retrieve when doing a full table scan)
1372
    If upper bound is not known, HA_POS_ERROR should be returned as a max
1373
    possible upper bound.
1374
  */
1375
  virtual ha_rows estimate_rows_upper_bound()
1376
  { return stats.records+EXTRA_RECORDS; }
1377
1378
  /**
1379
    Get the row type from the storage engine.  If this method returns
1380
    ROW_TYPE_NOT_USED, the information in HA_CREATE_INFO should be used.
1381
  */
1382
  virtual enum row_type get_row_type() const { return ROW_TYPE_NOT_USED; }
1383
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1384
  virtual const char *index_type(uint key_number __attribute__((unused)))
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1385
  { assert(0); return "";}
1 by brian
clean slate
1386
1387
1388
  /**
1389
    Signal that the table->read_set and table->write_set table maps changed
1390
    The handler is allowed to set additional bits in the above map in this
1391
    call. Normally the handler should ignore all calls until we have done
1392
    a ha_rnd_init() or ha_index_init(), write_row(), update_row or delete_row()
1393
    as there may be several calls to this routine.
1394
  */
1395
  virtual void column_bitmaps_signal();
1396
  uint get_index(void) const { return active_index; }
1397
  virtual int close(void)=0;
1398
1399
  /**
1400
    @retval  0   Bulk update used by handler
1401
    @retval  1   Bulk update not used, normal operation used
1402
  */
1403
  virtual bool start_bulk_update() { return 1; }
1404
  /**
1405
    @retval  0   Bulk delete used by handler
1406
    @retval  1   Bulk delete not used, normal operation used
1407
  */
1408
  virtual bool start_bulk_delete() { return 1; }
1409
  /**
1410
    After this call all outstanding updates must be performed. The number
1411
    of duplicate key errors are reported in the duplicate key parameter.
1412
    It is allowed to continue to the batched update after this call, the
1413
    handler has to wait until end_bulk_update with changing state.
1414
1415
    @param    dup_key_found       Number of duplicate keys found
1416
1417
    @retval  0           Success
1418
    @retval  >0          Error code
1419
  */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1420
  virtual int exec_bulk_update(uint *dup_key_found __attribute__((unused)))
1 by brian
clean slate
1421
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1422
    assert(false);
1 by brian
clean slate
1423
    return HA_ERR_WRONG_COMMAND;
1424
  }
1425
  /**
1426
    Perform any needed clean-up, no outstanding updates are there at the
1427
    moment.
1428
  */
1429
  virtual void end_bulk_update() { return; }
1430
  /**
1431
    Execute all outstanding deletes and close down the bulk delete.
1432
1433
    @retval 0             Success
1434
    @retval >0            Error code
1435
  */
1436
  virtual int end_bulk_delete()
1437
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1438
    assert(false);
1 by brian
clean slate
1439
    return HA_ERR_WRONG_COMMAND;
1440
  }
1441
  /**
1442
     @brief
1443
     Positions an index cursor to the index specified in the handle. Fetches the
1444
     row if available. If the key value is null, begin at the first key of the
1445
     index.
1446
  */
1447
  virtual int index_read_map(uchar * buf, const uchar * key,
1448
                             key_part_map keypart_map,
1449
                             enum ha_rkey_function find_flag)
1450
  {
1451
    uint key_len= calculate_key_len(table, active_index, key, keypart_map);
1452
    return  index_read(buf, key, key_len, find_flag);
1453
  }
1454
  /**
1455
     @brief
1456
     Positions an index cursor to the index specified in the handle. Fetches the
1457
     row if available. If the key value is null, begin at the first key of the
1458
     index.
1459
  */
1460
  virtual int index_read_idx_map(uchar * buf, uint index, const uchar * key,
1461
                                 key_part_map keypart_map,
1462
                                 enum ha_rkey_function find_flag);
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1463
  virtual int index_next(uchar * buf __attribute__((unused)))
1464
   { return  HA_ERR_WRONG_COMMAND; }
1465
  virtual int index_prev(uchar * buf __attribute__((unused)))
1466
   { return  HA_ERR_WRONG_COMMAND; }
1467
  virtual int index_first(uchar * buf __attribute__((unused)))
1468
   { return  HA_ERR_WRONG_COMMAND; }
1469
  virtual int index_last(uchar * buf __attribute__((unused)))
1470
   { return  HA_ERR_WRONG_COMMAND; }
1471
  virtual int index_next_same(uchar *buf __attribute__((unused)),
1472
                              const uchar *key __attribute__((unused)),
1473
                              uint keylen __attribute__((unused)));
1 by brian
clean slate
1474
  /**
1475
     @brief
1476
     The following functions works like index_read, but it find the last
1477
     row with the current key value or prefix.
1478
  */
1479
  virtual int index_read_last_map(uchar * buf, const uchar * key,
1480
                                  key_part_map keypart_map)
1481
  {
1482
    uint key_len= calculate_key_len(table, active_index, key, keypart_map);
1483
    return index_read_last(buf, key, key_len);
1484
  }
1485
  virtual int read_range_first(const key_range *start_key,
1486
                               const key_range *end_key,
1487
                               bool eq_range, bool sorted);
1488
  virtual int read_range_next();
1489
  int compare_key(key_range *range);
1490
  int compare_key2(key_range *range);
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1491
  virtual int rnd_next(uchar *buf __attribute__((unused)))=0;
1492
  virtual int rnd_pos(uchar * buf __attribute__((unused)),
1493
                      uchar *pos __attribute__((unused)))=0;
1 by brian
clean slate
1494
  /**
1495
    One has to use this method when to find
1496
    random position by record as the plain
1497
    position() call doesn't work for some
1498
    handlers for random position.
1499
  */
1500
  virtual int rnd_pos_by_record(uchar *record);
1501
  virtual int read_first_row(uchar *buf, uint primary_key);
1502
  /**
1503
    The following function is only needed for tables that may be temporary
1504
    tables during joins.
1505
  */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1506
  virtual int restart_rnd_next(uchar *buf __attribute__((unused)),
1507
                               uchar *pos __attribute__((unused)))
1508
    { return HA_ERR_WRONG_COMMAND; }
1509
  virtual int rnd_same(uchar *buf __attribute__((unused)),
1510
                       uint inx __attribute__((unused)))
1511
    { return HA_ERR_WRONG_COMMAND; }
1512
  virtual ha_rows records_in_range(uint inx __attribute__((unused)),
1513
                                   key_range *min_key __attribute__((unused)),
1514
                                   key_range *max_key __attribute__((unused)))
1 by brian
clean slate
1515
    { return (ha_rows) 10; }
1516
  virtual void position(const uchar *record)=0;
1517
  virtual int info(uint)=0; // see my_base.h for full description
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1518
  virtual uint32_t calculate_key_hash_value(Field **field_array __attribute__((unused)))
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1519
  { assert(0); return 0; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1520
  virtual int extra(enum ha_extra_function operation __attribute__((unused)))
1 by brian
clean slate
1521
  { return 0; }
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1522
  virtual int extra_opt(enum ha_extra_function operation,
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1523
                        uint32_t cache_size __attribute__((unused)))
1 by brian
clean slate
1524
  { return extra(operation); }
1525
1526
  /**
1527
    In an UPDATE or DELETE, if the row under the cursor was locked by another
1528
    transaction, and the engine used an optimistic read of the last
1529
    committed row value under the cursor, then the engine returns 1 from this
1530
    function. MySQL must NOT try to update this optimistic value. If the
1531
    optimistic value does not match the WHERE condition, MySQL can decide to
1532
    skip over this row. Currently only works for InnoDB. This can be used to
1533
    avoid unnecessary lock waits.
1534
1535
    If this method returns nonzero, it will also signal the storage
1536
    engine that the next read will be a locking re-read of the row.
1537
  */
1538
  virtual bool was_semi_consistent_read() { return 0; }
1539
  /**
1540
    Tell the engine whether it should avoid unnecessary lock waits.
1541
    If yes, in an UPDATE or DELETE, if the row under the cursor was locked
1542
    by another transaction, the engine may try an optimistic read of
1543
    the last committed row value under the cursor.
1544
  */
1545
  virtual void try_semi_consistent_read(bool) {}
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1546
  virtual void unlock_row(void) {}
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1547
  virtual int start_stmt(THD *thd __attribute__((unused)),
1548
                         thr_lock_type lock_type __attribute__((unused)))
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1549
  {return 0;}
1 by brian
clean slate
1550
  virtual void get_auto_increment(uint64_t offset, uint64_t increment,
1551
                                  uint64_t nb_desired_values,
1552
                                  uint64_t *first_value,
1553
                                  uint64_t *nb_reserved_values);
1554
  void set_next_insert_id(uint64_t id)
1555
  {
1556
    next_insert_id= id;
1557
  }
1558
  void restore_auto_increment(uint64_t prev_insert_id)
1559
  {
1560
    /*
1561
      Insertion of a row failed, re-use the lastly generated auto_increment
1562
      id, for the next row. This is achieved by resetting next_insert_id to
1563
      what it was before the failed insertion (that old value is provided by
1564
      the caller). If that value was 0, it was the first row of the INSERT;
1565
      then if insert_id_for_cur_row contains 0 it means no id was generated
1566
      for this first row, so no id was generated since the INSERT started, so
1567
      we should set next_insert_id to 0; if insert_id_for_cur_row is not 0, it
1568
      is the generated id of the first and failed row, so we use it.
1569
    */
1570
    next_insert_id= (prev_insert_id > 0) ? prev_insert_id :
1571
      insert_id_for_cur_row;
1572
  }
1573
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1574
  virtual void update_create_info(HA_CREATE_INFO *create_info __attribute__((unused))) {}
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1575
  int check_old_types(void);
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1576
  virtual int assign_to_keycache(THD* thd __attribute__((unused)),
1577
                                 HA_CHECK_OPT* check_opt __attribute__((unused)))
1 by brian
clean slate
1578
  { return HA_ADMIN_NOT_IMPLEMENTED; }
1579
  /* end of the list of admin commands */
1580
1581
  virtual int indexes_are_disabled(void) {return 0;}
1582
  virtual char *update_table_comment(const char * comment)
1583
  { return (char*) comment;}
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1584
  virtual void append_create_info(String *packet __attribute__((unused)))
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1585
  {}
1 by brian
clean slate
1586
  /**
1587
      If index == MAX_KEY then a check for table is made and if index <
1588
      MAX_KEY then a check is made if the table has foreign keys and if
1589
      a foreign key uses this index (and thus the index cannot be dropped).
1590
1591
    @param  index            Index to check if foreign key uses it
1592
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1593
    @retval   true            Foreign key defined on table or index
1594
    @retval   false           No foreign key defined
1 by brian
clean slate
1595
  */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1596
  virtual bool is_fk_defined_on_table_or_index(uint index __attribute__((unused)))
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1597
  { return false; }
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1598
  virtual char* get_foreign_key_create_info(void)
1 by brian
clean slate
1599
  { return(NULL);}  /* gets foreign key create string from InnoDB */
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1600
  /** used in ALTER Table; 1 if changing storage engine is allowed */
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1601
  virtual bool can_switch_engines(void) { return 1; }
1 by brian
clean slate
1602
  /** used in REPLACE; is > 0 if table is referred by a FOREIGN KEY */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1603
  virtual int get_foreign_key_list(THD *thd __attribute__((unused)),
1604
                                   List<FOREIGN_KEY_INFO> *f_key_list __attribute__((unused)))
1 by brian
clean slate
1605
  { return 0; }
1606
  virtual uint referenced_by_foreign_key() { return 0;}
1607
  virtual void init_table_handle_for_HANDLER()
1608
  { return; }       /* prepare InnoDB for HANDLER */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1609
  virtual void free_foreign_key_create_info(char* str __attribute__((unused))) {}
1 by brian
clean slate
1610
  /** The following can be called without an open handler */
1611
  virtual const char *table_type() const =0;
1612
  /**
1613
    If frm_error() is called then we will use this to find out what file
1614
    extentions exist for the storage engine. This is also used by the default
1615
    rename_table and delete_table method in handler.cc.
1616
1617
    For engines that have two file name extentions (separate meta/index file
1618
    and data file), the order of elements is relevant. First element of engine
1619
    file name extentions array should be meta/index file extention. Second
1620
    element - data file extention. This order is assumed by
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1621
    prepare_for_repair() when REPAIR Table ... USE_FRM is issued.
1 by brian
clean slate
1622
  */
1623
  virtual const char **bas_ext() const =0;
1624
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1625
  virtual int get_default_no_partitions(HA_CREATE_INFO *info __attribute__((unused))) { return 1;}
1626
  virtual bool get_no_parts(const char *name __attribute__((unused)),
1 by brian
clean slate
1627
                            uint *no_parts)
1628
  {
1629
    *no_parts= 0;
1630
    return 0;
1631
  }
1632
61 by Brian Aker
Conversion of handler type.
1633
  virtual uint32_t index_flags(uint idx, uint part, bool all_parts) const =0;
1 by brian
clean slate
1634
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1635
  virtual int add_index(Table *table_arg __attribute__((unused)),
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1636
                        KEY *key_info __attribute__((unused)),
1637
                        uint num_of_keys __attribute__((unused)))
1638
  { return (HA_ERR_WRONG_COMMAND); }
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1639
  virtual int prepare_drop_index(Table *table_arg __attribute__((unused)),
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1640
                                 uint *key_num __attribute__((unused)),
1641
                                 uint num_of_keys __attribute__((unused)))
1642
  { return (HA_ERR_WRONG_COMMAND); }
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1643
  virtual int final_drop_index(Table *table_arg __attribute__((unused)))
1 by brian
clean slate
1644
  { return (HA_ERR_WRONG_COMMAND); }
1645
1646
  uint max_record_length() const
287.3.8 by Monty Taylor
Oy. Replaced max and min macros with std::max and std::min so that we get
1647
  { return min((unsigned int)HA_MAX_REC_LENGTH, max_supported_record_length()); }
1 by brian
clean slate
1648
  uint max_keys() const
287.3.8 by Monty Taylor
Oy. Replaced max and min macros with std::max and std::min so that we get
1649
  { return min((unsigned int)MAX_KEY, max_supported_keys()); }
1 by brian
clean slate
1650
  uint max_key_parts() const
287.3.8 by Monty Taylor
Oy. Replaced max and min macros with std::max and std::min so that we get
1651
  { return min((unsigned int)MAX_REF_PARTS, max_supported_key_parts()); }
1 by brian
clean slate
1652
  uint max_key_length() const
287.3.8 by Monty Taylor
Oy. Replaced max and min macros with std::max and std::min so that we get
1653
  { return min((unsigned int)MAX_KEY_LENGTH, max_supported_key_length()); }
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1654
  uint max_key_part_length(void) const
287.3.8 by Monty Taylor
Oy. Replaced max and min macros with std::max and std::min so that we get
1655
  { return min((unsigned int)MAX_KEY_LENGTH, max_supported_key_part_length()); }
1 by brian
clean slate
1656
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1657
  virtual uint max_supported_record_length(void) const
1658
  { return HA_MAX_REC_LENGTH; }
1659
  virtual uint max_supported_keys(void) const { return 0; }
1660
  virtual uint max_supported_key_parts(void) const { return MAX_REF_PARTS; }
1661
  virtual uint max_supported_key_length(void) const { return MAX_KEY_LENGTH; }
1662
  virtual uint max_supported_key_part_length(void) const { return 255; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1663
  virtual uint min_record_length(uint options __attribute__((unused))) const
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1664
  { return 1; }
1 by brian
clean slate
1665
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1666
  virtual bool low_byte_first(void) const { return 1; }
1667
  virtual uint checksum(void) const { return 0; }
1668
  virtual bool is_crashed(void) const  { return 0; }
1669
  virtual bool auto_repair(void) const { return 0; }
1 by brian
clean slate
1670
1671
1672
#define CHF_CREATE_FLAG 0
1673
#define CHF_DELETE_FLAG 1
1674
#define CHF_RENAME_FLAG 2
1675
1676
1677
  /**
1678
    @note lock_count() can return > 1 if the table is MERGE or partitioned.
1679
  */
1680
  virtual uint lock_count(void) const { return 1; }
1681
  /**
1682
    Is not invoked for non-transactional temporary tables.
1683
1684
    @note store_lock() can return more than one lock if the table is MERGE
1685
    or partitioned.
1686
1687
    @note that one can NOT rely on table->in_use in store_lock().  It may
1688
    refer to a different thread if called from mysql_lock_abort_for_thread().
1689
1690
    @note If the table is MERGE, store_lock() can return less locks
1691
    than lock_count() claimed. This can happen when the MERGE children
1692
    are not attached when this is called from another thread.
1693
  */
1694
  virtual THR_LOCK_DATA **store_lock(THD *thd,
1695
                                     THR_LOCK_DATA **to,
1696
                                     enum thr_lock_type lock_type)=0;
1697
1698
  /** Type of table for caching query */
206 by Brian Aker
Removed final uint dead types.
1699
  virtual uint8_t table_cache_type() { return HA_CACHE_TBL_NONTRANSACT; }
1 by brian
clean slate
1700
1701
1702
  /**
1703
    @brief Register a named table with a call back function to the query cache.
1704
1705
    @param thd The thread handle
1706
    @param table_key A pointer to the table name in the table cache
1707
    @param key_length The length of the table name
1708
    @param[out] engine_callback The pointer to the storage engine call back
1709
      function
1710
    @param[out] engine_data Storage engine specific data which could be
1711
      anything
1712
1713
    This method offers the storage engine, the possibility to store a reference
1714
    to a table name which is going to be used with query cache. 
1715
    The method is called each time a statement is written to the cache and can
1716
    be used to verify if a specific statement is cachable. It also offers
1717
    the possibility to register a generic (but static) call back function which
1718
    is called each time a statement is matched against the query cache.
1719
1720
    @note If engine_data supplied with this function is different from
1721
      engine_data supplied with the callback function, and the callback returns
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1722
      false, a table invalidation on the current table will occur.
1 by brian
clean slate
1723
1724
    @return Upon success the engine_callback will point to the storage engine
1725
      call back function, if any, and engine_data will point to any storage
1726
      engine data used in the specific implementation.
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1727
      @retval true Success
1728
      @retval false The specified table or current statement should not be
1 by brian
clean slate
1729
        cached
1730
  */
1731
200 by Brian Aker
my_bool from handler and set_var
1732
  virtual bool
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1733
    register_query_cache_table(THD *thd __attribute__((unused)),
1734
                               char *table_key __attribute__((unused)),
1735
                               uint key_length __attribute__((unused)),
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1736
                               qc_engine_callback *engine_callback,
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1737
                               uint64_t *engine_data __attribute__((unused)))
1 by brian
clean slate
1738
  {
1739
    *engine_callback= 0;
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1740
    return true;
1 by brian
clean slate
1741
  }
1742
1743
1744
 /*
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1745
   @retval true   Primary key (if there is one) is clustered
1 by brian
clean slate
1746
                  key covering all fields
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1747
   @retval false  otherwise
1 by brian
clean slate
1748
 */
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1749
 virtual bool primary_key_is_clustered() { return false; }
1 by brian
clean slate
1750
 virtual int cmp_ref(const uchar *ref1, const uchar *ref2)
1751
 {
1752
   return memcmp(ref1, ref2, ref_length);
1753
 }
1754
1755
 /*
1756
   Condition pushdown to storage engines
1757
 */
1758
1759
 /**
1760
   Push condition down to the table handler.
1761
1762
   @param  cond   Condition to be pushed. The condition tree must not be
1763
                  modified by the by the caller.
1764
1765
   @return
1766
     The 'remainder' condition that caller must use to filter out records.
1767
     NULL means the handler will not return rows that do not match the
1768
     passed condition.
1769
1770
   @note
1771
   The pushed conditions form a stack (from which one can remove the
1772
   last pushed condition using cond_pop).
1773
   The table handler filters out rows using (pushed_cond1 AND pushed_cond2 
1774
   AND ... AND pushed_condN)
1775
   or less restrictive condition, depending on handler's capabilities.
1776
1777
   handler->ha_reset() call empties the condition stack.
1778
   Calls to rnd_init/rnd_end, index_init/index_end etc do not affect the
1779
   condition stack.
1780
 */ 
1781
 virtual const COND *cond_push(const COND *cond) { return cond; }
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1782
1 by brian
clean slate
1783
 /**
1784
   Pop the top condition from the condition stack of the handler instance.
1785
1786
   Pops the top if condition stack, if stack is not empty.
1787
 */
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1788
 virtual void cond_pop(void) { return; }
1 by brian
clean slate
1789
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1790
 virtual Item
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1791
   *idx_cond_push(uint keyno __attribute__((unused)),
1792
                  Item* idx_cond __attribute__((unused)))
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1793
 { return idx_cond; }
1 by brian
clean slate
1794
1795
 /*
1796
    Part of old fast alter table, to be depricated
1797
  */
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1798
 virtual bool
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1799
   check_if_incompatible_data(HA_CREATE_INFO *create_info __attribute__((unused)),
1800
                              uint table_changes __attribute__((unused)))
1 by brian
clean slate
1801
 { return COMPATIBLE_DATA_NO; }
1802
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1803
 /* On-line ALTER Table interface */
1 by brian
clean slate
1804
1805
 /**
1806
    Check if a storage engine supports a particular alter table on-line
1807
1808
    @param    altered_table     A temporary table show what table is to
1809
                                change to
1810
    @param    create_info       Information from the parsing phase about new
1811
                                table properties.
1812
    @param    alter_flags       Bitmask that shows what will be changed
1813
    @param    table_changes     Shows if table layout has changed (for
1814
                                backwards compatibility with
1815
                                check_if_incompatible_data
1816
1817
    @retval   HA_ALTER_ERROR                Unexpected error
1818
    @retval   HA_ALTER_SUPPORTED_WAIT_LOCK  Supported, but requires DDL lock
1819
    @retval   HA_ALTER_SUPPORTED_NO_LOCK    Supported
1820
    @retval   HA_ALTER_NOT_SUPPORTED        Not supported
1821
1822
    @note
1823
      The default implementation is implemented to support fast
1824
      alter table (storage engines that support some changes by
1825
      just changing the frm file) without any change in the handler
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1826
      implementation.
1 by brian
clean slate
1827
 */
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1828
 virtual int
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1829
   check_if_supported_alter(Table *altered_table __attribute__((unused)),
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1830
                            HA_CREATE_INFO *create_info,
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1831
                            HA_ALTER_FLAGS *alter_flags __attribute__((unused)),
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1832
                            uint table_changes)
1 by brian
clean slate
1833
 {
1834
   if (this->check_if_incompatible_data(create_info, table_changes)
1835
       == COMPATIBLE_DATA_NO)
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1836
     return(HA_ALTER_NOT_SUPPORTED);
1 by brian
clean slate
1837
   else
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
1838
     return(HA_ALTER_SUPPORTED_WAIT_LOCK);
1 by brian
clean slate
1839
 }
1840
 /**
1841
   Tell storage engine to prepare for the on-line alter table (pre-alter)
1842
1843
   @param     thd               The thread handle
1844
   @param     altered_table     A temporary table show what table is to
1845
                                change to
1846
   @param     alter_info        Storage place for data used during phase1
1847
                                and phase2
1848
   @param     alter_flags       Bitmask that shows what will be changed
1849
1850
   @retval   0      OK
1851
   @retval   error  error code passed from storage engine
1852
 */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1853
 virtual int alter_table_phase1(THD *thd __attribute__((unused)),
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1854
                                Table *altered_table __attribute__((unused)),
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1855
                                HA_CREATE_INFO *create_info __attribute__((unused)),
1856
                                HA_ALTER_INFO *alter_info __attribute__((unused)),
1857
                                HA_ALTER_FLAGS *alter_flags  __attribute__((unused)))
1 by brian
clean slate
1858
 {
1859
   return HA_ERR_UNSUPPORTED;
1860
 }
1861
 /**
1862
    Tell storage engine to perform the on-line alter table (alter)
1863
1864
    @param    thd               The thread handle
1865
    @param    altered_table     A temporary table show what table is to
1866
                                change to
1867
    @param    alter_info        Storage place for data used during phase1
1868
                                and phase2
1869
    @param    alter_flags       Bitmask that shows what will be changed
1870
1871
    @retval  0      OK
1872
    @retval  error  error code passed from storage engine
1873
1874
    @note
1875
      If check_if_supported_alter returns HA_ALTER_SUPPORTED_WAIT_LOCK
1876
      this call is to be wrapped with a DDL lock. This is currently NOT
1877
      supported.
1878
 */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1879
 virtual int alter_table_phase2(THD *thd  __attribute__((unused)),
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1880
                                Table *altered_table  __attribute__((unused)),
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1881
                                HA_CREATE_INFO *create_info __attribute__((unused)),
1882
                                HA_ALTER_INFO *alter_info __attribute__((unused)),
1883
                                HA_ALTER_FLAGS *alter_flags __attribute__((unused)))
1 by brian
clean slate
1884
 {
1885
   return HA_ERR_UNSUPPORTED;
1886
 }
1887
 /**
1888
    Tell storage engine that changed frm file is now on disk and table
1889
    has been re-opened (post-alter)
1890
1891
    @param    thd               The thread handle
1892
    @param    table             The altered table, re-opened
1893
 */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1894
 virtual int alter_table_phase3(THD *thd __attribute__((unused)),
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
1895
                                Table *table __attribute__((unused)))
1 by brian
clean slate
1896
 {
1897
   return HA_ERR_UNSUPPORTED;
1898
 }
1899
1900
  /**
1901
    use_hidden_primary_key() is called in case of an update/delete when
1902
    (table_flags() and HA_PRIMARY_KEY_REQUIRED_FOR_DELETE) is defined
1903
    but we don't have a primary key
1904
  */
1905
  virtual void use_hidden_primary_key();
1906
1907
  /**
1908
    Lock table.
1909
1910
    @param    thd                     Thread handle
1911
    @param    lock_type               HA_LOCK_IN_SHARE_MODE     (F_RDLCK)
1912
                                      HA_LOCK_IN_EXCLUSIVE_MODE (F_WRLCK)
1913
    @param    lock_timeout            -1 default timeout
1914
                                      0  no wait
1915
                                      >0 wait timeout in milliseconds.
1916
1917
   @note
1918
      lock_timeout >0 is not used by MySQL currently. If the storage
1919
      engine does not support NOWAIT (lock_timeout == 0) it should
1920
      return an error. But if it does not support WAIT X (lock_timeout
1921
      >0) it should treat it as lock_timeout == -1 and wait a default
1922
      (or even hard-coded) timeout.
1923
1924
    @retval HA_ERR_WRONG_COMMAND      Storage engine does not support
1925
                                      lock_table()
1926
    @retval HA_ERR_UNSUPPORTED        Storage engine does not support NOWAIT
1927
    @retval HA_ERR_LOCK_WAIT_TIMEOUT  Lock request timed out or
1928
                                      lock conflict with NOWAIT option
1929
    @retval HA_ERR_LOCK_DEADLOCK      Deadlock detected
1930
  */
1931
  virtual int lock_table(THD *thd         __attribute__((unused)),
1932
                         int lock_type    __attribute__((unused)),
1933
                         int lock_timeout __attribute__((unused)))
1934
  {
1935
    return HA_ERR_WRONG_COMMAND;
1936
  }
1937
1938
protected:
1939
  /* Service methods for use by storage engines. */
1940
  void ha_statistic_increment(ulong SSV::*offset) const;
1941
  void **ha_data(THD *) const;
1942
  THD *ha_thd(void) const;
1943
1944
  /**
1945
    Default rename_table() and delete_table() rename/delete files with a
1946
    given name and extensions from bas_ext().
1947
1948
    These methods can be overridden, but their default implementation
1949
    provide useful functionality.
1950
  */
1951
  virtual int rename_table(const char *from, const char *to);
1952
  /**
1953
    Delete a table in the engine. Called for base as well as temporary
1954
    tables.
1955
  */
1956
  virtual int delete_table(const char *name);
1957
1958
private:
1959
  /* Private helpers */
1960
  inline void mark_trx_read_write();
1961
private:
1962
  /*
1963
    Low-level primitives for storage engines.  These should be
1964
    overridden by the storage engine class. To call these methods, use
1965
    the corresponding 'ha_*' method above.
1966
  */
1967
1968
  virtual int open(const char *name, int mode, uint test_if_locked)=0;
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1969
  virtual int index_init(uint idx,
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
1970
                         bool sorted __attribute__((unused)))
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
1971
  { active_index= idx; return 0; }
1 by brian
clean slate
1972
  virtual int index_end() { active_index= MAX_KEY; return 0; }
1973
  /**
1974
    rnd_init() can be called two times without rnd_end() in between
1975
    (it only makes sense if scan=1).
1976
    then the second call should prepare for the new table scan (e.g
1977
    if rnd_init allocates the cursor, second call should position it
1978
    to the start of the table, no need to deallocate and allocate it again
1979
  */
1980
  virtual int rnd_init(bool scan)= 0;
1981
  virtual int rnd_end() { return 0; }
1982
  virtual int write_row(uchar *buf __attribute__((unused)))
1983
  {
1984
    return HA_ERR_WRONG_COMMAND;
1985
  }
1986
1987
  virtual int update_row(const uchar *old_data __attribute__((unused)),
1988
                         uchar *new_data __attribute__((unused)))
1989
  {
1990
    return HA_ERR_WRONG_COMMAND;
1991
  }
1992
1993
  virtual int delete_row(const uchar *buf __attribute__((unused)))
1994
  {
1995
    return HA_ERR_WRONG_COMMAND;
1996
  }
1997
  /**
1998
    Reset state of file to after 'open'.
1999
    This function is called after every statement for all tables used
2000
    by that statement.
2001
  */
2002
  virtual int reset() { return 0; }
2003
  virtual Table_flags table_flags(void) const= 0;
2004
2005
  /**
2006
    Is not invoked for non-transactional temporary tables.
2007
2008
    Tells the storage engine that we intend to read or write data
2009
    from the table. This call is prefixed with a call to handler::store_lock()
2010
    and is invoked only for those handler instances that stored the lock.
2011
2012
    Calls to rnd_init/index_init are prefixed with this call. When table
2013
    IO is complete, we call external_lock(F_UNLCK).
2014
    A storage engine writer should expect that each call to
2015
    ::external_lock(F_[RD|WR]LOCK is followed by a call to
2016
    ::external_lock(F_UNLCK). If it is not, it is a bug in MySQL.
2017
2018
    The name and signature originate from the first implementation
2019
    in MyISAM, which would call fcntl to set/clear an advisory
2020
    lock on the data file in this method.
2021
2022
    @param   lock_type    F_RDLCK, F_WRLCK, F_UNLCK
2023
2024
    @return  non-0 in case of failure, 0 in case of success.
2025
    When lock_type is F_UNLCK, the return value is ignored.
2026
  */
2027
  virtual int external_lock(THD *thd __attribute__((unused)),
2028
                            int lock_type __attribute__((unused)))
2029
  {
2030
    return 0;
2031
  }
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
2032
  virtual void release_auto_increment(void) { return; };
1 by brian
clean slate
2033
  /** admin commands - called from mysql_admin_table */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2034
  virtual int check_for_upgrade(HA_CHECK_OPT *check_opt __attribute__((unused)))
1 by brian
clean slate
2035
  { return 0; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2036
  virtual int check(THD* thd __attribute__((unused)),
2037
                    HA_CHECK_OPT* check_opt __attribute__((unused)))
1 by brian
clean slate
2038
  { return HA_ADMIN_NOT_IMPLEMENTED; }
2039
2040
  /**
2041
     In this method check_opt can be modified
2042
     to specify CHECK option to use to call check()
2043
     upon the table.
2044
  */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2045
  virtual int repair(THD* thd __attribute__((unused)),
2046
                     HA_CHECK_OPT* check_opt __attribute__((unused)))
1 by brian
clean slate
2047
  { return HA_ADMIN_NOT_IMPLEMENTED; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2048
  virtual void start_bulk_insert(ha_rows rows __attribute__((unused)))
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
2049
  {}
2050
  virtual int end_bulk_insert(void) { return 0; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2051
  virtual int index_read(uchar * buf __attribute__((unused)),
2052
                         const uchar * key __attribute__((unused)),
2053
                         uint key_len __attribute__((unused)),
2054
                         enum ha_rkey_function find_flag __attribute__((unused)))
1 by brian
clean slate
2055
   { return  HA_ERR_WRONG_COMMAND; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2056
  virtual int index_read_last(uchar * buf __attribute__((unused)),
2057
                              const uchar * key __attribute__((unused)),
2058
                              uint key_len __attribute__((unused)))
1 by brian
clean slate
2059
   { return (my_errno= HA_ERR_WRONG_COMMAND); }
2060
  /**
2061
    This method is similar to update_row, however the handler doesn't need
2062
    to execute the updates at this point in time. The handler can be certain
2063
    that another call to bulk_update_row will occur OR a call to
2064
    exec_bulk_update before the set of updates in this query is concluded.
2065
2066
    @param    old_data       Old record
2067
    @param    new_data       New record
2068
    @param    dup_key_found  Number of duplicate keys found
2069
2070
    @retval  0   Bulk delete used by handler
2071
    @retval  1   Bulk delete not used, normal operation used
2072
  */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2073
  virtual int bulk_update_row(const uchar *old_data __attribute__((unused)),
2074
                              uchar *new_data __attribute__((unused)),
2075
                              uint *dup_key_found __attribute__((unused)))
1 by brian
clean slate
2076
  {
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2077
    assert(false);
1 by brian
clean slate
2078
    return HA_ERR_WRONG_COMMAND;
2079
  }
2080
  /**
2081
    This is called to delete all rows in a table
2082
    If the handler don't support this, then this function will
2083
    return HA_ERR_WRONG_COMMAND and MySQL will delete the rows one
2084
    by one.
2085
  */
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
2086
  virtual int delete_all_rows(void)
1 by brian
clean slate
2087
  { return (my_errno=HA_ERR_WRONG_COMMAND); }
2088
  /**
2089
    Reset the auto-increment counter to the given value, i.e. the next row
2090
    inserted will get the given value. This is called e.g. after TRUNCATE
2091
    is emulated by doing a 'DELETE FROM t'. HA_ERR_WRONG_COMMAND is
2092
    returned by storage engines that don't support this operation.
2093
  */
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2094
  virtual int reset_auto_increment(uint64_t value __attribute__((unused)))
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
2095
  { return HA_ERR_WRONG_COMMAND; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2096
  virtual int optimize(THD* thd __attribute__((unused)),
2097
                       HA_CHECK_OPT* check_opt __attribute__((unused)))
2098
  { return HA_ADMIN_NOT_IMPLEMENTED; }
2099
  virtual int analyze(THD* thd __attribute__((unused)),
2100
                      HA_CHECK_OPT* check_opt __attribute__((unused)))
2101
  { return HA_ADMIN_NOT_IMPLEMENTED; }
2102
  virtual bool check_and_repair(THD *thd __attribute__((unused)))
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2103
  { return true; }
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2104
  virtual int disable_indexes(uint mode __attribute__((unused)))
2105
  { return HA_ERR_WRONG_COMMAND; }
2106
  virtual int enable_indexes(uint mode __attribute__((unused)))
2107
  { return HA_ERR_WRONG_COMMAND; }
2108
  virtual int discard_or_import_tablespace(bool discard __attribute__((unused)))
1 by brian
clean slate
2109
  { return (my_errno=HA_ERR_WRONG_COMMAND); }
53.2.32 by Monty Taylor
First large swath at getting handler stuff clean.
2110
  virtual void prepare_for_alter(void) { return; }
1 by brian
clean slate
2111
  virtual void drop_table(const char *name);
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2112
  virtual int create(const char *name __attribute__((unused)),
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
2113
                     Table *form __attribute__((unused)),
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2114
                     HA_CREATE_INFO *info __attribute__((unused)))=0;
1 by brian
clean slate
2115
212.1.3 by Monty Taylor
Renamed __attribute__((__unused__)) to __attribute__((unused)).
2116
  virtual int create_handler_files(const char *name __attribute__((unused)),
2117
                                   const char *old_name __attribute__((unused)),
2118
                                   int action_flag __attribute__((unused)),
2119
                                   HA_CREATE_INFO *info __attribute__((unused)))
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2120
  { return false; }
1 by brian
clean slate
2121
};
2122
2123
2124
2125
/**
2126
  A Disk-Sweep MRR interface implementation
2127
2128
  This implementation makes range (and, in the future, 'ref') scans to read
2129
  table rows in disk sweeps. 
2130
  
2131
  Currently it is used by MyISAM and InnoDB. Potentially it can be used with
2132
  any table handler that has non-clustered indexes and on-disk rows.
2133
*/
2134
2135
class DsMrr_impl
2136
{
2137
public:
2138
  typedef void (handler::*range_check_toggle_func_t)(bool on);
2139
2140
  DsMrr_impl()
2141
    : h2(NULL) {};
2142
2143
  handler *h; /* The "owner" handler object. It is used for scanning the index */
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
2144
  Table *table; /* Always equal to h->table */
1 by brian
clean slate
2145
private:
2146
  /*
2147
    Secondary handler object. It is used to retrieve full table rows by
2148
    calling rnd_pos().
2149
  */
2150
  handler *h2;
2151
2152
  /* Buffer to store rowids, or (rowid, range_id) pairs */
2153
  uchar *rowids_buf;
2154
  uchar *rowids_buf_cur;   /* Current position when reading/writing */
2155
  uchar *rowids_buf_last;  /* When reading: end of used buffer space */
2156
  uchar *rowids_buf_end;   /* End of the buffer */
2157
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2158
  bool dsmrr_eof; /* true <=> We have reached EOF when reading index tuples */
1 by brian
clean slate
2159
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2160
  /* true <=> need range association, buffer holds {rowid, range_id} pairs */
1 by brian
clean slate
2161
  bool is_mrr_assoc;
2162
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2163
  bool use_default_impl; /* true <=> shortcut all calls to default MRR impl */
1 by brian
clean slate
2164
public:
327.1.5 by Brian Aker
Refactor around classes. TABLE_LIST has been factored out of table.h
2165
  void init(handler *h_arg, Table *table_arg)
1 by brian
clean slate
2166
  {
2167
    h= h_arg; 
2168
    table= table_arg;
2169
  }
2170
  int dsmrr_init(handler *h, KEY *key, RANGE_SEQ_IF *seq_funcs, 
2171
                 void *seq_init_param, uint n_ranges, uint mode, 
2172
                 HANDLER_BUFFER *buf);
2173
  void dsmrr_close();
2174
  int dsmrr_fill_buffer(handler *h);
2175
  int dsmrr_next(handler *h, char **range_info);
2176
2177
  int dsmrr_info(uint keyno, uint n_ranges, uint keys, uint *bufsz,
2178
                 uint *flags, COST_VECT *cost);
2179
2180
  ha_rows dsmrr_info_const(uint keyno, RANGE_SEQ_IF *seq, 
2181
                            void *seq_init_param, uint n_ranges, uint *bufsz,
2182
                            uint *flags, COST_VECT *cost);
2183
private:
2184
  bool key_uses_partial_cols(uint keyno);
2185
  bool choose_mrr_impl(uint keyno, ha_rows rows, uint *flags, uint *bufsz, 
2186
                       COST_VECT *cost);
2187
  bool get_disk_sweep_mrr_cost(uint keynr, ha_rows rows, uint flags, 
2188
                               uint *buffer_size, COST_VECT *cost);
2189
};
2190
2191
extern const char *ha_row_type[];
2192
extern const char *tx_isolation_names[];
2193
extern const char *binlog_format_names[];
2194
extern TYPELIB tx_isolation_typelib;
2195
extern TYPELIB myisam_stats_method_typelib;
61 by Brian Aker
Conversion of handler type.
2196
extern uint32_t total_ha, total_ha_2pc;
1 by brian
clean slate
2197
2198
       /* Wrapper functions */
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2199
#define ha_commit(thd) (ha_commit_trans((thd), true))
2200
#define ha_rollback(thd) (ha_rollback_trans((thd), true))
1 by brian
clean slate
2201
2202
/* lookups */
2203
handlerton *ha_default_handlerton(THD *thd);
2204
plugin_ref ha_resolve_by_name(THD *thd, const LEX_STRING *name);
2205
plugin_ref ha_lock_engine(THD *thd, handlerton *hton);
2206
handlerton *ha_resolve_by_legacy_type(THD *thd, enum legacy_db_type db_type);
2207
handler *get_new_handler(TABLE_SHARE *share, MEM_ROOT *alloc,
2208
                         handlerton *db_type);
2209
handlerton *ha_checktype(THD *thd, enum legacy_db_type database_type,
2210
                          bool no_substitute, bool report_error);
2211
2212
2213
static inline enum legacy_db_type ha_legacy_type(const handlerton *db_type)
2214
{
2215
  return (db_type == NULL) ? DB_TYPE_UNKNOWN : db_type->db_type;
2216
}
2217
2218
static inline const char *ha_resolve_storage_engine_name(const handlerton *db_type)
2219
{
2220
  return db_type == NULL ? "UNKNOWN" : hton2plugin[db_type->slot]->name.str;
2221
}
2222
205 by Brian Aker
uint32 -> uin32_t
2223
static inline bool ha_check_storage_engine_flag(const handlerton *db_type, uint32_t flag)
1 by brian
clean slate
2224
{
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2225
  return db_type == NULL ? false : test(db_type->flags & flag);
1 by brian
clean slate
2226
}
2227
2228
static inline bool ha_storage_engine_is_enabled(const handlerton *db_type)
2229
{
2230
  return (db_type && db_type->create) ?
51.1.77 by Jay Pipes
Standardized TRUE/FALSE, removed/replaced DBUG symbols
2231
         (db_type->state == SHOW_OPTION_YES) : false;
1 by brian
clean slate
2232
}
2233
2234
/* basic stuff */
2235
int ha_init_errors(void);
2236
int ha_init(void);
2237
int ha_end(void);
2238
int ha_initialize_handlerton(st_plugin_int *plugin);
2239
int ha_finalize_handlerton(st_plugin_int *plugin);
2240
2241
TYPELIB *ha_known_exts(void);
2242
void ha_close_connection(THD* thd);
2243
bool ha_flush_logs(handlerton *db_type);
2244
void ha_drop_database(char* path);
2245
int ha_create_table(THD *thd, const char *path,
2246
                    const char *db, const char *table_name,
2247
                    HA_CREATE_INFO *create_info,
2248
                    bool update_create_info);
2249
int ha_delete_table(THD *thd, handlerton *db_type, const char *path,
2250
                    const char *db, const char *alias, bool generate_warning);
2251
2252
/* statistics and info */
2253
bool ha_show_status(THD *thd, handlerton *db_type, enum ha_stat_type stat);
2254
2255
/* discovery */
2256
int ha_create_table_from_engine(THD* thd, const char *db, const char *name);
2257
int ha_discover(THD* thd, const char* dbname, const char* name,
2258
                uchar** frmblob, size_t* frmlen);
2259
int ha_find_files(THD *thd,const char *db,const char *path,
2260
                  const char *wild, bool dir, List<LEX_STRING>* files);
2261
int ha_table_exists_in_engine(THD* thd, const char* db, const char* name);
2262
2263
/* key cache */
2264
extern "C" int ha_init_key_cache(const char *name, KEY_CACHE *key_cache);
2265
int ha_resize_key_cache(KEY_CACHE *key_cache);
2266
int ha_change_key_cache_param(KEY_CACHE *key_cache);
2267
int ha_change_key_cache(KEY_CACHE *old_key_cache, KEY_CACHE *new_key_cache);
2268
int ha_end_key_cache(KEY_CACHE *key_cache);
2269
2270
/* report to InnoDB that control passes to the client */
2271
int ha_release_temporary_latches(THD *thd);
2272
2273
/* transactions: interface to handlerton functions */
2274
int ha_start_consistent_snapshot(THD *thd);
2275
int ha_commit_or_rollback_by_xid(XID *xid, bool commit);
2276
int ha_commit_one_phase(THD *thd, bool all);
2277
int ha_rollback_trans(THD *thd, bool all);
2278
int ha_prepare(THD *thd);
2279
int ha_recover(HASH *commit_list);
2280
2281
/* transactions: these functions never call handlerton functions directly */
2282
int ha_commit_trans(THD *thd, bool all);
2283
int ha_autocommit_or_rollback(THD *thd, int error);
2284
int ha_enable_transaction(THD *thd, bool on);
2285
2286
/* savepoints */
2287
int ha_rollback_to_savepoint(THD *thd, SAVEPOINT *sv);
2288
int ha_savepoint(THD *thd, SAVEPOINT *sv);
2289
int ha_release_savepoint(THD *thd, SAVEPOINT *sv);
2290
2291
/* these are called by storage engines */
2292
void trans_register_ha(THD *thd, bool all, handlerton *ht);
2293
2294
/*
2295
  Storage engine has to assume the transaction will end up with 2pc if
2296
   - there is more than one 2pc-capable storage engine available
2297
   - in the current transaction 2pc was not disabled yet
2298
*/
2299
#define trans_need_2pc(thd, all)                   ((total_ha_2pc > 1) && \
2300
        !((all ? &thd->transaction.all : &thd->transaction.stmt)->no_2pc))
2301
2302
#ifdef HAVE_NDB_BINLOG
2303
int ha_reset_logs(THD *thd);
2304
int ha_binlog_index_purge_file(THD *thd, const char *file);
2305
void ha_reset_slave(THD *thd);
2306
void ha_binlog_log_query(THD *thd, handlerton *db_type,
2307
                         enum_binlog_command binlog_command,
2308
                         const char *query, uint query_length,
2309
                         const char *db, const char *table_name);
2310
void ha_binlog_wait(THD *thd);
2311
int ha_binlog_end(THD *thd);
2312
#else
2313
#define ha_reset_logs(a) do {} while (0)
2314
#define ha_binlog_index_purge_file(a,b) do {} while (0)
2315
#define ha_reset_slave(a) do {} while (0)
2316
#define ha_binlog_log_query(a,b,c,d,e,f,g) do {} while (0)
2317
#define ha_binlog_wait(a) do {} while (0)
2318
#define ha_binlog_end(a)  do {} while (0)
2319
#endif