mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
15 lines
227 B
MySQL
15 lines
227 B
MySQL
|
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}
|