summaryrefslogtreecommitdiff
path: root/ndb/tools
diff options
context:
space:
mode:
authorunknown <joreland@mysql.com>2004-12-15 12:17:29 +0100
committerunknown <joreland@mysql.com>2004-12-15 12:17:29 +0100
commit7a7ac8f63ad6e1ba7f74ac2c85bcb4b8df3b16ee (patch)
tree8f8ef3c5d39e80205ba1a01e1f1cc4c8e9dcc7cb /ndb/tools
parent09206a941d0aecbcef78c844de04fac377f43a26 (diff)
downloadmariadb-git-7a7ac8f63ad6e1ba7f74ac2c85bcb4b8df3b16ee.tar.gz
wl2240 - ndb - scan only 1 fragment if possible
ndb/src/common/debugger/signaldata/ScanTab.cpp: Fix printout ndb/src/ndbapi/NdbDictionaryImpl.cpp: Set distribution key for ordered indexes ndb/src/ndbapi/NdbDictionaryImpl.hpp: Allow create_index_object to modify index_table ndb/tools/restore/consumer_restore.cpp: Allow create_index_object to modify index_table
Diffstat (limited to 'ndb/tools')
-rw-r--r--ndb/tools/restore/consumer_restore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/tools/restore/consumer_restore.cpp b/ndb/tools/restore/consumer_restore.cpp
index e2c55e5a0b1..ce1beb4aaa7 100644
--- a/ndb/tools/restore/consumer_restore.cpp
+++ b/ndb/tools/restore/consumer_restore.cpp
@@ -209,7 +209,7 @@ BackupRestore::endOfTables(){
NdbDictionary::Dictionary* dict = m_ndb->getDictionary();
for(size_t i = 0; i<m_indexes.size(); i++){
- const NdbTableImpl & indtab = NdbTableImpl::getImpl(* m_indexes[i]);
+ NdbTableImpl & indtab = NdbTableImpl::getImpl(* m_indexes[i]);
BaseString tmp(indtab.m_primaryTable.c_str());
Vector<BaseString> split;