ha_ndbcluster.h 19.4 KB
Newer Older
1 2 3
#ifndef HA_NDBCLUSTER_INCLUDED
#define HA_NDBCLUSTER_INCLUDED

4
/* Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
unknown's avatar
unknown committed
5 6 7

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
unknown's avatar
unknown committed
8
   the Free Software Foundation; version 2 of the License.
unknown's avatar
unknown committed
9 10 11 12 13 14 15 16

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
Kent Boortz's avatar
Kent Boortz committed
17
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
unknown's avatar
unknown committed
18 19 20 21 22 23 24 25

/*
  This file defines the NDB Cluster handler: the interface between MySQL and
  NDB Cluster
*/

/* The class defining a handle to an NDB Cluster table */

26
#ifdef USE_PRAGMA_INTERFACE
unknown's avatar
unknown committed
27 28 29
#pragma interface                       /* gcc class implementation */
#endif

30 31 32
/* Blob tables and events are internal to NDB and must never be accessed */
#define IS_NDB_BLOB_PREFIX(A) is_prefix(A, "NDB$BLOB")

33
#include <NdbApi.hpp>
unknown's avatar
unknown committed
34 35
#include <ndbapi_limits.h>

36
#define NDB_HIDDEN_PRIMARY_KEY_LENGTH 8
unknown's avatar
unknown committed
37

Marc Alff's avatar
Marc Alff committed
38 39 40 41
#ifdef HAVE_PSI_INTERFACE
extern PSI_file_key key_file_ndb;
#endif /* HAVE_PSI_INTERFACE */

42

unknown's avatar
unknown committed
43 44
class Ndb;             // Forward declaration
class NdbOperation;    // Forward declaration
45
class NdbTransaction;  // Forward declaration
unknown's avatar
unknown committed
46
class NdbRecAttr;      // Forward declaration
unknown's avatar
unknown committed
47 48
class NdbScanOperation; 
class NdbIndexScanOperation; 
unknown's avatar
unknown committed
49
class NdbBlob;
50
class NdbIndexStat;
unknown's avatar
unknown committed
51
class NdbEventOperation;
unknown's avatar
unknown committed
52
class ha_ndbcluster_cond;
unknown's avatar
unknown committed
53

54 55
#include "sql_partition.h"                      /* part_id_range */

56 57
// connectstring to cluster if given by mysqld
extern const char *ndbcluster_connectstring;
58

unknown's avatar
unknown committed
59 60 61
typedef enum ndb_index_type {
  UNDEFINED_INDEX = 0,
  PRIMARY_KEY_INDEX = 1,
62 63 64 65
  PRIMARY_KEY_ORDERED_INDEX = 2,
  UNIQUE_INDEX = 3,
  UNIQUE_ORDERED_INDEX = 4,
  ORDERED_INDEX = 5
unknown's avatar
unknown committed
66 67
} NDB_INDEX_TYPE;

68 69
typedef enum ndb_index_status {
  UNDEFINED = 0,
70 71
  ACTIVE = 1,
  TO_BE_DROPPED = 2
72 73
} NDB_INDEX_STATUS;

74 75
typedef struct ndb_index_data {
  NDB_INDEX_TYPE type;
76
  NDB_INDEX_STATUS status;  
77 78
  const NdbDictionary::Index *index;
  const NdbDictionary::Index *unique_index;
79
  unsigned char *unique_index_attrid_map;
80
  bool null_in_unique_index;
81 82 83 84 85 86
  // In this version stats are not shared between threads
  NdbIndexStat* index_stat;
  uint index_stat_cache_entries;
  // Simple counter mechanism to decide when to connect to db
  uint index_stat_update_freq;
  uint index_stat_query_count;
87
} NDB_INDEX_DATA;
unknown's avatar
unknown committed
88

89 90 91 92 93 94
typedef enum ndb_write_op {
  NDB_INSERT = 0,
  NDB_UPDATE = 1,
  NDB_PK_UPDATE = 2
} NDB_WRITE_OP;

unknown's avatar
unknown committed
95 96
typedef union { const NdbRecAttr *rec; NdbBlob *blob; void *ptr; } NdbValue;

