mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Merge pull request #61757 from ClickHouse/fix-03014_async_with_dedup_part_log_rmt
Fix flaky `03014_async_with_dedup_part_log_rmt`
This commit is contained in:
commit
c2624cab48
@ -10,7 +10,7 @@ INSERT INTO 03014_async_with_dedup_part_log VALUES (2);
|
||||
|
||||
SYSTEM FLUSH LOGS;
|
||||
SELECT error, count() FROM system.part_log
|
||||
WHERE table = '03014_async_with_dedup_part_log' and database = currentDatabase()
|
||||
WHERE table = '03014_async_with_dedup_part_log' AND database = currentDatabase() AND event_type = 'NewPart'
|
||||
GROUP BY error
|
||||
ORDER BY error;
|
||||
|
||||
@ -19,6 +19,6 @@ INSERT INTO 03014_async_with_dedup_part_log VALUES (2);
|
||||
|
||||
SYSTEM FLUSH LOGS;
|
||||
SELECT error, count() FROM system.part_log
|
||||
WHERE table = '03014_async_with_dedup_part_log' and database = currentDatabase()
|
||||
WHERE table = '03014_async_with_dedup_part_log' AND database = currentDatabase() AND event_type = 'NewPart'
|
||||
GROUP BY error
|
||||
ORDER BY error;
|
||||
|
Loading…
Reference in New Issue
Block a user