From ee7617167f8bf09575fc31a7470778f370ae33cc Mon Sep 17 00:00:00 2001 From: Fenggang Wu Date: Tue, 31 Jul 2018 11:40:41 -0700 Subject: [PATCH] DataBlockHashIndex: Specify that DataBlockHashIndex is not yet implemented in the comment Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/4203 Differential Revision: D9090912 Pulled By: fgwu fbshipit-source-id: 6a68be83693ddf2a5c060290382141f0d2fb400b --- include/rocksdb/table.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rocksdb/table.h b/include/rocksdb/table.h index 64275339c..2630d4a38 100644 --- a/include/rocksdb/table.h +++ b/include/rocksdb/table.h @@ -101,7 +101,7 @@ struct BlockBasedTableOptions { IndexType index_type = kBinarySearch; // The index type that will be used for the data block. - // Now two DataBlockIndexType supported + // The kDataBlockHashSearch index type is not yet implemented. enum DataBlockIndexType : char { kDataBlockBinarySearch = 0, // traditional block type kDataBlockHashSearch = 1, // additional hash index appended to the end.