rocksdb-native 3.8.0 → 3.8.1

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
@@ -1606,7 +1606,7 @@ rocksdb_native_compact_range(
1606
1606
  assert(err == 0);
1607
1607
 
1608
1608
  rocksdb_slice_t end_slice;
1609
- err = js_get_typedarray_info(env, start, end_slice.data, end_slice.len);
1609
+ err = js_get_typedarray_info(env, end, end_slice.data, end_slice.len);
1610
1610
  assert(err == 0);
1611
1611
 
1612
1612
  err = rocksdb_compact_range(&db->handle, &req->handle, column_family->handle, start_slice, end_slice, &options, rocksdb_native__on_compact_range);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rocksdb-native",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "librocksdb bindings for JavaScript",
5
5
  "exports": {
6
6
  ".": "./index.js",