mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 03:21:53 +01:00
Fix duplicate declaration in NDB cluster handler
sql/ha_ndbcluster.cc: Fix duplicate declaration
This commit is contained in:
parent
42210808fd
commit
4e2137fabf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue