Commit 740d5243 authored by unknown's avatar unknown

Fix duplicate declaration in NDB cluster handler


sql/ha_ndbcluster.cc:
  Fix duplicate declaration
parent d45b272a
......@@ -403,7 +403,7 @@ int ha_ndbcluster::build_index_list()
DBUG_ENTER("build_index_list");
// 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);
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