97
int get_ndb_blobs_value(TABLE* table, NdbValue* value_array,
98
                        uchar*& buffer, uint& buffer_size,
99 100
                        my_ptrdiff_t ptrdiff);

unknown's avatar
unknown committed
101 102
typedef enum {
  NSS_INITIAL= 0,
unknown's avatar
unknown committed
103 104
  NSS_DROPPED,
  NSS_ALTERED 
unknown's avatar
unknown committed
105 106
} NDB_SHARE_STATE;

unknown's avatar
unknown committed
107
typedef struct st_ndbcluster_share {
unknown's avatar
unknown committed
108
  NDB_SHARE_STATE state;
unknown's avatar
unknown committed
109
  MEM_ROOT mem_root;
unknown's avatar
unknown committed
110
  THR_LOCK lock;
Marc Alff's avatar
Marc Alff committed
111
  mysql_mutex_t mutex;
unknown's avatar
unknown committed
112 113 114 115
  char *key;
  uint key_length;
  THD *util_lock;
  uint use_count;
116
  uint commit_count_lock;
unknown's avatar
unknown committed
117
  ulonglong commit_count;
unknown's avatar
unknown committed
118 119
  char *db;
  char *table_name;
120
  Ndb::TupleIdRange tuple_id_range;
unknown's avatar
unknown committed
121
#ifdef HAVE_NDB_BINLOG
122
  uint32 connect_count;
unknown's avatar
unknown committed
123 124 125 126 127 128
  uint32 flags;
  NdbEventOperation *op;
  NdbEventOperation *op_old; // for rename table
  char *old_names; // for rename table
  TABLE_SHARE *table_share;
  TABLE *table;
129
  uchar *record[2]; // pointer to allocated records for receiving data
unknown's avatar
unknown committed
130 131 132
  NdbValue *ndb_value[2];
  MY_BITMAP *subscriber_bitmap;
#endif
unknown's avatar
unknown committed
133 134
} NDB_SHARE;

135 136 137 138 139
inline
NDB_SHARE_STATE
get_ndb_share_state(NDB_SHARE *share)
{
  NDB_SHARE_STATE state;
Marc Alff's avatar
Marc Alff committed
140
  mysql_mutex_lock(&share->mutex);
141
  state= share->state;
Marc Alff's avatar
Marc Alff committed
142
  mysql_mutex_unlock(&share->mutex);
143 144 145 146 147 148 149
  return state;
}

inline
void
set_ndb_share_state(NDB_SHARE *share, NDB_SHARE_STATE state)
{
Marc Alff's avatar
Marc Alff committed
150
  mysql_mutex_lock(&share->mutex);
151
  share->state= state;
Marc Alff's avatar
Marc Alff committed
152
  mysql_mutex_unlock(&share->mutex);
153 154
}

155 156 157 158
struct Ndb_tuple_id_range_guard {
  Ndb_tuple_id_range_guard(NDB_SHARE* _share) :
    share(_share),
    range(share->tuple_id_range) {
Marc Alff's avatar
Marc Alff committed
159
    mysql_mutex_lock(&share->mutex);
160 161
  }
  ~Ndb_tuple_id_range_guard() {
Marc Alff's avatar
Marc Alff committed
162
    mysql_mutex_unlock(&share->mutex);
163 164 165 166 167
  }
  NDB_SHARE* share;
  Ndb::TupleIdRange& range;
};

unknown's avatar
unknown committed
168 169 170
#ifdef HAVE_NDB_BINLOG
/* NDB_SHARE.flags */
#define NSF_HIDDEN_PK 1 /* table has hidden primary key */
171
#define NSF_BLOB_FLAG 2 /* table has blob attributes */
172
#define NSF_NO_BINLOG 4 /* table should not be binlogged */
unknown's avatar
unknown committed
173 174
#endif

175 176 177 178 179
typedef enum ndb_query_state_bits {
  NDB_QUERY_NORMAL = 0,
  NDB_QUERY_MULTI_READ_RANGE = 1
} NDB_QUERY_STATE_BITS;

180 181 182 183
/*
  Place holder for ha_ndbcluster thread specific data
*/

unknown's avatar
unknown committed
184 185 186 187 188
enum THD_NDB_OPTIONS
{
  TNO_NO_LOG_SCHEMA_OP= 1 << 0
};

