duckdb 0.5.2-dev577.0 → 0.5.2-dev579.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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "duckdb",
3
3
  "main": "./lib/duckdb.js",
4
- "version": "0.5.2-dev577.0",
4
+ "version": "0.5.2-dev579.0",
5
5
  "description": "DuckDB node.js API",
6
6
  "gypfile": true,
7
7
  "dependencies": {
package/src/duckdb.cpp CHANGED
@@ -56290,6 +56290,7 @@ void GroupedAggregateHashTable::Partition(vector<GroupedAggregateHashTable *> &p
56290
56290
  partition_entry->Verify();
56291
56291
  total_count += partition_entry->Size();
56292
56292
  }
56293
+ (void)total_count;
56293
56294
  D_ASSERT(total_count == entries);
56294
56295
  }
56295
56296
 
@@ -65143,6 +65144,7 @@ void WindowLocalSinkState::Combine(WindowGlobalSinkState &gstate) {
65143
65144
  }
65144
65145
  }
65145
65146
 
65147
+ (void)check;
65146
65148
  D_ASSERT(check == count);
65147
65149
  }
65148
65150
 
@@ -203848,6 +203850,7 @@ void SingleFileStorageCommitState::FlushCommit() {
203848
203850
  if (log) {
203849
203851
  // flush the WAL if any changes were made
203850
203852
  if (log->GetTotalWritten() > initial_written) {
203853
+ (void)checkpoint;
203851
203854
  D_ASSERT(!checkpoint);
203852
203855
  D_ASSERT(!log->skip_writing);
203853
203856
  log->Flush();
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 "e6e62d5a8"
15
- #define DUCKDB_VERSION "v0.5.2-dev577"
14
+ #define DUCKDB_SOURCE_ID "cafad4f1a"
15
+ #define DUCKDB_VERSION "v0.5.2-dev579"
16
16
  //===----------------------------------------------------------------------===//
17
17
  // DuckDB
18
18
  //