@nxtedition/rocksdb 5.2.16 → 5.2.17

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
@@ -861,6 +861,8 @@ struct OpenWorker final : public BaseWorker {
861
861
  tableOptions.block_size = blockSize;
862
862
  tableOptions.block_restart_interval = blockRestartInterval;
863
863
  tableOptions.filter_policy.reset(rocksdb::NewBloomFilterPolicy(10));
864
+ tableOptions.format_version = 5;
865
+ tableOptions.checksum = rocksdb::kxxHash64;
864
866
 
865
867
  options_.table_factory.reset(
866
868
  rocksdb::NewBlockBasedTableFactory(tableOptions)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "5.2.16",
3
+ "version": "5.2.17",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",