From 32a3dca280a8394b29da7cbfe02886dd8397826a Mon Sep 17 00:00:00 2001 From: twmht <qrnnis2623891@gmail.com> Date: Fri, 1 Feb 2019 21:56:58 +0800 Subject: [PATCH] remove full_scan_mode --- rocksdb/_rocksdb.pyx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rocksdb/_rocksdb.pyx b/rocksdb/_rocksdb.pyx index 57740f8..32efba5 100644 --- a/rocksdb/_rocksdb.pyx +++ b/rocksdb/_rocksdb.pyx @@ -657,8 +657,7 @@ cdef class PlainTableFactory(PyTableFactory): index_sparseness=10, huge_page_tlb_size=0, encoding_type='plain', - py_bool full_scan_mode=False, - py_bool store_index_in_file=False): + py_bool full_scan_mode=False): cdef table_factory.PlainTableOptions table_options @@ -676,7 +675,6 @@ cdef class PlainTableFactory(PyTableFactory): raise ValueError("Unknown encoding_type: %s" % encoding_type) table_options.full_scan_mode = full_scan_mode - table_options.store_index_in_file = store_index_in_file self.factory.reset( table_factory.NewPlainTableFactory(table_options)) ############################################# -- GitLab