mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
35 lines
781 B
SQL
35 lines
781 B
SQL
select * from system.settings where name = 'send_timeout';
|
|
select * from system.merge_tree_settings order by length(description) limit 1;
|
|
|
|
with [
|
|
'Seconds',
|
|
'Bool',
|
|
'Int64',
|
|
'String',
|
|
'Char',
|
|
'LogsLevel',
|
|
'URI',
|
|
'Float',
|
|
'UInt64',
|
|
'MaxThreads',
|
|
'Milliseconds',
|
|
'JoinStrictness',
|
|
'JoinAlgorithm',
|
|
'OverflowMode',
|
|
'TotalsMode',
|
|
'LoadBalancing',
|
|
'OverflowModeGroupBy',
|
|
'DateTimeInputFormat',
|
|
'DistributedProductMode'
|
|
] as types select hasAll(arrayDistinct(groupArray(type)), types) from system.settings;
|
|
|
|
with [
|
|
'Seconds',
|
|
'Bool',
|
|
'Int64',
|
|
'String',
|
|
'Float',
|
|
'UInt64',
|
|
'MaxThreads'
|
|
] as types select hasAll(arrayDistinct(groupArray(type)), types) from system.merge_tree_settings;
|