Just a test

This commit is contained in:
Nikita Mikhaylov 2024-04-02 17:29:01 +00:00
parent 9ffe6a4640
commit 9673e0a9fc
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,2 @@
(1,1) (1,0)
(3,4) (3,11)

View File

@ -0,0 +1,31 @@
-- https://github.com/ClickHouse/ClickHouse/pull/40065
SELECT
(
SELECT
1 AS number,
number
FROM numbers(1)
) AS s,
(
SELECT
1,
number
FROM numbers(1)
) AS s2;
SELECT
(
SELECT
1 + 2 AS number,
1 + number AS b
FROM system.numbers
LIMIT 10, 1
),
(
SELECT
1 + 2 AS number2,
1 + number AS b
FROM system.numbers
LIMIT 10, 1
);