You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-15 03:21:42 +03:00
MCOL-4368 Unified exceptions handling code in dbcon/joblist
This commit is contained in:
@ -212,17 +212,12 @@ void WindowFunction::operator()()
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (IDBExcept& iex)
|
||||
{
|
||||
fStep->handleException(iex.what(), iex.errorCode());
|
||||
}
|
||||
catch (const std::exception& ex)
|
||||
{
|
||||
fStep->handleException(ex.what(), logging::ERR_EXECUTE_WINDOW_FUNCTION);
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
fStep->handleException("unknown exception", logging::ERR_EXECUTE_WINDOW_FUNCTION);
|
||||
fStep->handleException(std::current_exception(),
|
||||
logging::ERR_EXECUTE_WINDOW_FUNCTION,
|
||||
logging::ERR_WF_DATA_SET_TOO_BIG,
|
||||
"WindowFunction::operator()");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user