diff options
author | unknown <mskold@mysql.com> | 2005-03-22 17:42:08 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2005-03-22 17:42:08 +0100 |
commit | 8d0393aae3118f99060e2c3dfeec837af0bc0171 (patch) | |
tree | 8baa66a0410052641ddc221d555d79208990b852 /sql/ha_ndbcluster.h | |
parent | 3a88de432160d0aa9bfb1cf6e8d3c4febd0eff71 (diff) | |
download | mariadb-git-8d0393aae3118f99060e2c3dfeec837af0bc0171.tar.gz |
Extra fix for perceived problem with fix for Bug #8753 Invalid schema object version after dropping index
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index 2261b56b071..9fab34448ce 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -156,7 +156,7 @@ class ha_ndbcluster: public handler int create_unique_index(const char *name, KEY *key_info); int initialize_autoincrement(const void *table); enum ILBP {ILBP_CREATE = 0, ILBP_OPEN = 1}; // Index List Build Phase - int build_index_list(TABLE *tab, enum ILBP phase); + int build_index_list(Ndb *ndb, TABLE *tab, enum ILBP phase); int get_metadata(const char* path); void release_metadata(); NDB_INDEX_TYPE get_index_type(uint idx_no) const; @@ -213,6 +213,7 @@ class ha_ndbcluster: public handler NdbConnection *m_active_trans; NdbResultSet *m_active_cursor; void *m_table; + int m_tableVersion; void *m_table_info; char m_dbname[FN_HEADLEN]; //char m_schemaname[FN_HEADLEN]; |