@nxtedition/rocksdb 13.0.2 → 13.0.3

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
@@ -931,7 +931,7 @@ napi_status InitOptions(napi_env env, T& columnOptions, const U& options) {
931
931
  tableOptions.block_align = false;
932
932
  NAPI_STATUS_RETURN(GetProperty(env, options, "blockAlign", tableOptions.block_align));
933
933
 
934
- tableOptions.cache_index_and_filter_blocks = true; // false
934
+ tableOptions.cache_index_and_filter_blocks = false;
935
935
  NAPI_STATUS_RETURN(GetProperty(env, options, "cacheIndexAndFilterBlocks", tableOptions.cache_index_and_filter_blocks));
936
936
 
937
937
  tableOptions.cache_index_and_filter_blocks_with_high_priority = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/rocksdb",
3
- "version": "13.0.2",
3
+ "version": "13.0.3",
4
4
  "description": "A low-level Node.js RocksDB binding",
5
5
  "license": "MIT",
6
6
  "main": "index.js",