From c9fd03ec51f16a108038e4fc78fafb74ed5b7702 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Fri, 14 Nov 2014 11:34:32 -0800 Subject: [PATCH] Update docs for NewAdaptiveTableFactory --- include/rocksdb/table.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/rocksdb/table.h b/include/rocksdb/table.h index 4fddab4b3..da525d4a2 100644 --- a/include/rocksdb/table.h +++ b/include/rocksdb/table.h @@ -369,13 +369,14 @@ class TableFactory { }; #ifndef ROCKSDB_LITE -// Create a special table factory that can open both of block based table format -// and plain table, based on setting inside the SST files. It should be used to +// Create a special table factory that can open either of the supported +// table formats, based on setting inside the SST files. It should be used to // convert a DB from one table format to another. // @table_factory_to_write: the table factory used when writing to new files. // @block_based_table_factory: block based table factory to use. If NULL, use // a default one. // @plain_table_factory: plain table factory to use. If NULL, use a default one. +// @cuckoo_table_factory: cuckoo table factory to use. If NULL, use a default one. extern TableFactory* NewAdaptiveTableFactory( std::shared_ptr table_factory_to_write = nullptr, std::shared_ptr block_based_table_factory = nullptr,