Skip to content

Commit fa46730

Browse files
committed
[remove before merging] set analyzer_compatibility_join_using_top_level_identifier
1 parent c8e5309 commit fa46730

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

tests/config/users.d/analyzer.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<profiles>
33
<default>
44
<allow_experimental_analyzer>1</allow_experimental_analyzer>
5+
<!-- Enabled temporary to check all tests with this settings -->
6+
<analyzer_compatibility_join_using_top_level_identifier>1</analyzer_compatibility_join_using_top_level_identifier>
57
</default>
68
</profiles>
79
</clickhouse>

tests/queries/0_stateless/01062_pm_all_join_with_block_continuation.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SET max_memory_usage = 50000000;
22
SET join_algorithm = 'partial_merge';
33

4-
SET analyzer_compatibility_join_using_top_level_identifier = 1;
4+
-- SET analyzer_compatibility_join_using_top_level_identifier = 1;
55

66
SELECT 'defaults';
77

tests/queries/0_stateless/02911_join_using_projection_column.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ DROP TABLE IF EXISTS t1;
55
CREATE TABLE t1 (a UInt64, b UInt64) ENGINE = Memory;
66
INSERT INTO t1 VALUES (1, 2), (3, 4), (5, 6);
77

8-
SET analyzer_compatibility_join_using_top_level_identifier = 1;
8+
-- SET analyzer_compatibility_join_using_top_level_identifier = 1;
99

1010
SELECT 1 as k FROM (SELECT 10 AS a) t1 JOIN (SELECT 1 AS k, 20 AS b) t2 USING k;
1111

0 commit comments

Comments
 (0)