From fd96b554026d5c1d4278d4b2fef7ba09a7fc8d83 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Thu, 30 Apr 2015 09:29:51 -0700 Subject: [PATCH] Making GetOptions() comment better (#597) --- include/rocksdb/db.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/rocksdb/db.h b/include/rocksdb/db.h index d38cb3549..db1331e44 100644 --- a/include/rocksdb/db.h +++ b/include/rocksdb/db.h @@ -485,7 +485,10 @@ class DB { // Get Env object from the DB virtual Env* GetEnv() const = 0; - // Get DB Options that we use + // Get DB Options that we use. During the process of opening the + // column family, the options provided when calling DB::Open() or + // DB::CreateColumnFamily() will have been "sanitized" and transformed + // in an implementation-defined manner. virtual const Options& GetOptions(ColumnFamilyHandle* column_family) const = 0; virtual const Options& GetOptions() const {