mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
325c6bdf3d
Reasons: - The cache will at some point store intermediate results as opposed to only query results. We should change the terminology now without having to worry about backward compat. - Equivalent caches in MySQL (1) and Starrocks (2) are called "query cache". - The new name is ca. 13.8% more catchy. (1) https://dev.mysql.com/doc/refman/5.6/en/query-cache.html (2) https://docs.starrocks.io/en-us/2.5/using_starrocks/query_cache
24 lines
998 B
SQL
24 lines
998 B
SQL
-- Tags: no-parallel
|
|
-- Tag no-parallel: Messes with internal cache
|
|
|
|
SET allow_experimental_query_cache = true;
|
|
|
|
SYSTEM DROP QUERY CACHE;
|
|
|
|
-- 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;
|
|
|
|
-- EXPLAIN PLAN should show the same regardless if the result is calculated or read from the QC
|
|
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; -- (*)
|
|
|
|
-- EXPLAIN PIPELINE should show the same regardless if the result is calculated or read from the QC
|
|
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; -- (*)
|
|
|
|
-- Statements (*) must not cache their results into the QC
|
|
SELECT count(*) FROM system.query_cache;
|
|
|
|
SYSTEM DROP QUERY CACHE;
|