summaryrefslogtreecommitdiff
path: root/sql/ha_ndbcluster.h
diff options
context:
space:
mode:
authorunknown <magnus@shellback.(none)>2004-09-25 14:35:27 +0200
committerunknown <magnus@shellback.(none)>2004-09-25 14:35:27 +0200
commitb9a10e27611f4598f51ed1ea768616a73d3dd225 (patch)
tree5697d50458a5fd62217e52398e01596010a6cc24 /sql/ha_ndbcluster.h
parent300346fad3379f3b95d5b30c7f23bc5b9b7c2900 (diff)
downloadmariadb-git-b9a10e27611f4598f51ed1ea768616a73d3dd225.tar.gz
Clean up of index_name and unique_index_name
sql/ha_ndbcluster.cc: No need to save the name of the unique index, its only used within the same function Removed unused variables and functions retrieving index_name sql/ha_ndbcluster.h: Remove unused varaibale unique_name as well as teh function get_index_name and get_unique_index_name BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r--sql/ha_ndbcluster.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h
index eb4556a606b..eb51aa6aaf1 100644
--- a/sql/ha_ndbcluster.h
+++ b/sql/ha_ndbcluster.h
@@ -52,7 +52,6 @@ typedef enum ndb_index_type {
typedef struct ndb_index_data {
NDB_INDEX_TYPE type;
void *index;
- const char * unique_name;
void *unique_index;
} NDB_INDEX_DATA;
@@ -180,8 +179,6 @@ class ha_ndbcluster: public handler
int build_index_list(TABLE *tab, enum ILBP phase);
int get_metadata(const char* path);
void release_metadata();
- const char* get_index_name(uint idx_no) const;
- const char* get_unique_index_name(uint idx_no) const;
NDB_INDEX_TYPE get_index_type(uint idx_no) const;
NDB_INDEX_TYPE get_index_type_from_table(uint index_no) const;