duckdb 0.9.1-dev95.0 → 0.9.1-dev97.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.9.1-dev95.0",
5
+ "version": "0.9.1-dev97.0",
6
6
  "description": "DuckDB node.js API",
7
7
  "gypfile": true,
8
8
  "dependencies": {
@@ -298,12 +298,10 @@ void PerfectAggregateHashTable::Destroy() {
298
298
  RowOperationsState row_state(*aggregate_allocator);
299
299
  data_ptr_t payload_ptr = data;
300
300
  for (idx_t i = 0; i < total_groups; i++) {
301
- if (group_is_set[i]) {
302
- data_pointers[count++] = payload_ptr;
303
- if (count == STANDARD_VECTOR_SIZE) {
304
- RowOperations::DestroyStates(row_state, layout, addresses, count);
305
- count = 0;
306
- }
301
+ data_pointers[count++] = payload_ptr;
302
+ if (count == STANDARD_VECTOR_SIZE) {
303
+ RowOperations::DestroyStates(row_state, layout, addresses, count);
304
+ count = 0;
307
305
  }
308
306
  payload_ptr += tuple_size;
309
307
  }
@@ -1,8 +1,8 @@
1
1
  #ifndef DUCKDB_VERSION
2
- #define DUCKDB_VERSION "v0.9.1-dev95"
2
+ #define DUCKDB_VERSION "v0.9.1-dev97"
3
3
  #endif
4
4
  #ifndef DUCKDB_SOURCE_ID
5
- #define DUCKDB_SOURCE_ID "e2b1788a25"
5
+ #define DUCKDB_SOURCE_ID "0894f3d6ab"
6
6
  #endif
7
7
  #include "duckdb/function/table/system_functions.hpp"
8
8
  #include "duckdb/main/database.hpp"