189 190 191
enum THD_NDB_TRANS_OPTIONS
{
  TNTO_INJECTED_APPLY_STATUS= 1 << 0
192
  ,TNTO_NO_LOGGING=           1 << 1
193 194
};

195 196 197 198 199 200
struct Ndb_local_table_statistics {
  int no_uncommitted_rows_count;
  ulong last_count;
  ha_rows records;
};

201 202
class Thd_ndb 
{
203 204 205
 public:
  Thd_ndb();
  ~Thd_ndb();
206 207 208

  void init_open_tables();

209 210 211
  Ndb *ndb;
  ulong count;
  uint lock_count;
212 213
  uint start_stmt_count;
  NdbTransaction *trans;
214 215
  bool m_error;
  bool m_slow_path;
unknown's avatar
unknown committed
216 217
  int m_error_code;
  uint32 m_query_id; /* query id whn m_error_code was set */
unknown's avatar
unknown committed
218
  uint32 options;
219
  uint32 trans_options;
220
  List<NDB_SHARE> changed_tables;
221
  uint query_state;
222
  HASH open_tables;
223 224
};

unknown's avatar
unknown committed
225 226 227
class ha_ndbcluster: public handler
{
 public:
228
  ha_ndbcluster(handlerton *hton, TABLE_SHARE *table);
unknown's avatar
unknown committed
229 230
  ~ha_ndbcluster();

231
  int ha_initialise();
unknown's avatar
unknown committed
232 233 234
  int open(const char *name, int mode, uint test_if_locked);
  int close(void);

235 236 237
  int write_row(uchar *buf);
  int update_row(const uchar *old_data, uchar *new_data);
  int delete_row(const uchar *buf);
238
  int index_init(uint index, bool sorted);
unknown's avatar
unknown committed
239
  int index_end();
240
  int index_read(uchar *buf, const uchar *key, uint key_len, 
241
                 enum ha_rkey_function find_flag);
242 243 244 245 246
  int index_next(uchar *buf);
  int index_prev(uchar *buf);
  int index_first(uchar *buf);
  int index_last(uchar *buf);
  int index_read_last(uchar * buf, const uchar * key, uint key_len);
247
  int rnd_init(bool scan);
unknown's avatar
unknown committed
248
  int rnd_end();
249 250 251
  int rnd_next(uchar *buf);
  int rnd_pos(uchar *buf, uchar *pos);
  void position(const uchar *record);
252
  int read_range_first(const key_range *start_key,
253 254
                       const key_range *end_key,
                       bool eq_range, bool sorted);
255
  int read_range_first_to_buf(const key_range *start_key,
256 257
                              const key_range *end_key,
                              bool eq_range, bool sorted,
258
                              uchar* buf);
259
  int read_range_next();
unknown's avatar
unknown committed
260
  int alter_tablespace(st_alter_tablespace *info);
261

unknown's avatar
unknown committed
262 263 264
  /**
   * Multi range stuff
   */
265
  int read_multi_range_first(KEY_MULTI_RANGE **found_range_p,
266 267
                             KEY_MULTI_RANGE*ranges, uint range_count,
                             bool sorted, HANDLER_BUFFER *buffer);
268
  int read_multi_range_next(KEY_MULTI_RANGE **found_range_p);
269 270 271
  bool null_value_index_search(KEY_MULTI_RANGE *ranges,
			       KEY_MULTI_RANGE *end_range,
			       HANDLER_BUFFER *buffer);
unknown's avatar
unknown committed
272

273
  bool get_error_message(int error, String *buf);
274
  ha_rows records();
275 276
  ha_rows estimate_rows_upper_bound()
    { return HA_POS_ERROR; }
277
  int info(uint);
278
  void get_dynamic_partition_info(PARTITION_STATS *stat_info, uint part_id);
unknown's avatar
unknown committed
279 280
  int extra(enum ha_extra_function operation);
  int extra_opt(enum ha_extra_function operation, ulong cache_size);
281
  int reset();
unknown's avatar
unknown committed
282
  int external_lock(THD *thd, int lock_type);
283
  void unlock_row();
unknown's avatar
unknown committed
284
  int start_stmt(THD *thd, thr_lock_type lock_type);
unknown's avatar
unknown committed
285
  void print_error(int error, myf errflag);
286
  const char * table_type() const;
unknown's avatar
unknown committed
287
  const char ** bas_ext() const;
288
  ulonglong table_flags(void) const;
289
  void prepare_for_alter();
290 291 292
  int add_index(TABLE *table_arg, KEY *key_info, uint num_of_keys);
  int prepare_drop_index(TABLE *table_arg, uint *key_num, uint num_of_keys);
  int final_drop_index(TABLE *table_arg);
293
  void set_part_info(partition_info *part_info);
294
  ulong index_flags(uint idx, uint part, bool all_parts) const;
295 296 297 298
  uint max_supported_record_length() const;
  uint max_supported_keys() const;
  uint max_supported_key_parts() const;
  uint max_supported_key_length() const;
unknown's avatar
unknown committed
299
  uint max_supported_key_part_length() const;
unknown's avatar
unknown committed
300 301 302 303

