2004-04-15 09:14:14 +02:00
|
|
|
/* Copyright (C) 2000-2003 MySQL AB
|
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
|
|
/*
|
|
|
|
This file defines the NDB Cluster handler: the interface between MySQL and
|
|
|
|
NDB Cluster
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* The class defining a handle to an NDB Cluster table */
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma interface /* gcc class implementation */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <ndbapi_limits.h>
|
|
|
|
|
|
|
|
class Ndb; // Forward declaration
|
|
|
|
class NdbOperation; // Forward declaration
|
|
|
|
class NdbConnection; // Forward declaration
|
|
|
|
class NdbRecAttr; // Forward declaration
|
|
|
|
class NdbResultSet; // Forward declaration
|
2004-06-11 13:49:22 +02:00
|
|
|
class NdbScanOperation;
|
|
|
|
class NdbIndexScanOperation;
|
2004-07-22 12:38:09 +02:00
|
|
|
class NdbBlob;
|
2004-04-15 09:14:14 +02:00
|
|
|
|
2004-08-20 18:10:47 +02:00
|
|
|
// connectstring to cluster if given by mysqld
|
|
|
|
extern const char *ndbcluster_connectstring;
|
2004-08-18 19:13:39 +02:00
|
|
|
|
2004-04-15 09:14:14 +02:00
|
|
|
typedef enum ndb_index_type {
|
|
|
|
UNDEFINED_INDEX = 0,
|
|
|
|
PRIMARY_KEY_INDEX = 1,
|
2004-05-24 12:35:39 +02:00
|
|
|
PRIMARY_KEY_ORDERED_INDEX = 2,
|
|
|
|
UNIQUE_INDEX = 3,
|
|
|
|
UNIQUE_ORDERED_INDEX = 4,
|
|
|
|
ORDERED_INDEX = 5
|
2004-04-15 09:14:14 +02:00
|
|
|
} NDB_INDEX_TYPE;
|
|
|
|
|
2004-08-18 19:13:39 +02:00
|
|
|
typedef struct ndb_index_data {
|
|
|
|
NDB_INDEX_TYPE type;
|
|
|
|
void *index;
|
|
|
|
void *unique_index;
|
|
|
|
} NDB_INDEX_DATA;
|
2004-04-15 09:14:14 +02:00
|
|
|
|
|
|
|
typedef struct st_ndbcluster_share {
|
|
|
|
THR_LOCK lock;
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
char *table_name;
|
|
|
|
uint table_name_length,use_count;
|
|
|
|
} NDB_SHARE;
|
|
|
|
|
2004-09-14 14:47:34 +02:00
|
|
|
/*
|
|
|
|
Place holder for ha_ndbcluster thread specific data
|
|
|
|
*/
|
|
|
|
|
|
|
|
class Thd_ndb {
|
|
|
|
public:
|
|
|
|
Thd_ndb();
|
|
|
|
~Thd_ndb();
|
|
|
|
Ndb *ndb;
|
|
|
|
ulong count;
|
|
|
|
uint lock_count;
|
2004-09-14 18:17:01 +02:00
|
|
|
int error;
|
2004-09-14 14:47:34 +02:00
|
|
|
};
|
|
|
|
|
2004-04-15 09:14:14 +02:00
|
|
|
class ha_ndbcluster: public handler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ha_ndbcluster(TABLE *table);
|
|
|
|
~ha_ndbcluster();
|
|
|
|
|
|
|
|
int open(const char *name, int mode, uint test_if_locked);
|
|
|
|
int close(void);
|
|
|
|
|
|
|
|
int write_row(byte *buf);
|
|
|
|
int update_row(const byte *old_data, byte *new_data);
|
|
|
|
int delete_row(const byte *buf);
|
|
|
|
int index_init(uint index);
|
|
|
|
int index_end();
|
|
|
|
int index_read(byte *buf, const byte *key, uint key_len,
|
|
|
|
enum ha_rkey_function find_flag);
|
|
|
|
int index_read_idx(byte *buf, uint index, const byte *key, uint key_len,
|
|
|
|
enum ha_rkey_function find_flag);
|
|
|
|
int index_next(byte *buf);
|
|
|
|
int index_prev(byte *buf);
|
|
|
|
int index_first(byte *buf);
|
|
|
|
int index_last(byte *buf);
|
2004-06-25 17:49:36 +02:00
|
|
|
int rnd_init(bool scan);
|
2004-04-15 09:14:14 +02:00
|
|
|
int rnd_end();
|
|
|
|
int rnd_next(byte *buf);
|
|
|
|
int rnd_pos(byte *buf, byte *pos);
|
|
|
|
void position(const byte *record);
|
2004-04-30 13:38:41 +02:00
|
|
|
int read_range_first(const key_range *start_key,
|
|
|
|
const key_range *end_key,
|
2004-05-24 12:35:39 +02:00
|
|
|
bool eq_range, bool sorted);
|
2004-09-07 16:22:42 +02:00
|
|
|
int read_range_first_to_buf(const key_range *start_key,
|
|
|
|
const key_range *end_key,
|
|
|
|
bool eq_range, bool sorted,
|
|
|
|
byte* buf);
|
2004-05-24 12:35:39 +02:00
|
|
|
int read_range_next();
|
2004-04-30 13:38:41 +02:00
|
|
|
|
2004-11-17 10:07:52 +01:00
|
|
|
/**
|
|
|
|
* Multi range stuff
|
|
|
|
*/
|
|
|
|
int read_multi_range_first(key_multi_range **found_range_p,
|
|
|
|
key_multi_range *ranges, uint range_count,
|
|
|
|
bool sorted, handler_buffer *buffer);
|
2004-11-26 15:15:22 +01:00
|
|
|
int read_multi_range_next(key_multi_range **found_range_p);
|
2004-11-17 10:07:52 +01:00
|
|
|
|
2004-05-24 12:35:39 +02:00
|
|
|
bool get_error_message(int error, String *buf);
|
2004-04-15 09:14:14 +02:00
|
|
|
void info(uint);
|
|
|
|
int extra(enum ha_extra_function operation);
|
|
|
|
int extra_opt(enum ha_extra_function operation, ulong cache_size);
|
|
|
|
int reset();
|
|
|
|
int external_lock(THD *thd, int lock_type);
|
|
|
|
int start_stmt(THD *thd);
|
2004-11-17 09:15:53 +01:00
|
|
|
const char * table_type() const;
|
2004-04-15 09:14:14 +02:00
|
|
|
const char ** bas_ext() const;
|
2004-11-17 09:15:53 +01:00
|
|
|
ulong table_flags(void) const;
|
2004-07-08 14:45:25 +02:00
|
|
|
ulong index_flags(uint idx, uint part, bool all_parts) const;
|
2004-11-17 09:15:53 +01:00
|
|
|
uint max_supported_record_length() const;
|
|
|
|
uint max_supported_keys() const;
|
|
|
|
uint max_supported_key_parts() const;
|
|
|
|
uint max_supported_key_length() const;
|
2004-04-15 09:14:14 +02:00
|
|
|
|
|
|
|
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);
|
|
|
|
THR_LOCK_DATA **store_lock(THD *thd,
|
|
|
|
THR_LOCK_DATA **to,
|
|
|
|
enum thr_lock_type lock_type);
|
|
|
|
|
2004-11-17 09:15:53 +01:00
|
|
|
bool low_byte_first() const;
|
|
|
|
bool has_transactions();
|
|
|
|
const char* index_type(uint key_number);
|
2004-04-15 09:14:14 +02:00
|
|
|
|
|
|
|
double scan_time();
|
2004-05-16 13:48:32 +02:00
|
|
|
ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
|
2004-04-29 14:38:35 +02:00
|
|
|
void start_bulk_insert(ha_rows rows);
|
|
|
|
int end_bulk_insert();
|
2004-04-15 09:14:14 +02:00
|
|
|
|
2004-09-14 14:47:34 +02:00
|
|
|
static Thd_ndb* seize_thd_ndb();
|
|
|
|
static void release_thd_ndb(Thd_ndb* thd_ndb);
|
2004-11-17 09:15:53 +01:00
|
|
|
uint8 table_cache_type();
|
2004-04-15 09:14:14 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
int alter_table_name(const char *from, const char *to);
|
|
|
|
int drop_table();
|
2004-04-30 12:25:31 +02:00
|
|
|
int create_index(const char *name, KEY *key_info, bool unique);
|
|
|
|
int create_ordered_index(const char *name, KEY *key_info);
|
|
|
|
int create_unique_index(const char *name, KEY *key_info);
|
2004-08-19 11:10:35 +02:00
|
|
|
int initialize_autoincrement(const void *table);
|
2004-08-19 11:51:06 +02:00
|
|
|
enum ILBP {ILBP_CREATE = 0, ILBP_OPEN = 1}; // Index List Build Phase
|
|
|
|
int build_index_list(TABLE *tab, enum ILBP phase);
|
2004-04-15 09:14:14 +02:00
|
|
|
int get_metadata(const char* path);
|
|
|
|
void release_metadata();
|
|
|
|
NDB_INDEX_TYPE get_index_type(uint idx_no) const;
|
|
|
|
NDB_INDEX_TYPE get_index_type_from_table(uint index_no) const;
|
2004-11-22 10:35:03 +01:00
|
|
|
int check_index_fields_not_null(uint index_no);
|
|
|
|
|
2004-07-22 18:35:51 +02:00
|
|
|
int pk_read(const byte *key, uint key_len, byte *buf);
|
|
|
|
int complemented_pk_read(const byte *old_data, byte *new_data);
|
2004-11-18 12:11:56 +01:00
|
|
|
int peek_row();
|
2004-04-15 09:14:14 +02:00
|
|
|
int unique_index_read(const byte *key, uint key_len,
|
|
|
|
byte *buf);
|
2004-04-30 13:38:41 +02:00
|
|
|
int ordered_index_scan(const key_range *start_key,
|
|
|
|
const key_range *end_key,
|
|
|
|
bool sorted, byte* buf);
|
2004-04-15 09:14:14 +02:00
|
|
|
int full_table_scan(byte * buf);
|
|
|
|
int next_result(byte *buf);
|
2004-05-10 14:12:28 +02:00
|
|
|
int define_read_attrs(byte* buf, NdbOperation* op);
|
2004-04-15 09:14:14 +02:00
|
|
|
int filtered_scan(const byte *key, uint key_len,
|
|
|
|
byte *buf,
|
|
|
|
enum ha_rkey_function find_flag);
|
2004-05-11 13:59:22 +02:00
|
|
|
int close_scan();
|
2004-04-15 09:14:14 +02:00
|
|
|
void unpack_record(byte *buf);
|
2004-07-22 12:38:09 +02:00
|
|
|
int get_ndb_lock_type(enum thr_lock_type type);
|
2004-04-15 09:14:14 +02:00
|
|
|
|
|
|
|
void set_dbname(const char *pathname);
|
|
|
|
void set_tabname(const char *pathname);
|
|
|
|
void set_tabname(const char *pathname, char *tabname);
|
|
|
|
|
|
|
|
bool set_hidden_key(NdbOperation*,
|
|
|
|
uint fieldnr, const byte* field_ptr);
|
|
|
|
int set_ndb_key(NdbOperation*, Field *field,
|
|
|
|
uint fieldnr, const byte* field_ptr);
|
2004-10-01 13:16:49 +02:00
|
|
|
int set_ndb_value(NdbOperation*, Field *field, uint fieldnr, bool *set_blob_value= 0);
|
2004-09-20 20:50:48 +02:00
|
|
|
int get_ndb_value(NdbOperation*, Field *field, uint fieldnr, byte*);
|
2004-07-29 10:44:53 +02:00
|
|
|
friend int g_get_ndb_blobs_value(NdbBlob *ndb_blob, void *arg);
|
2004-07-22 12:38:09 +02:00
|
|
|
int get_ndb_blobs_value(NdbBlob *last_ndb_blob);
|
2004-04-15 09:14:14 +02:00
|
|
|
int set_primary_key(NdbOperation *op, const byte *key);
|
|
|
|
int set_primary_key(NdbOperation *op);
|
2004-05-17 09:51:02 +02:00
|
|
|
int set_primary_key_from_old_data(NdbOperation *op, const byte *old_data);
|
2004-12-06 09:05:30 +01:00
|
|
|
int set_bounds(NdbIndexScanOperation*, const key_range *keys[2], uint= 0);
|
2004-04-15 09:14:14 +02:00
|
|
|
int key_cmp(uint keynr, const byte * old_row, const byte * new_row);
|
2004-11-30 13:37:03 +01:00
|
|
|
int set_index_key(NdbOperation *, const KEY *key_info, const byte *key_ptr);
|
2004-04-15 09:14:14 +02:00
|
|
|
void print_results();
|
|
|
|
|
2004-09-15 21:10:31 +02:00
|
|
|
ulonglong get_auto_increment();
|
2004-04-15 09:14:14 +02:00
|
|
|
int ndb_err(NdbConnection*);
|
2004-07-22 12:38:09 +02:00
|
|
|
bool uses_blob_value(bool all_fields);
|
2004-04-15 09:14:14 +02:00
|
|
|
|
2004-09-13 14:46:38 +02:00
|
|
|
int write_ndb_file();
|
|
|
|
|
2004-04-15 09:14:14 +02:00
|
|
|
private:
|
|
|
|
int check_ndb_connection();
|
|
|
|
|
|
|
|
NdbConnection *m_active_trans;
|
|
|
|
NdbResultSet *m_active_cursor;
|
|
|
|
Ndb *m_ndb;
|
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
new methods to keep "records" up to datecorrect record field in ndbcluster handler
new method for ndbcluster handler to store/retrieve table and thread specific data
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
hanged deleteKey to return ponter to deleted object
moved heavy global cache fetch from inline to separate method
mysql-test/r/ndb_alter_table.result:
correct record field in ndbcluster handler
mysql-test/r/ndb_blob.result:
correct record field in ndbcluster handler
ndb/include/ndbapi/NdbDictionary.hpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/DictCache.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/DictCache.hpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/Ndb.cpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbDictionary.cpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/NdbDictionaryImpl.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
moved heavy global cache fetch from inline to separate method
ndb/src/ndbapi/NdbDictionaryImpl.hpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbLinHash.hpp:
changed deleteKey to return ponter to deleted object
sql/ha_ndbcluster.cc:
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
sql/ha_ndbcluster.h:
new methods to keep "records" up to date
sql/sql_class.h:
moved all ndb thread specific data into new placeholder
2004-09-14 10:52:21 +02:00
|
|
|
void *m_table;
|
|
|
|
void *m_table_info;
|
2004-04-15 09:14:14 +02:00
|
|
|
char m_dbname[FN_HEADLEN];
|
|
|
|
//char m_schemaname[FN_HEADLEN];
|
|
|
|
char m_tabname[FN_HEADLEN];
|
|
|
|
ulong m_table_flags;
|
|
|
|
THR_LOCK_DATA m_lock;
|
|
|
|
NDB_SHARE *m_share;
|
2004-08-18 19:13:39 +02:00
|
|
|
NDB_INDEX_DATA m_index[MAX_KEY];
|
2004-07-22 12:38:09 +02:00
|
|
|
// NdbRecAttr has no reference to blob
|
2004-12-01 12:43:30 +01:00
|
|
|
typedef union { const NdbRecAttr *rec; NdbBlob *blob; void *ptr; } NdbValue;
|
2004-07-22 12:38:09 +02:00
|
|
|
NdbValue m_value[NDB_MAX_ATTRIBUTES_IN_TABLE];
|
2004-04-15 09:14:14 +02:00
|
|
|
bool m_use_write;
|
2004-11-18 12:11:56 +01:00
|
|
|
bool m_ignore_dup_key;
|
2004-11-03 15:53:26 +01:00
|
|
|
bool m_primary_key_update;
|
|
|
|
bool m_retrieve_all_fields;
|
2004-11-18 12:11:56 +01:00
|
|
|
bool m_retrieve_primary_key;
|
2004-11-03 15:53:26 +01:00
|
|
|
ha_rows m_rows_to_insert;
|
|
|
|
ha_rows m_rows_inserted;
|
|
|
|
ha_rows m_bulk_insert_rows;
|
|
|
|
bool m_bulk_insert_not_flushed;
|
|
|
|
ha_rows m_ops_pending;
|
|
|
|
bool m_skip_auto_increment;
|
|
|
|
bool m_blobs_pending;
|
2004-07-22 12:38:09 +02:00
|
|
|
// memory for blobs in one tuple
|
2004-11-03 15:53:26 +01:00
|
|
|
char *m_blobs_buffer;
|
|
|
|
uint32 m_blobs_buffer_size;
|
|
|
|
uint m_dupkey;
|
2004-11-22 14:41:46 +01:00
|
|
|
// set from thread variables at external lock
|
2004-11-17 09:15:53 +01:00
|
|
|
bool m_ha_not_exact_count;
|
|
|
|
bool m_force_send;
|
|
|
|
ha_rows m_autoincrement_prefetch;
|
|
|
|
bool m_transaction_on;
|
2004-11-22 14:41:46 +01:00
|
|
|
bool m_use_local_query_cache;
|
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
new methods to keep "records" up to datecorrect record field in ndbcluster handler
new method for ndbcluster handler to store/retrieve table and thread specific data
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
hanged deleteKey to return ponter to deleted object
moved heavy global cache fetch from inline to separate method
mysql-test/r/ndb_alter_table.result:
correct record field in ndbcluster handler
mysql-test/r/ndb_blob.result:
correct record field in ndbcluster handler
ndb/include/ndbapi/NdbDictionary.hpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/DictCache.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/DictCache.hpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/Ndb.cpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbDictionary.cpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/NdbDictionaryImpl.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
moved heavy global cache fetch from inline to separate method
ndb/src/ndbapi/NdbDictionaryImpl.hpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbLinHash.hpp:
changed deleteKey to return ponter to deleted object
sql/ha_ndbcluster.cc:
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
sql/ha_ndbcluster.h:
new methods to keep "records" up to date
sql/sql_class.h:
moved all ndb thread specific data into new placeholder
2004-09-14 10:52:21 +02:00
|
|
|
|
2004-11-17 10:07:52 +01:00
|
|
|
bool m_disable_multi_read;
|
|
|
|
byte* m_multi_range_result_ptr;
|
2004-11-26 15:15:22 +01:00
|
|
|
uint m_multi_range_defined_count;
|
2004-11-17 10:07:52 +01:00
|
|
|
const NdbOperation* m_current_multi_operation;
|
2004-12-01 12:43:30 +01:00
|
|
|
int setup_recattr(const NdbRecAttr*);
|
|
|
|
|
2004-09-20 21:03:09 +02:00
|
|
|
void set_rec_per_key();
|
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
new methods to keep "records" up to datecorrect record field in ndbcluster handler
new method for ndbcluster handler to store/retrieve table and thread specific data
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
hanged deleteKey to return ponter to deleted object
moved heavy global cache fetch from inline to separate method
mysql-test/r/ndb_alter_table.result:
correct record field in ndbcluster handler
mysql-test/r/ndb_blob.result:
correct record field in ndbcluster handler
ndb/include/ndbapi/NdbDictionary.hpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/DictCache.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/DictCache.hpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/Ndb.cpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbDictionary.cpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/NdbDictionaryImpl.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
moved heavy global cache fetch from inline to separate method
ndb/src/ndbapi/NdbDictionaryImpl.hpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbLinHash.hpp:
changed deleteKey to return ponter to deleted object
sql/ha_ndbcluster.cc:
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
sql/ha_ndbcluster.h:
new methods to keep "records" up to date
sql/sql_class.h:
moved all ndb thread specific data into new placeholder
2004-09-14 10:52:21 +02:00
|
|
|
void records_update();
|
2004-09-14 17:51:57 +02:00
|
|
|
void no_uncommitted_rows_execute_failure();
|
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
new methods to keep "records" up to datecorrect record field in ndbcluster handler
new method for ndbcluster handler to store/retrieve table and thread specific data
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
hanged deleteKey to return ponter to deleted object
moved heavy global cache fetch from inline to separate method
mysql-test/r/ndb_alter_table.result:
correct record field in ndbcluster handler
mysql-test/r/ndb_blob.result:
correct record field in ndbcluster handler
ndb/include/ndbapi/NdbDictionary.hpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/DictCache.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/DictCache.hpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
ndb/src/ndbapi/Ndb.cpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbDictionary.cpp:
new method for ndbcluster handler to store/retrieve table and thread specific data
ndb/src/ndbapi/NdbDictionaryImpl.cpp:
changed local hash to store new table_info object, with placeholders for local data, instead of TableImpl
moved heavy global cache fetch from inline to separate method
ndb/src/ndbapi/NdbDictionaryImpl.hpp:
replaced method DictionaryImpl::getTable with DictionaryImpl::get_local_table_info
ndb/src/ndbapi/NdbLinHash.hpp:
changed deleteKey to return ponter to deleted object
sql/ha_ndbcluster.cc:
moved all ndb thread specific data into new placeholder
new methods to keep "records" up to date
unset flag HA_NOT_EXACT_COUNT to make handler read "records" field, for count() optim and join optimization
sql/ha_ndbcluster.h:
new methods to keep "records" up to date
sql/sql_class.h:
moved all ndb thread specific data into new placeholder
2004-09-14 10:52:21 +02:00
|
|
|
void no_uncommitted_rows_update(int);
|
|
|
|
void no_uncommitted_rows_init(THD *);
|
|
|
|
void no_uncommitted_rows_reset(THD *);
|
2004-09-17 16:58:08 +02:00
|
|
|
|
|
|
|
friend int execute_no_commit(ha_ndbcluster*, NdbConnection*);
|
2004-11-17 09:15:53 +01:00
|
|
|
friend int execute_commit(ha_ndbcluster*, NdbConnection*);
|
|
|
|
friend int execute_no_commit_ie(ha_ndbcluster*, NdbConnection*);
|
2004-04-15 09:14:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
bool ndbcluster_init(void);
|
|
|
|
bool ndbcluster_end(void);
|
|
|
|
|
|
|
|
int ndbcluster_commit(THD *thd, void* ndb_transaction);
|
|
|
|
int ndbcluster_rollback(THD *thd, void* ndb_transaction);
|
|
|
|
|
|
|
|
void ndbcluster_close_connection(THD *thd);
|
|
|
|
|
2004-09-13 14:46:38 +02:00
|
|
|
int ndbcluster_discover(THD* thd, const char* dbname, const char* name,
|
2004-04-15 09:14:14 +02:00
|
|
|
const void** frmblob, uint* frmlen);
|
2004-09-21 12:13:58 +02:00
|
|
|
int ndbcluster_find_files(THD *thd,const char *db,const char *path,
|
2004-09-26 16:11:24 +02:00
|
|
|
const char *wild, bool dir, List<char> *files);
|
2004-09-13 14:46:38 +02:00
|
|
|
int ndbcluster_table_exists(THD* thd, const char *db, const char *name);
|
2004-04-15 09:14:14 +02:00
|
|
|
int ndbcluster_drop_database(const char* path);
|
|
|
|
|
2004-07-02 16:14:08 +02:00
|
|
|
void ndbcluster_print_error(int error, const NdbOperation *error_op);
|