mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 09:52:38 +00:00
17 lines
496 B
Plaintext
17 lines
496 B
Plaintext
|
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
|
||
|
|
||
|
engine : Memory
|
||
|
CREATE DATABASE default\nENGINE = Memory()\nCOMMENT \'Test DB with comment\'
|
||
|
comment= Test DB with comment
|
||
|
|