ClickHouse/tests/queries/0_stateless/02494_query_cache_drop_cache.sql
Robert Schulze fea5fae5b0
Fix 02494_query_cache_drop.sql
Failing with high rate in master after #45912 was merged
2023-04-03 17:45:37 +00:00

16 lines
477 B
SQL

-- Tags: no-parallel
-- Tag no-parallel: Messes with internal cache
SET allow_experimental_query_cache = true;
-- (it's silly to use what will be tested below but we have to assume other tests cluttered the query cache)
SYSTEM DROP QUERY CACHE;
-- Cache query result in query cache
SELECT 1 SETTINGS use_query_cache = true;
SELECT count(*) FROM system.query_cache;
-- No query results are cached after DROP
SYSTEM DROP QUERY CACHE;
SELECT count(*) FROM system.query_cache;