Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit ea96bc7

Browse files
committed
add descriptor for db option
1 parent ee1bc5a commit ea96bc7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

rocksdb/_rocksdb.pyx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,6 +1258,12 @@ cdef class Options(ColumnFamilyOptions):
12581258
for key, value in kwargs.items():
12591259
setattr(self, key, value)
12601260

1261+
property create_missing_column_families:
1262+
def __get__(self):
1263+
return self.opts.create_missing_column_families
1264+
def __set__(self, value):
1265+
self.opts.create_missing_column_families = value
1266+
12611267
property create_if_missing:
12621268
def __get__(self):
12631269
return self.opts.create_if_missing

0 commit comments

Comments
 (0)