1
0
Fork 0

fix compile errors

This commit is contained in:
jsteemann 2017-02-13 15:42:35 +01:00
parent 1724c4f04b
commit 0e5cd5ea1d
1 changed files with 0 additions and 17 deletions

View File

@ -604,23 +604,6 @@ bool LogicalCollection::isFullyCollected() {
return getPhysical()->isFullyCollected();
}
void LogicalCollection::setNextCompactionStartIndex(size_t index) {
MUTEX_LOCKER(mutexLocker, _compactionStatusLock);
_nextCompactionStartIndex = index;
}
size_t LogicalCollection::getNextCompactionStartIndex() {
MUTEX_LOCKER(mutexLocker, _compactionStatusLock);
return _nextCompactionStartIndex;
}
void LogicalCollection::setCompactionStatus(char const* reason) {
TRI_ASSERT(reason != nullptr);
MUTEX_LOCKER(mutexLocker, _compactionStatusLock);
_lastCompactionStatus = reason;
}
uint64_t LogicalCollection::numberDocuments() const {
// TODO Ask StorageEngine instead
return primaryIndex()->size();