  int rename_table(const char *from, const char *to);
  int delete_table(const char *name);
  int create(const char *name, TABLE *form, HA_CREATE_INFO *info);
304
  int create_handler_files(const char *file, const char *old_name,
305
                           int action_flag, HA_CREATE_INFO *info);
306
  int get_default_no_partitions(HA_CREATE_INFO *info);
unknown's avatar
unknown committed
307 308
  bool get_no_parts(const char *name, uint *no_parts);
  void set_auto_partitions(partition_info *part_info);
unknown's avatar
unknown committed
309
  virtual bool is_fatal_error(int error, uint flags)
310
  {
311 312
    if (!handler::is_fatal_error(error, flags) ||
        error == HA_ERR_NO_PARTITION_FOUND)
313 314 315
      return FALSE;
    return TRUE;
  }
unknown's avatar
unknown committed
316

unknown's avatar
unknown committed
317
  THR_LOCK_DATA **store_lock(THD *thd,
318 319
                             THR_LOCK_DATA **to,
                             enum thr_lock_type lock_type);
unknown's avatar
unknown committed
320

321
  bool low_byte_first() const;
unknown's avatar
unknown committed
322

323
  const char* index_type(uint key_number);
unknown's avatar
unknown committed
324 325

  double scan_time();
unknown's avatar
unknown committed
326
  ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
327 328
  void start_bulk_insert(ha_rows rows);
  int end_bulk_insert();
unknown's avatar
unknown committed
329

330 331
  static Thd_ndb* seize_thd_ndb();
  static void release_thd_ndb(Thd_ndb* thd_ndb);
unknown's avatar
unknown committed
332
 
unknown's avatar
Merge  
unknown committed
333 334 335
static void set_dbname(const char *pathname, char *dbname);
static void set_tabname(const char *pathname, char *tabname);

unknown's avatar
unknown committed
336 337 338
  /*
    Condition pushdown
  */
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356

 /*
   Push condition down to the table handler.
   SYNOPSIS
     cond_push()
     cond   Condition to be pushed. The condition tree must not be
     modified by the by the caller.
   RETURN
     The 'remainder' condition that caller must use to filter out records.
     NULL means the handler will not return rows that do not match the
     passed condition.
   NOTES
   The pushed conditions form a stack (from which one can remove the
   last pushed condition using cond_pop).
   The table handler filters out rows using (pushed_cond1 AND pushed_cond2 
   AND ... AND pushed_condN)
   or less restrictive condition, depending on handler's capabilities.
   
357
   handler->reset() call empties the condition stack.
358 359 360 361 362 363 364 365
   Calls to rnd_init/rnd_end, index_init/index_end etc do not affect the  
   condition stack.
   The current implementation supports arbitrary AND/OR nested conditions
   with comparisons between columns and constants (including constant
   expressions and function calls) and the following comparison operators:
   =, !=, >, >=, <, <=, like, "not like", "is null", and "is not null". 
   Negated conditions are supported by NOT which generate NAND/NOR groups.
 */ 
unknown's avatar
unknown committed
366
  const COND *cond_push(const COND *cond);
367 368 369 370 371 372
 /*
   Pop the top condition from the condition stack of the handler instance.
   SYNOPSIS
     cond_pop()
     Pops the top if condition stack, if stack is not empty
 */
unknown's avatar
unknown committed
373 374
  void cond_pop();

375
  uint8 table_cache_type();
376 377 378 379

