mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
17 lines
496 B
Plaintext
17 lines
496 B
Plaintext
engine : Memory
|
|
CREATE DATABASE default\nENGINE = Memory()\nCOMMENT \'Test DB with comment\'
|
|
comment= Test DB with comment
|
|
|
|
engine : Atomic
|
|
CREATE DATABASE default\nENGINE = Atomic\nCOMMENT \'Test DB with comment\'
|
|
comment= Test DB with comment
|
|
|
|
engine : Ordinary
|
|
CREATE DATABASE default\nENGINE = Ordinary\nCOMMENT \'Test DB with comment\'
|
|
comment= Test DB with comment
|
|
|
|
engine : Lazy(1)
|
|
CREATE DATABASE default\nENGINE = Lazy(1)\nCOMMENT \'Test DB with comment\'
|
|
comment= Test DB with comment
|
|
|