Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/duckdb/src/function/table/version/pragma_version.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef DUCKDB_PATCH_VERSION
#define DUCKDB_PATCH_VERSION "1-dev194"
#define DUCKDB_PATCH_VERSION "1-dev196"
#endif
#ifndef DUCKDB_MINOR_VERSION
#define DUCKDB_MINOR_VERSION 3
Expand All @@ -8,10 +8,10 @@
#define DUCKDB_MAJOR_VERSION 1
#endif
#ifndef DUCKDB_VERSION
#define DUCKDB_VERSION "v1.3.1-dev194"
#define DUCKDB_VERSION "v1.3.1-dev196"
#endif
#ifndef DUCKDB_SOURCE_ID
#define DUCKDB_SOURCE_ID "c17917dc55"
#define DUCKDB_SOURCE_ID "c5f80e216b"
#endif
#include "duckdb/function/table/system_functions.hpp"
#include "duckdb/main/database.hpp"
Expand Down
5 changes: 5 additions & 0 deletions src/duckdb/src/parallel/executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -589,6 +589,11 @@ PendingExecutionResult Executor::ExecuteTask(bool dry_run) {
if (!HasError()) {
// we (partially) processed a task and no exceptions were thrown
// give back control to the caller
if (task && DBConfig::GetConfig(context).options.scheduler_process_partial) {
auto &token = *task->token;
TaskScheduler::GetScheduler(context).ScheduleTask(token, task);
task.reset();
}
return PendingExecutionResult::RESULT_NOT_READY;
}
execution_result = PendingExecutionResult::EXECUTION_ERROR;
Expand Down