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
@@ -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
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
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-
|
2
|
+
#define DUCKDB_VERSION "v0.9.1-dev97"
|
3
3
|
#endif
|
4
4
|
#ifndef DUCKDB_SOURCE_ID
|
5
|
-
#define DUCKDB_SOURCE_ID "
|
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"
|