mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
Cleanup and more tests
This commit is contained in:
parent
2fa04bb37c
commit
f885423a4a
@ -778,6 +778,7 @@ InterpreterSelectQuery::InterpreterSelectQuery(
|
|||||||
};
|
};
|
||||||
|
|
||||||
/// This is a hack to make sure we reanalyze if GlobalSubqueriesVisitor changed allow_experimental_parallel_reading_from_replicas
|
/// This is a hack to make sure we reanalyze if GlobalSubqueriesVisitor changed allow_experimental_parallel_reading_from_replicas
|
||||||
|
/// inside the query context (because it doesn't have write access to the main context)
|
||||||
UInt64 parallel_replicas_before_analysis
|
UInt64 parallel_replicas_before_analysis
|
||||||
= context->hasQueryContext() ? context->getQueryContext()->getSettingsRef().allow_experimental_parallel_reading_from_replicas : 0;
|
= context->hasQueryContext() ? context->getQueryContext()->getSettingsRef().allow_experimental_parallel_reading_from_replicas : 0;
|
||||||
analyze(shouldMoveToPrewhere());
|
analyze(shouldMoveToPrewhere());
|
||||||
@ -787,7 +788,7 @@ InterpreterSelectQuery::InterpreterSelectQuery(
|
|||||||
|
|
||||||
if (context->hasQueryContext())
|
if (context->hasQueryContext())
|
||||||
{
|
{
|
||||||
/// No buts or ifs, if the analysis changed this setting we must reanalyze without parallel replicas
|
/// As this query can't be executed with parallel replicas, we must reanalyze it
|
||||||
if (context->getQueryContext()->getSettingsRef().allow_experimental_parallel_reading_from_replicas
|
if (context->getQueryContext()->getSettingsRef().allow_experimental_parallel_reading_from_replicas
|
||||||
!= parallel_replicas_before_analysis)
|
!= parallel_replicas_before_analysis)
|
||||||
{
|
{
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
DROP TABLE IF EXISTS pr_1;
|
DROP TABLE IF EXISTS pr_1;
|
||||||
DROP TABLE IF EXISTS pr_2;
|
DROP TABLE IF EXISTS pr_2;
|
||||||
|
DROP TABLE IF EXISTS numbers_1e6;
|
||||||
|
|
||||||
CREATE TABLE pr_1 (`a` UInt32) ENGINE = MergeTree ORDER BY a PARTITION BY a % 10 AS
|
CREATE TABLE pr_1 (`a` UInt32) ENGINE = MergeTree ORDER BY a PARTITION BY a % 10 AS
|
||||||
SELECT 10 * intDiv(number, 10) + 1 FROM numbers(1_000_000);
|
SELECT 10 * intDiv(number, 10) + 1 FROM numbers(1_000_000);
|
||||||
@ -28,7 +29,7 @@ SETTINGS allow_experimental_analyzer = 0, allow_experimental_parallel_reading_fr
|
|||||||
SELECT count() FROM pr_2 JOIN numbers(10) as pr_1 ON pr_2.a = pr_1.number
|
SELECT count() FROM pr_2 JOIN numbers(10) as pr_1 ON pr_2.a = pr_1.number
|
||||||
SETTINGS allow_experimental_parallel_reading_from_replicas = 1, parallel_replicas_for_non_replicated_merge_tree = 1, cluster_for_parallel_replicas = 'test_cluster_one_shard_three_replicas_localhost', max_parallel_replicas = 3;
|
SETTINGS allow_experimental_parallel_reading_from_replicas = 1, parallel_replicas_for_non_replicated_merge_tree = 1, cluster_for_parallel_replicas = 'test_cluster_one_shard_three_replicas_localhost', max_parallel_replicas = 3;
|
||||||
|
|
||||||
-- Being a subquery should still disable parallel replicas
|
-- Parallel replicas detection should work inside subqueries
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM
|
FROM
|
||||||
(
|
(
|
||||||
@ -37,5 +38,44 @@ FROM
|
|||||||
)
|
)
|
||||||
SETTINGS allow_experimental_parallel_reading_from_replicas = 1, parallel_replicas_for_non_replicated_merge_tree = 1, cluster_for_parallel_replicas = 'test_cluster_one_shard_three_replicas_localhost', max_parallel_replicas = 3;
|
SETTINGS allow_experimental_parallel_reading_from_replicas = 1, parallel_replicas_for_non_replicated_merge_tree = 1, cluster_for_parallel_replicas = 'test_cluster_one_shard_three_replicas_localhost', max_parallel_replicas = 3;
|
||||||
|
|
||||||
|
-- Subquery + subquery
|
||||||
|
SELECT count()
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
SELECT c + 1
|
||||||
|
FROM
|
||||||
|
(
|
||||||
|
WITH filtered_groups AS (SELECT a FROM pr_1 WHERE a >= 10000)
|
||||||
|
SELECT count() as c FROM pr_2 INNER JOIN filtered_groups ON pr_2.a = filtered_groups.a
|
||||||
|
)
|
||||||
|
)
|
||||||
|
SETTINGS allow_experimental_parallel_reading_from_replicas = 1, parallel_replicas_for_non_replicated_merge_tree = 1, cluster_for_parallel_replicas = 'test_cluster_one_shard_three_replicas_localhost', max_parallel_replicas = 3;
|
||||||
|
|
||||||
|
CREATE TABLE numbers_1e6
|
||||||
|
(
|
||||||
|
`n` UInt64
|
||||||
|
)
|
||||||
|
ENGINE = MergeTree
|
||||||
|
ORDER BY n
|
||||||
|
AS SELECT * FROM numbers(1_000_000);
|
||||||
|
|
||||||
|
-- Same but nested CTE's
|
||||||
|
WITH
|
||||||
|
cte1 AS
|
||||||
|
(
|
||||||
|
SELECT n
|
||||||
|
FROM numbers_1e6
|
||||||
|
),
|
||||||
|
cte2 AS
|
||||||
|
(
|
||||||
|
SELECT n
|
||||||
|
FROM numbers_1e6
|
||||||
|
WHERE n IN (cte1)
|
||||||
|
)
|
||||||
|
SELECT count()
|
||||||
|
FROM cte2
|
||||||
|
SETTINGS allow_experimental_parallel_reading_from_replicas = 1, parallel_replicas_for_non_replicated_merge_tree = 1, cluster_for_parallel_replicas = 'test_cluster_one_shard_three_replicas_localhost', max_parallel_replicas = 3;
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS numbers_1e6;
|
||||||
DROP TABLE IF EXISTS pr_1;
|
DROP TABLE IF EXISTS pr_1;
|
||||||
DROP TABLE IF EXISTS pr_2;
|
DROP TABLE IF EXISTS pr_2;
|
||||||
|
Loading…
Reference in New Issue
Block a user