  /*
   * Internal to ha_ndbcluster, used by C functions
   */
380
  int ndb_err(NdbTransaction*);
381

unknown's avatar
unknown committed
382
  my_bool register_query_cache_table(THD *thd, char *table_key,
383 384 385
                                     uint key_length,
                                     qc_engine_callback *engine_callback,
                                     ulonglong *engine_data);
unknown's avatar
unknown committed
386

unknown's avatar
unknown committed
387 388
  bool check_if_incompatible_data(HA_CREATE_INFO *info,
				  uint table_changes);
unknown's avatar
unknown committed
389

unknown's avatar
unknown committed
390
private:
391
  int loc_read_multi_range_next(KEY_MULTI_RANGE **found_range_p);
392
  friend int ndbcluster_drop_database_impl(const char *path);
393 394 395 396
  friend int ndb_handle_schema_change(THD *thd, 
                                      Ndb *ndb, NdbEventOperation *pOp,
                                      NDB_SHARE *share);

unknown's avatar
unknown committed
397 398 399 400
  static int delete_table(ha_ndbcluster *h, Ndb *ndb,
			  const char *path,
			  const char *db,
			  const char *table_name);
401
  int create_ndb_index(const char *name, KEY *key_info, bool unique);
402 403
  int create_ordered_index(const char *name, KEY *key_info);
  int create_unique_index(const char *name, KEY *key_info);
404 405 406 407
  int create_index(const char *name, KEY *key_info, 
                   NDB_INDEX_TYPE idx_type, uint idx_no);
// Index list management
  int create_indexes(Ndb *ndb, TABLE *tab);
408
  int open_indexes(Ndb *ndb, TABLE *tab, bool ignore_error);
409
  void renumber_indexes(Ndb *ndb, TABLE *tab);
410 411 412
  int drop_indexes(Ndb *ndb, TABLE *tab);
  int add_index_handle(THD *thd, NdbDictionary::Dictionary *dict,
                       KEY *key_info, const char *index_name, uint index_no);
unknown's avatar
unknown committed
413
  int get_metadata(const char* path);
414
  void release_metadata(THD *thd, Ndb *ndb);
unknown's avatar
unknown committed
415 416
  NDB_INDEX_TYPE get_index_type(uint idx_no) const;
  NDB_INDEX_TYPE get_index_type_from_table(uint index_no) const;
417 418
  NDB_INDEX_TYPE get_index_type_from_key(uint index_no, KEY *key_info, 
                                         bool primary) const;
419 420
  bool has_null_in_unique_index(uint idx_no) const;
  bool check_index_fields_not_null(KEY *key_info);
421

422 423 424
  uint set_up_partition_info(partition_info *part_info,
                             TABLE *table,
                             void *tab);
425
  char* get_tablespace_name(THD *thd, char *name, uint name_len);
unknown's avatar
unknown committed
426 427
  int set_range_data(void *tab, partition_info* part_info);
  int set_list_data(void *tab, partition_info* part_info);
428
  int complemented_read(const uchar *old_data, uchar *new_data,
429
                        uint32 old_part_id);
430
  int pk_read(const uchar *key, uint key_len, uchar *buf, uint32 part_id);
431
  int ordered_index_scan(const key_range *start_key,
432
                         const key_range *end_key,
433
                         bool sorted, bool descending, uchar* buf,
434
                         part_id_range *part_spec);
435 436
  int unique_index_read(const uchar *key, uint key_len, 
                        uchar *buf);
437
  int unique_index_scan(const KEY* key_info, 
438
			const uchar *key, 
439
			uint key_len,
440 441
			uchar *buf);
  int full_table_scan(uchar * buf);
442

443 444 445 446
  bool check_all_operations_for_error(NdbTransaction *trans,
                                      const NdbOperation *first,
                                      const NdbOperation *last,
                                      uint errcode);
447
  int peek_indexed_rows(const uchar *record, NDB_WRITE_OP write_op);
unknown's avatar
unknown committed
448
  int fetch_next(NdbScanOperation* op);
unknown's avatar
unknown committed
449
  int set_auto_inc(Field *field);
450 451 452 453
  int next_result(uchar *buf); 
  int define_read_attrs(uchar* buf, NdbOperation* op);
  int filtered_scan(const uchar *key, uint key_len, 
                    uchar *buf,
454
                    enum ha_rkey_function find_flag);
455
  int close_scan();
456
  void unpack_record(uchar *buf);
unknown's avatar
unknown committed
457
  int get_ndb_lock_type(enum thr_lock_type type);
unknown's avatar
unknown committed
458 459 460 461 462

