2020-10-14 12:19:29 +00:00
|
|
|
CREATE TABLE default.table_from_remote\n(\n `number` UInt64\n) AS remote(\'localhost\', \'system\', \'numbers\')
|
|
|
|
CREATE TABLE default.table_from_remote\n(\n `number` UInt64,\n `col` UInt8\n) AS remote(\'localhost\', \'system\', \'numbers\')
|
|
|
|
CREATE TABLE default.table_from_numbers\n(\n `number` UInt64\n) AS numbers(1000)
|
|
|
|
CREATE TABLE default.table_from_numbers\n(\n `number` UInt64\n) AS numbers(1000)
|
2020-09-01 07:26:31 +00:00
|
|
|
CREATE TABLE default.table_from_select\n(\n `number` UInt64\n)\nENGINE = MergeTree()\nORDER BY tuple()\nSETTINGS index_granularity = 8192
|
|
|
|
CREATE TABLE default.table_from_select\n(\n `number` UInt64,\n `col` UInt8\n)\nENGINE = MergeTree()\nORDER BY tuple()\nSETTINGS index_granularity = 8192
|