Allow access to some details of the DB driver (#31)

why:
  Playing with SST direct import
This commit is contained in:
Jordan Hrycaj 2022-08-11 09:13:10 +01:00 committed by GitHub
parent fb3f2c30b0
commit b7f0728225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,10 +32,10 @@ else:
type
RocksDBInstance* = object
db: rocksdb_t
db*: rocksdb_t
backupEngine: rocksdb_backup_engine_t
options: rocksdb_options_t
readOptions: rocksdb_readoptions_t
options*: rocksdb_options_t
readOptions*: rocksdb_readoptions_t
writeOptions: rocksdb_writeoptions_t
DataProc* = proc(val: openArray[byte]) {.gcsafe, raises: [Defect].}