-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Listener minmax userkey #227
base: dev.1.4
Are you sure you want to change the base?
Conversation
635900c
to
4b8a99a
Compare
db/db_impl.cc
Outdated
@@ -170,6 +170,14 @@ class TablePropertiesCollectionIteratorImpl | |||
assert(Valid()); | |||
return filename_; | |||
} | |||
|
|||
std::pair<std::string, std::string> fileRange() const override { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
std::pair<Slice, Slice> boundaries() const override {
db/db_impl_compaction_flush.cc
Outdated
@@ -1202,6 +1204,9 @@ void DBImpl::NotifyOnCompactionCompleted( | |||
auto fn = TableFileName(c->immutable_cf_options()->cf_paths, | |||
fmd->fd.GetNumber(), fmd->fd.GetPathId()); | |||
info.input_files.push_back(fn); | |||
info.input_files_boundries_user_key.push_back( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
boundaries ?
@@ -277,9 +282,11 @@ struct CompactionJobInfo { | |||
int output_level; | |||
// the names of the compaction input files. | |||
std::vector<std::string> input_files; | |||
std::vector<std::pair<Slice,Slice> input_boundries; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
boundaries ,拼写错误?
No description provided.