Correct the comment for GetProperty() API.
Summary: "rocksdb.aggregated-table-properties" and "rocksdb.aggregated-table-properties-at-level<N>" should belong to GetProperty() instead of GetIntProperty(), but the comment mistakenly classifies them to GetIntProperty(). This patch fix this comment error. Test Plan: no code change. Reviewers: sdong, anthony, IslamAbdelRahman, igor Reviewed By: igor Subscribers: dhruba Differential Revision: https://reviews.facebook.net/D45561
This commit is contained in:
parent
2f8d71ec05
commit
9ccf1bd3e2
@ -334,6 +334,12 @@ class DB {
|
|||||||
// "rocksdb.estimate-pending-compaction-bytes" - estimated total number of
|
// "rocksdb.estimate-pending-compaction-bytes" - estimated total number of
|
||||||
// bytes compaction needs to rewrite the data to get all levels down
|
// bytes compaction needs to rewrite the data to get all levels down
|
||||||
// to under target size. Not valid for other compactions than level-based.
|
// to under target size. Not valid for other compactions than level-based.
|
||||||
|
// "rocksdb.aggregated-table-properties" - returns a string representation of
|
||||||
|
// the aggregated table properties of the target column family.
|
||||||
|
// "rocksdb.aggregated-table-properties-at-level<N>", same as the previous
|
||||||
|
// one but only returns the aggregated table properties of the specified
|
||||||
|
// level "N" at the target column family.
|
||||||
|
// replaced by the target level.
|
||||||
#ifndef ROCKSDB_LITE
|
#ifndef ROCKSDB_LITE
|
||||||
struct Properties {
|
struct Properties {
|
||||||
static const std::string kNumFilesAtLevelPrefix;
|
static const std::string kNumFilesAtLevelPrefix;
|
||||||
@ -396,9 +402,6 @@ class DB {
|
|||||||
// "rocksdb.total-sst-files-size"
|
// "rocksdb.total-sst-files-size"
|
||||||
// "rocksdb.base-level"
|
// "rocksdb.base-level"
|
||||||
// "rocksdb.estimate-pending-compaction-bytes"
|
// "rocksdb.estimate-pending-compaction-bytes"
|
||||||
// "rocksdb.aggregated-table-properties"
|
|
||||||
// "rocksdb.aggregated-table-properties-at-levelN", where "N" should be
|
|
||||||
// replaced by the target level.
|
|
||||||
virtual bool GetIntProperty(ColumnFamilyHandle* column_family,
|
virtual bool GetIntProperty(ColumnFamilyHandle* column_family,
|
||||||
const Slice& property, uint64_t* value) = 0;
|
const Slice& property, uint64_t* value) = 0;
|
||||||
virtual bool GetIntProperty(const Slice& property, uint64_t* value) {
|
virtual bool GetIntProperty(const Slice& property, uint64_t* value) {
|
||||||
|
Loading…
Reference in New Issue
Block a user