提交 222cf255 编写于 作者: F Feng Zhu

change the init parameter for FileDescriptor

Summary:
  fix a bug in improve_file_key_search, change the parameter for FileDescriptor

Test Plan:
  make all check

Reviewers: sdong

Reviewed By: sdong

Differential Revision: https://reviews.facebook.net/D19611
上级 8a7d1fe6
......@@ -99,7 +99,7 @@ struct FdWithKeyRange {
Slice largest_key; // slice that contain largest key
FdWithKeyRange()
: fd(0, 0),
: fd(),
smallest_key(),
largest_key() {
}
......
......@@ -118,7 +118,7 @@ class FindLevelFileTest {
// add compressd_level_
size_t num = level_files_.num_files;
auto& file = level_files_.files[num];
file.fd = FileDescriptor(num + 1, 0);
file.fd = FileDescriptor(num + 1, 0, 0);
file.smallest_key = Slice(mem, smallest_slice.size());
file.largest_key = Slice(mem + smallest_slice.size(),
largest_slice.size());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册