Skip to content

Commit 0d50685

Browse files
duckdblabs-botgithub-actions[bot]
authored andcommitted
Update vendored DuckDB sources to 32ae75b320
1 parent 65646a0 commit 0d50685

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

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 "4"
2+
#define DUCKDB_PATCH_VERSION "5-dev2"
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.4"
11+
#define DUCKDB_VERSION "v1.4.5-dev2"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "6ddac802ff"
14+
#define DUCKDB_SOURCE_ID "32ae75b320"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

src/duckdb/src/function/window/window_value_function.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1012,6 +1012,9 @@ void WindowFillExecutor::EvaluateInternal(ExecutionContext &context, DataChunk &
10121012
if (prev_valid == DConstants::INVALID_INDEX) {
10131013
// Skip to the next partition
10141014
i += partition_end[i] - row_idx - 1;
1015+
if (i >= count) {
1016+
return;
1017+
}
10151018
row_idx = partition_end[i] - 1;
10161019
continue;
10171020
}
@@ -1121,6 +1124,9 @@ void WindowFillExecutor::EvaluateInternal(ExecutionContext &context, DataChunk &
11211124
if (prev_valid == DConstants::INVALID_INDEX) {
11221125
// Skip to the next partition
11231126
i += partition_end[i] - row_idx - 1;
1127+
if (i >= count) {
1128+
break;
1129+
}
11241130
row_idx = partition_end[i] - 1;
11251131
continue;
11261132
}

0 commit comments

Comments
 (0)