Skip to content

Commit 8e95200

Browse files
duckdblabs-botgithub-actions[bot]
authored andcommitted
Update vendored DuckDB sources to b3edbac851
1 parent 3adee16 commit 8e95200

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/duckdb/src/function/table/table_scan.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,9 @@ class DuckTableScanState : public TableScanGlobalState {
265265
l_state.scan_state.options.force_fetch_row = ClientConfig::GetConfig(context).force_fetch_row;
266266

267267
do {
268+
if (context.interrupted) {
269+
throw InterruptException();
270+
}
268271
if (bind_data.is_create_index) {
269272
storage.CreateIndexScan(l_state.scan_state, output,
270273
TableScanType::TABLE_SCAN_COMMITTED_ROWS_OMIT_PERMANENTLY_DELETED);

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 "0-dev4107"
2+
#define DUCKDB_PATCH_VERSION "0-dev4109"
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.0-dev4107"
11+
#define DUCKDB_VERSION "v1.4.0-dev4109"
1212
#endif
1313
#ifndef DUCKDB_SOURCE_ID
14-
#define DUCKDB_SOURCE_ID "82446e8a32"
14+
#define DUCKDB_SOURCE_ID "b3edbac851"
1515
#endif
1616
#include "duckdb/function/table/system_functions.hpp"
1717
#include "duckdb/main/database.hpp"

0 commit comments

Comments
 (0)