File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
src/duckdb/src/function/table Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff line change 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
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"
You can’t perform that action at this time.
0 commit comments