mirror of https://github.com/facebook/rocksdb.git
print compaction_filter name in Options.Dump
Summary: Was looking at an issue. All options are the same except compaction_filter was missed from a newer package. Our option dump does not capture that Test Plan: make release Reviewers: sdong, igor, yhchiang Reviewed By: yhchiang Subscribers: leveldb Differential Revision: https://reviews.facebook.net/D21765
This commit is contained in:
parent
5a5953b388
commit
e91ebf1399
|
@ -318,6 +318,8 @@ void ColumnFamilyOptions::Dump(Logger* log) const {
|
|||
Log(log, " Options.comparator: %s", comparator->Name());
|
||||
Log(log, " Options.merge_operator: %s",
|
||||
merge_operator ? merge_operator->Name() : "None");
|
||||
Log(log, " Options.compaction_filter: %s",
|
||||
compaction_filter ? compaction_filter->Name() : "None");
|
||||
Log(log, " Options.compaction_filter_factory: %s",
|
||||
compaction_filter_factory->Name());
|
||||
Log(log, " Options.compaction_filter_factory_v2: %s",
|
||||
|
|
Loading…
Reference in New Issue