  void set_dbname(const char *pathname);
  void set_tabname(const char *pathname);

  bool set_hidden_key(NdbOperation*,
463
                      uint fieldnr, const uchar* field_ptr);
unknown's avatar
unknown committed
464
  int set_ndb_key(NdbOperation*, Field *field,
465
                  uint fieldnr, const uchar* field_ptr);
unknown's avatar
unknown committed
466 467
  int set_ndb_value(NdbOperation*, Field *field, uint fieldnr,
		    int row_offset= 0, bool *set_blob_value= 0);
468
  int get_ndb_value(NdbOperation*, Field *field, uint fieldnr, uchar*);
unknown's avatar
unknown committed
469
  int get_ndb_partition_id(NdbOperation *);
unknown's avatar
unknown committed
470
  friend int g_get_ndb_blobs_value(NdbBlob *ndb_blob, void *arg);
471 472
  int set_primary_key(NdbOperation *op, const uchar *key);
  int set_primary_key_from_record(NdbOperation *op, const uchar *record);
473
  bool check_index_fields_in_write_set(uint keyno);
474
  int set_index_key_from_record(NdbOperation *op, const uchar *record,
475
                                uint keyno);
476 477
  int set_bounds(NdbIndexScanOperation*, uint inx, bool rir,
                 const key_range *keys[2], uint= 0);
478 479
  int key_cmp(uint keynr, const uchar * old_row, const uchar * new_row);
  int set_index_key(NdbOperation *, const KEY *key_info, const uchar *key_ptr);
unknown's avatar
unknown committed
480 481
  void print_results();

482 483 484 485
  virtual void get_auto_increment(ulonglong offset, ulonglong increment,
                                  ulonglong nb_desired_values,
                                  ulonglong *first_value,
                                  ulonglong *nb_reserved_values);
486
  bool uses_blob_value();
unknown's avatar
unknown committed
487

unknown's avatar
unknown committed
488 489
  char *update_table_comment(const char * comment);

unknown's avatar
unknown committed
490
  int write_ndb_file(const char *name);
491

492
  int check_ndb_connection(THD* thd= current_thd);
unknown's avatar
unknown committed
493

unknown's avatar
unknown committed
494
  void set_rec_per_key();
495
  int records_update();
unknown's avatar
unknown committed
496 497 498 499
  void no_uncommitted_rows_execute_failure();
  void no_uncommitted_rows_update(int);
  void no_uncommitted_rows_reset(THD *);

500 501
  void release_completed_operations(NdbTransaction*, bool);

unknown's avatar
unknown committed
502
  friend int execute_commit(ha_ndbcluster*, NdbTransaction*);
unknown's avatar
unknown committed
503
  friend int execute_no_commit_ignore_no_key(ha_ndbcluster*, NdbTransaction*);
504 505
  friend int execute_no_commit(ha_ndbcluster*, NdbTransaction*, bool);
  friend int execute_no_commit_ie(ha_ndbcluster*, NdbTransaction*, bool);
unknown's avatar
unknown committed
506

507 508 509 510
  void transaction_checks(THD *thd);
  int start_statement(THD *thd, Thd_ndb *thd_ndb, Ndb* ndb);
  int init_handler_for_statement(THD *thd, Thd_ndb *thd_ndb);

511
  NdbTransaction *m_active_trans;
unknown's avatar
unknown committed
512
  NdbScanOperation *m_active_cursor;
513
  const NdbDictionary::Table *m_table;
514
  struct Ndb_local_table_statistics *m_table_info;
515
  struct Ndb_local_table_statistics m_table_info_instance;
unknown's avatar
unknown committed
516 517 518
  char m_dbname[FN_HEADLEN];
  //char m_schemaname[FN_HEADLEN];
  char m_tabname[FN_HEADLEN];
unknown's avatar
unknown committed
519
  ulonglong m_table_flags;
unknown's avatar
unknown committed
520
  THR_LOCK_DATA m_lock;
521
  bool m_lock_tuple;
unknown's avatar
unknown committed
522
  NDB_SHARE *m_share;
523
  NDB_INDEX_DATA  m_index[MAX_KEY];
unknown's avatar
unknown committed
524 525
  // NdbRecAttr has no reference to blob
  NdbValue m_value[NDB_MAX_ATTRIBUTES_IN_TABLE];
526
  uchar m_ref[NDB_HIDDEN_PRIMARY_KEY_LENGTH];
527
  partition_info *m_part_info;
528
  uint32 m_part_id;
529
  uchar *m_rec0;
530 531 532
  Field **m_part_field_array;
  bool m_use_partition_function;
  bool m_sorted;
unknown's avatar
unknown committed
533
  bool m_use_write;
534
  bool m_ignore_dup_key;
535
  bool m_has_unique_index;
536
  bool m_primary_key_update;
537
  bool m_write_op;
unknown's avatar
unknown committed
538
  bool m_ignore_no_key;
539
  ha_rows m_rows_to_insert; // TODO: merge it with handler::estimation_rows_to_insert?
540 541
  ha_rows m_rows_inserted;
  ha_rows m_bulk_insert_rows;
542
  ha_rows m_rows_changed;
543
  bool m_bulk_insert_not_flushed;
544 545
  bool m_delete_cannot_batch;
  bool m_update_cannot_batch;
546 547 548
  ha_rows m_ops_pending;
  bool m_skip_auto_increment;
  bool m_blobs_pending;
549
  bool m_slow_path;
550
  my_ptrdiff_t m_blobs_offset;
unknown's avatar
unknown committed
551
  // memory for blobs in one tuple
552
  uchar *m_blobs_buffer;
553 554
  uint32 m_blobs_buffer_size;
  uint m_dupkey;
unknown's avatar
unknown committed
555
  // set from thread variables at external lock
556 557 558 559
  bool m_ha_not_exact_count;
  bool m_force_send;
  ha_rows m_autoincrement_prefetch;
  bool m_transaction_on;
unknown's avatar
unknown committed
560

unknown's avatar
unknown committed
561
  ha_ndbcluster_cond *m_cond;
unknown's avatar
unknown committed
562
  bool m_disable_multi_read;
563
  uchar *m_multi_range_result_ptr;
564 565
  KEY_MULTI_RANGE *m_multi_ranges;
  KEY_MULTI_RANGE *m_multi_range_defined;
unknown's avatar
unknown committed
566 567
  const NdbOperation *m_current_multi_operation;
  NdbIndexScanOperation *m_multi_cursor;
568
  uchar *m_multi_range_cursor_result_ptr;
569
  int setup_recattr(const NdbRecAttr*);
570
  Ndb *get_ndb();
unknown's avatar
unknown committed
571 572
};

unknown's avatar
unknown committed
573
extern SHOW_VAR ndb_status_variables[];
574

575
int ndbcluster_discover(THD* thd, const char* dbname, const char* name,
576
                        const void** frmblob, uint* frmlen);
577
int ndbcluster_find_files(THD *thd,const char *db,const char *path,
578
                          const char *wild, bool dir, List<LEX_STRING> *files);
579 580
int ndbcluster_table_exists_in_engine(THD* thd,
                                      const char *db, const char *name);
581
void ndbcluster_print_error(int error, const NdbOperation *error_op);
unknown's avatar
unknown committed
582 583 584

static const char ndbcluster_hton_name[]= "ndbcluster";
static const int ndbcluster_hton_name_length=sizeof(ndbcluster_hton_name)-1;
585 586
extern int ndbcluster_terminating;
extern int ndb_util_thread_running;
Marc Alff's avatar
Marc Alff committed
587
extern mysql_cond_t COND_ndb_util_ready;
588 589

#endif /* HA_NDBCLUSTER_INCLUDED */