mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
This commit is contained in:
parent
d650476400
commit
3d9a6e9b8e
41
tests/queries/0_stateless/03038_ambiguous_column.sql
Normal file
41
tests/queries/0_stateless/03038_ambiguous_column.sql
Normal file
@ -0,0 +1,41 @@
|
||||
-- https://github.com/ClickHouse/ClickHouse/issues/48308
|
||||
DROP TABLE IF EXISTS 03038_table;
|
||||
|
||||
CREATE TABLE 03038_table
|
||||
(
|
||||
`time` DateTime
|
||||
)
|
||||
ENGINE = MergeTree
|
||||
ORDER BY time;
|
||||
|
||||
SELECT *
|
||||
FROM
|
||||
(
|
||||
SELECT
|
||||
toUInt64(time) AS time,
|
||||
toHour(03038_table.time)
|
||||
FROM 03038_table
|
||||
)
|
||||
ORDER BY time ASC;
|
||||
|
||||
WITH subquery AS (
|
||||
SELECT
|
||||
toUInt64(time) AS time,
|
||||
toHour(03038_table.time)
|
||||
FROM 03038_table
|
||||
)
|
||||
SELECT *
|
||||
FROM subquery
|
||||
ORDER BY subquery.time ASC;
|
||||
|
||||
SELECT *
|
||||
FROM
|
||||
(
|
||||
SELECT
|
||||
toUInt64(time) AS time,
|
||||
toHour(03038_table.time) AS hour
|
||||
FROM 03038_table
|
||||
)
|
||||
ORDER BY time ASC, hour;
|
||||
|
||||
DROP TABLE IF EXISTS 03038_table;
|
Loading…
Reference in New Issue
Block a user