@@ -590,7 +590,6 @@ cdef class BlockBasedTableFactory(PyTableFactory):
590590 block_size_deviation = None ,
591591 block_restart_interval = None ,
592592 whole_key_filtering = None ,
593- enable_index_compression = None ,
594593 cache_index_and_filter_blocks = None ,
595594 format_version = None ,
596595 ):
@@ -643,12 +642,6 @@ cdef class BlockBasedTableFactory(PyTableFactory):
643642 else :
644643 table_options.whole_key_filtering = False
645644
646- if enable_index_compression is not None :
647- if enable_index_compression:
648- table_options.enable_index_compression = True
649- else :
650- table_options.enable_index_compression = False
651-
652645 if cache_index_and_filter_blocks is not None :
653646 if cache_index_and_filter_blocks:
654647 table_options.cache_index_and_filter_blocks = True
@@ -1365,12 +1358,6 @@ cdef class Options(ColumnFamilyOptions):
13651358 def __set__ (self , value ):
13661359 self .opts.max_background_compactions = value
13671360
1368- property stats_history_buffer_size :
1369- def __get__ (self ):
1370- return self .opts.stats_history_buffer_size
1371- def __set__ (self , value ):
1372- self .opts.stats_history_buffer_size = value
1373-
13741361 property max_background_jobs :
13751362 def __get__ (self ):
13761363 return self .opts.max_background_jobs
0 commit comments