diff options
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/ndbapi/NdbDictionaryImpl.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ndb/src/ndbapi/NdbDictionaryImpl.cpp b/ndb/src/ndbapi/NdbDictionaryImpl.cpp index d6d8fc5215f..a63aad930dd 100644 --- a/ndb/src/ndbapi/NdbDictionaryImpl.cpp +++ b/ndb/src/ndbapi/NdbDictionaryImpl.cpp @@ -1349,8 +1349,9 @@ NdbDictInterface::parseTableInfo(NdbTableImpl ** ret, if(tableDesc.FragmentDataLen > 0) { int i; - Uint32 fragCount = tableDesc.FragmentData[0]; - Uint32 replicaCount = tableDesc.FragmentData[1]; + Uint32 replicaCount = tableDesc.FragmentData[0]; + Uint32 fragCount = tableDesc.FragmentData[1]; + impl->m_replicaCount = replicaCount; impl->m_fragmentCount = fragCount; @@ -1359,9 +1360,6 @@ NdbDictInterface::parseTableInfo(NdbTableImpl ** ret, impl->m_fragments.push_back(tableDesc.FragmentData[i+2]); } - impl->m_replicaCount = replicaCount; - impl->m_fragmentCount = fragCount; - Uint32 topBit = (1 << 31); for(int i = 31; i>=0; i--){ if((fragCount & topBit) != 0) |