duckdb 0.6.1-dev140.0 → 0.6.1-dev149.0

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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
4
  "types": "./lib/duckdb.d.ts",
5
- "version": "0.6.1-dev140.0",
5
+ "version": "0.6.1-dev149.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -202433,7 +202433,7 @@ void BufferManager::SetTemporaryDirectory(string new_dir) {
202433
202433
 
202434
202434
  BufferManager::BufferManager(DatabaseInstance &db, string tmp, idx_t maximum_memory)
202435
202435
  : db(db), current_memory(0), maximum_memory(maximum_memory), temp_directory(move(tmp)),
202436
- queue(make_unique<EvictionQueue>()), temporary_id(MAXIMUM_BLOCK),
202436
+ queue(make_unique<EvictionQueue>()), temporary_id(MAXIMUM_BLOCK), queue_insertions(0),
202437
202437
  buffer_allocator(BufferAllocatorAllocate, BufferAllocatorFree, BufferAllocatorRealloc,
202438
202438
  make_unique<BufferAllocatorData>(*this)) {
202439
202439
  temp_block_manager = make_unique<InMemoryBlockManager>(*this);
package/src/duckdb.hpp CHANGED
@@ -11,8 +11,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
11
11
  #pragma once
12
12
  #define DUCKDB_AMALGAMATION 1
13
13
  #define DUCKDB_AMALGAMATION_EXTENDED 1
14
- #define DUCKDB_SOURCE_ID "dd5dcd5722"
15
- #define DUCKDB_VERSION "v0.6.1-dev140"
14
+ #define DUCKDB_SOURCE_ID "dffe931b68"
15
+ #define DUCKDB_VERSION "v0.6.1-dev149"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //