mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
fix timeout in 01098_temporary_and_external_tables
This commit is contained in:
parent
a7f8b8acde
commit
c424db85b4
@ -40,7 +40,7 @@ namespace
|
||||
if (overrun_count)
|
||||
{
|
||||
/// But pass with some frequency to avoid drop of all traces.
|
||||
if (write_trace_iteration % overrun_count == 0)
|
||||
if (write_trace_iteration % (overrun_count + 1) == 0)
|
||||
{
|
||||
ProfileEvents::increment(ProfileEvents::QueryProfilerSignalOverruns, overrun_count);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user