Update _rocksdb.pyx
This commit is contained in:
parent
5afbf3cb73
commit
a846ec9af5
1 changed files with 2 additions and 2 deletions
|
@ -1273,9 +1273,9 @@ cdef class ColumnFamilyOptions(object):
|
||||||
|
|
||||||
property ttl:
|
property ttl:
|
||||||
def __get__(self):
|
def __get__(self):
|
||||||
return self.opts.ttl
|
return self.copts.ttl
|
||||||
def __set__(self, value):
|
def __set__(self, value):
|
||||||
self.opts.ttl = value
|
self.copts.ttl = value
|
||||||
|
|
||||||
cdef class Options(ColumnFamilyOptions):
|
cdef class Options(ColumnFamilyOptions):
|
||||||
cdef options.Options* opts
|
cdef options.Options* opts
|
||||||
|
|
Loading…
Reference in a new issue