Build fail fix

Summary: Build fail fix. Type cast issues.

Test Plan: compiled

Reviewers: sdong, yhchiang

Reviewed By: yhchiang

Subscribers: dhruba

Differential Revision: https://reviews.facebook.net/D41349
main
Poornima Chozhiyath Raman 10 years ago
parent b7a2369fb2
commit 411c8e3d19
  1. 6
      db/compaction_picker.cc

@ -45,8 +45,8 @@ uint64_t TotalCompensatedFileSize(const std::vector<FileMetaData*>& files) {
struct InputFileInfo { struct InputFileInfo {
FileMetaData* f; FileMetaData* f;
unsigned int level; size_t level;
unsigned int index; size_t index;
}; };
// Used in universal compaction when trivial move is enabled. // Used in universal compaction when trivial move is enabled.
@ -76,7 +76,7 @@ SmallestKeyHeap create_level_heap(Compaction* c, const Comparator* ucmp) {
InputFileInfo input_file; InputFileInfo input_file;
for (unsigned int l = 0; l < c->num_input_levels(); l++) { for (size_t l = 0; l < c->num_input_levels(); l++) {
if (c->num_input_files(l) != 0) { if (c->num_input_files(l) != 0) {
if (l == 0 && c->start_level() == 0) { if (l == 0 && c->start_level() == 0) {
for (size_t i = 0; i < c->num_input_files(0); i++) { for (size_t i = 0; i < c->num_input_files(0); i++) {

Loading…
Cancel
Save