ClickHouse/tests/queries/0_stateless/02494_query_cache_explain.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
1.0 KiB
MySQL
Raw Normal View History

2023-01-10 23:09:14 +00:00
-- Tags: no-parallel
-- Tag no-parallel: Messes with internal cache
2023-01-10 23:09:14 +00:00
2024-07-12 12:49:26 +00:00
SET enable_analyzer = 1;
2024-04-07 17:12:52 +00:00
SET query_cache_system_table_handling = 'save';
SYSTEM DROP QUERY CACHE;
2023-01-10 23:09:14 +00:00
-- Run a silly query with a non-trivial plan and put the result into the query cache QC
SELECT 1 + number from system.numbers LIMIT 1 SETTINGS use_query_cache = true;
SELECT count(*) FROM system.query_cache;
2023-01-10 23:09:14 +00:00
-- EXPLAIN PLAN should show the same regardless if the result is calculated or read from the QC
2023-01-10 23:09:14 +00:00
EXPLAIN PLAN SELECT 1 + number from system.numbers LIMIT 1;
EXPLAIN PLAN SELECT 1 + number from system.numbers LIMIT 1 SETTINGS use_query_cache = true; -- (*)
2023-01-10 23:09:14 +00:00
-- EXPLAIN PIPELINE should show the same regardless if the result is calculated or read from the QC
2023-01-10 23:09:14 +00:00
EXPLAIN PIPELINE SELECT 1 + number from system.numbers LIMIT 1;
EXPLAIN PIPELINE SELECT 1 + number from system.numbers LIMIT 1 SETTINGS use_query_cache = true; -- (*)
2023-01-10 23:09:14 +00:00
-- Statements (*) must not cache their results into the QC
SELECT count(*) FROM system.query_cache;
2023-01-10 23:09:14 +00:00
SYSTEM DROP QUERY CACHE;