mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
This commit is contained in:
parent
197e6008ea
commit
bd90cd532f
@ -0,0 +1,10 @@
|
||||
0 0
|
||||
1 1
|
||||
2 2
|
||||
3 3
|
||||
4 4
|
||||
5 5
|
||||
6 6
|
||||
7 7
|
||||
8 8
|
||||
9 9
|
@ -0,0 +1,7 @@
|
||||
-- https://github.com/ClickHouse/ClickHouse/issues/24395
|
||||
CREATE TABLE xxxx_yyy (key UInt32, key_b ALIAS key) ENGINE=MergeTree() ORDER BY key;
|
||||
INSERT INTO xxxx_yyy SELECT number FROM numbers(10);
|
||||
|
||||
SELECT *
|
||||
FROM xxxx_yyy AS a
|
||||
INNER JOIN xxxx_yyy AS b ON a.key = b.key_b;
|
Loading…
Reference in New Issue
Block a user