mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
15 lines
227 B
SQL
15 lines
227 B
SQL
CREATE TABLE a
|
|
(
|
|
`number` UInt64,
|
|
`x` MATERIALIZED x
|
|
)
|
|
ENGINE = MergeTree
|
|
ORDER BY number; --{ serverError 174}
|
|
|
|
CREATE TABLE foo
|
|
(
|
|
i Int32,
|
|
j ALIAS j + 1
|
|
)
|
|
ENGINE = MergeTree() ORDER BY i; --{ serverError 174}
|