Skip to content
Snippets Groups Projects
Unverified Commit ecd08233 authored by iFA's avatar iFA Committed by GitHub
Browse files

Update _rocksdb.pyx

parent b721c18a
No related branches found
No related tags found
No related merge requests found
......@@ -1240,6 +1240,11 @@ cdef class ColumnFamilyOptions(object):
self.py_prefix_extractor = PySliceTransform(value)
self.copts.prefix_extractor = self.py_prefix_extractor.get_transformer()
property optimize_filters_for_hits:
def __get__(self):
return self.copts.optimize_filters_for_hits
def __set__(self, value):
self.copts.optimize_filters_for_hits = value
cdef class Options(ColumnFamilyOptions):
cdef options.Options* opts
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment