mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Ignore TOO_DEEP_RECURSION server exception during fuzzing
This commit is contained in:
parent
d81fd36f3f
commit
170301c531
@ -1380,9 +1380,19 @@ private:
|
|||||||
have_error = true;
|
have_error = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const auto * exception = server_exception ? server_exception.get() : client_exception.get();
|
||||||
|
// Sometimes you may get TOO_DEEP_RECURSION from the server,
|
||||||
|
// and TOO_DEEP_RECURSION should not fail the fuzzer check.
|
||||||
|
if (have_error && exception->code() == ErrorCodes::TOO_DEEP_RECURSION)
|
||||||
|
{
|
||||||
|
have_error = false;
|
||||||
|
server_exception.reset();
|
||||||
|
client_exception.reset();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (have_error)
|
if (have_error)
|
||||||
{
|
{
|
||||||
const auto * exception = server_exception ? server_exception.get() : client_exception.get();
|
|
||||||
fmt::print(stderr, "Error on processing query '{}': {}\n", ast_to_process->formatForErrorMessage(), exception->message());
|
fmt::print(stderr, "Error on processing query '{}': {}\n", ast_to_process->formatForErrorMessage(), exception->message());
|
||||||
|
|
||||||
// Try to reconnect after errors, for two reasons:
|
// Try to reconnect after errors, for two reasons:
|
||||||
|
Loading…
Reference in New Issue
Block a user