Merge pull request #251 from nbougalis/master

Fix candidate file comparison when using path ids
This commit is contained in:
Igor Canadi 2014-08-31 16:05:06 -04:00
commit 985a31cf0e

View File

@ -631,7 +631,7 @@ bool CompareCandidateFile(const rocksdb::DBImpl::CandidateFileInfo& first,
} else if (first.file_name < second.file_name) {
return false;
} else {
return (first.path_id > first.path_id);
return (first.path_id > second.path_id);
}
}
}; // namespace