mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 13:32:13 +00:00
Stateless tests: Keep an DNS error free log
This commit is contained in:
parent
b7101baac9
commit
d5a5ba8f0d
@ -1,2 +1,5 @@
|
|||||||
SELECT count() FROM remote('127.0.0.1,localhos', system.one); -- { serverError 198 }
|
SELECT count() FROM remote('127.0.0.1,localhos', system.one); -- { serverError 198 }
|
||||||
SELECT count() FROM remote('127.0.0.1|localhos', system.one);
|
SELECT count() FROM remote('127.0.0.1|localhos', system.one);
|
||||||
|
|
||||||
|
-- Clear cache to avoid future errors in the logs
|
||||||
|
SYSTEM DROP DNS CACHE
|
||||||
|
@ -68,3 +68,6 @@ INSERT INTO buffer VALUES (1);
|
|||||||
-- | |-> file (1)
|
-- | |-> file (1)
|
||||||
-- |-> remote(127.0.0.2) --> ...
|
-- |-> remote(127.0.0.2) --> ...
|
||||||
SELECT sum(n) from rich_syntax;
|
SELECT sum(n) from rich_syntax;
|
||||||
|
|
||||||
|
-- Clear cache to avoid future errors in the logs
|
||||||
|
SYSTEM DROP DNS CACHE
|
||||||
|
@ -1 +1,4 @@
|
|||||||
SELECT * FROM remote('127..2', 'a.'); -- { serverError 36 }
|
SELECT * FROM remote('127..2', 'a.'); -- { serverError 36 }
|
||||||
|
|
||||||
|
-- Clear cache to avoid future errors in the logs
|
||||||
|
SYSTEM DROP DNS CACHE
|
||||||
|
Loading…
Reference in New Issue
Block a user