This commit is contained in:
Alexey Boykov 2021-08-31 15:15:04 +03:00
parent b31a611e54
commit fbe453ff9d
2 changed files with 3 additions and 5 deletions

View File

@ -394,9 +394,9 @@ try
/// Set finalizing callback for progress, which is called right before finalizing query output.
finalize_progress = [&]()
{
{
progress_indication.clearProgressOutput();
};
};
/// Set callback for file processing progress.
progress_indication.setFileProgressCallback(context);
@ -427,9 +427,7 @@ try
catch (...)
{
if (!config().hasOption("ignore-error"))
{
throw;
}
if (!exception)
exception = std::current_exception();

View File

@ -29,7 +29,7 @@ public:
}
inline bool isDeterministic() const override { return false; }
bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; }
ColumnPtr executeImpl(const ColumnsWithTypeAndName &,