mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
21 lines
399 B
Plaintext
21 lines
399 B
Plaintext
hello
|
|
hello
|
|
hello
|
|
hello
|
|
hello
|
|
hello
|
|
hello
|
|
hello
|
|
1970-01-01 00:00:01
|
|
CREATE TABLE default.cast
|
|
(
|
|
`x` UInt8,
|
|
`e` Enum8('hello' = 1, 'world' = 2) DEFAULT CAST(x, 'Enum8(\'hello\' = 1, \'world\' = 2)')
|
|
)
|
|
ENGINE = MergeTree
|
|
ORDER BY e
|
|
SETTINGS index_granularity = 8192
|
|
x UInt8
|
|
e Enum8(\'hello\' = 1, \'world\' = 2) DEFAULT CAST(x, \'Enum8(\\\'hello\\\' = 1, \\\'world\\\' = 2)\')
|
|
1 hello
|