mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Removed dead code that had been commented out
This commit is contained in:
parent
f982aa934a
commit
445e828785
2 changed files with 1 additions and 2 deletions
|
@ -2147,7 +2147,7 @@ NdbDictionaryImpl::dropIndex(const char * indexName,
|
|||
m_error.code = 4243;
|
||||
return -1;
|
||||
}
|
||||
int ret = dropIndex(*idx); //, tableName);
|
||||
int ret = dropIndex(*idx);
|
||||
// If index stored in cache is incompatible with the one in the kernel
|
||||
// we must clear the cache and try again
|
||||
if (ret == INCOMPATIBLE_VERSION) {
|
||||
|
|
|
@ -379,7 +379,6 @@ public:
|
|||
int createIndex(NdbIndexImpl &ix);
|
||||
int dropIndex(const char * indexName,
|
||||
const char * tableName);
|
||||
// int dropIndex(NdbIndexImpl &, const char * tableName);
|
||||
int dropIndex(NdbIndexImpl &);
|
||||
NdbTableImpl * getIndexTable(NdbIndexImpl * index,
|
||||
NdbTableImpl * table);
|
||||
|
|
Loading…
Reference in a new issue