Commit 4e2137fa authored by unknown's avatar unknown

Fix duplicate declaration in NDB cluster handler


sql/ha_ndbcluster.cc:
  Fix duplicate declaration
parent 42210808
...@@ -403,7 +403,7 @@ int ha_ndbcluster::build_index_list() ...@@ -403,7 +403,7 @@ int ha_ndbcluster::build_index_list()
DBUG_ENTER("build_index_list"); DBUG_ENTER("build_index_list");
// Save information about all known indexes // Save information about all known indexes
for (uint i= 0; i < table->keys; i++) for (i= 0; i < table->keys; i++)
{ {
NDB_INDEX_TYPE idx_type= get_index_type_from_table(i); NDB_INDEX_TYPE idx_type= get_index_type_from_table(i);
m_indextype[i]= idx_type; m_indextype[i]= idx_type;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment