@nxtedition/rocksdb 12.0.7 → 12.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/binding.cc CHANGED
@@ -798,9 +798,10 @@ napi_status InitOptions(napi_env env, T& columnOptions, const U& options) {
798
798
 
799
799
  NAPI_STATUS_RETURN(GetProperty(env, options, "blockRestartInterval", tableOptions.block_restart_interval));
800
800
 
801
- tableOptions.format_version = 5;
802
801
  tableOptions.checksum = rocksdb::kXXH3;
802
+
803
803
  tableOptions.decouple_partitioned_filters = true;
804
+ NAPI_STATUS_RETURN(GetProperty(env, options, "decouplePartitionedFilters", tableOptions.block_restart_interval));
804
805
 
805
806
  tableOptions.optimize_filters_for_memory = true;
806
807
  NAPI_STATUS_RETURN(GetProperty(env, options, "optimizeFiltersForMemory", tableOptions.optimize_filters_for_memory));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "12.0.7",
3
+ "version": "12.0.8",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",