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>
|
|
|
|
#include <ndb_types.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;
|
|
|
|
const char * unique_name;
|
|
|
|
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;
|
|
|
|
|
|
|
|
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);
|
|
|
|
int read_range_next();
|
2004-04-30 13:38:41 +02: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);
|
|
|
|
const char * table_type() const { return("ndbcluster");}
|
|
|
|
const char ** bas_ext() const;
|
|
|
|
ulong table_flags(void) const { return m_table_flags; }
|
2004-07-08 14:45:25 +02:00
|
|
|
ulong index_flags(uint idx, uint part, bool all_parts) const;
|
2004-06-24 12:04:22 +02:00
|
|
|
uint max_supported_record_length() const { return NDB_MAX_TUPLE_SIZE; };
|
|
|
|
uint max_supported_keys() const { return MAX_KEY; }
|
|
|
|
uint max_supported_key_parts() const
|
|
|
|
{ return NDB_MAX_NO_OF_ATTRIBUTES_IN_KEY; };
|
|
|
|
uint max_supported_key_length() const { return NDB_MAX_KEY_SIZE;};
|
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);
|
|
|
|
|
|
|
|
bool low_byte_first() const
|
|
|
|
{
|
|
|
|
#ifdef WORDS_BIGENDIAN
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
return true;
|
|
|
|
#endif
|
|
|
|
}
|
2004-05-05 10:22:10 +02:00
|
|
|
bool has_transactions() { return true; }
|
2004-04-15 09:14:14 +02:00
|
|
|
|
|
|
|
const char* index_type(uint key_number) {
|
|
|
|
switch (get_index_type(key_number)) {
|
|
|
|
case ORDERED_INDEX:
|
2004-05-24 12:35:39 +02:00
|
|
|
case UNIQUE_ORDERED_INDEX:
|
|
|
|
case PRIMARY_KEY_ORDERED_INDEX:
|
2004-04-15 09:14:14 +02:00
|
|
|
return "BTREE";
|
|
|
|
case UNIQUE_INDEX:
|
|
|
|
case PRIMARY_KEY_INDEX:
|
|
|
|
default:
|
|
|
|
return "HASH";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
static Ndb* seize_ndb();
|
|
|
|
static void release_ndb(Ndb* ndb);
|
2004-05-05 10:22:10 +02:00
|
|
|
uint8 table_cache_type() { return HA_CACHE_TBL_NOCACHE; }
|
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();
|
|
|
|
const char* get_index_name(uint idx_no) const;
|
2004-04-30 12:25:31 +02:00
|
|
|
const char* get_unique_index_name(uint idx_no) const;
|
2004-04-15 09:14:14 +02:00
|
|
|
NDB_INDEX_TYPE get_index_type(uint idx_no) const;
|
|
|
|
NDB_INDEX_TYPE get_index_type_from_table(uint index_no) const;
|
|
|
|
|
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-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);
|
|
|
|
int set_ndb_value(NdbOperation*, Field *field, uint fieldnr);
|
2004-07-22 12:38:09 +02:00
|
|
|
int get_ndb_value(NdbOperation*, Field *field, uint fieldnr);
|
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-06-11 13:49:22 +02:00
|
|
|
int set_bounds(NdbIndexScanOperation *ndb_op, const key_range *key,
|
2004-04-30 13:38:41 +02:00
|
|
|
int bound);
|
2004-04-15 09:14:14 +02:00
|
|
|
int key_cmp(uint keynr, const byte * old_row, const byte * new_row);
|
|
|
|
void print_results();
|
|
|
|
|
|
|
|
longlong get_auto_increment();
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
typedef union { NdbRecAttr *rec; NdbBlob *blob; void *ptr; } NdbValue;
|
|
|
|
NdbValue m_value[NDB_MAX_ATTRIBUTES_IN_TABLE];
|
2004-04-15 09:14:14 +02:00
|
|
|
bool m_use_write;
|
2004-05-05 16:04:23 +02:00
|
|
|
bool retrieve_all_fields;
|
2004-04-29 14:38:35 +02:00
|
|
|
ha_rows rows_to_insert;
|
|
|
|
ha_rows rows_inserted;
|
|
|
|
ha_rows bulk_insert_rows;
|
2004-07-23 15:46:56 +02:00
|
|
|
bool bulk_insert_not_flushed;
|
2004-05-10 14:12:28 +02:00
|
|
|
ha_rows ops_pending;
|
2004-08-11 15:06:17 +02:00
|
|
|
bool skip_auto_increment;
|
2004-07-22 12:38:09 +02:00
|
|
|
bool blobs_pending;
|
|
|
|
// memory for blobs in one tuple
|
|
|
|
char *blobs_buffer;
|
|
|
|
uint32 blobs_buffer_size;
|
2004-08-31 12:07:48 +02:00
|
|
|
uint dupkey;
|
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();
|
|
|
|
void no_uncommitted_rows_update(int);
|
|
|
|
void no_uncommitted_rows_init(THD *);
|
|
|
|
void no_uncommitted_rows_reset(THD *);
|
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);
|
|
|
|
|
|
|
|
int ndbcluster_discover(const char* dbname, const char* name,
|
|
|
|
const void** frmblob, uint* frmlen);
|
|
|
|
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);
|