Skip to content

Commit d72d7ed

Browse files
duckdblabs-botgithub-actions[bot]
authored andcommitted
Update vendored DuckDB sources to b68a1696de
1 parent 52a8746 commit d72d7ed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/duckdb/src/function/table/version/pragma_version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#ifndef DUCKDB_PATCH_VERSION
2-
#define DUCKDB_PATCH_VERSION "2-dev185"
2+
#define DUCKDB_PATCH_VERSION "2-dev192"
33
#endif
44
#ifndef DUCKDB_MINOR_VERSION
55
#define DUCKDB_MINOR_VERSION 4
@@ -8,10 +8,10 @@
88
#define DUCKDB_MAJOR_VERSION 1
99
#endif
1010
#ifndef DUCKDB_VERSION
11-
#define DUCKDB_VERSION "v1.4.2-dev185"
11+
#define DUCKDB_VERSION "v1.4.2-dev192"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "307f9b41ff"
14+
#define DUCKDB_SOURCE_ID "b68a1696de"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/storage/table/column_data.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,10 +495,10 @@ void ColumnData::InitializeAppend(ColumnAppendState &state) {
495495
void ColumnData::AppendData(BaseStatistics &append_stats, ColumnAppendState &state, UnifiedVectorFormat &vdata,
496496
idx_t append_count) {
497497
idx_t offset = 0;
498-
this->count += append_count;
499498
while (true) {
500499
// append the data from the vector
501500
idx_t copied_elements = state.current->Append(state, vdata, offset, append_count);
501+
this->count += copied_elements;
502502
append_stats.Merge(state.current->stats.statistics);
503503
if (copied_elements == append_count) {
504504
// finished copying everything

0 commit comments

Comments
 (0)