Skip to content
Snippets Groups Projects
table_factory.pxd 273 B
from libc.stdint cimport uint32_t

cdef extern from "rocksdb/table.h" namespace "rocksdb":
    cdef cppclass TableFactory:
        TableFactory()

    cdef TableFactory* NewBlockBasedTableFactory()
    cdef TableFactory* NewPlainTableFactory(uint32_t, int, double, size_t)