mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
35 lines
963 B
SQL
35 lines
963 B
SQL
select * from system.settings where name = 'send_timeout';
|
|
select * from system.merge_tree_settings order by length(description) limit 1;
|
|
|
|
with [
|
|
'SettingSeconds',
|
|
'SettingBool',
|
|
'SettingInt64',
|
|
'SettingString',
|
|
'SettingChar',
|
|
'SettingLogsLevel',
|
|
'SettingURI',
|
|
'SettingFloat',
|
|
'SettingUInt64',
|
|
'SettingMaxThreads',
|
|
'SettingMilliseconds',
|
|
'SettingJoinStrictness',
|
|
'SettingJoinAlgorithm',
|
|
'SettingOverflowMode',
|
|
'SettingTotalsMode',
|
|
'SettingLoadBalancing',
|
|
'SettingOverflowModeGroupBy',
|
|
'SettingDateTimeInputFormat',
|
|
'SettingDistributedProductMode'
|
|
] as types select hasAll(arrayDistinct(groupArray(type)), types) from system.settings;
|
|
|
|
with [
|
|
'SettingSeconds',
|
|
'SettingBool',
|
|
'SettingInt64',
|
|
'SettingString',
|
|
'SettingFloat',
|
|
'SettingUInt64',
|
|
'SettingMaxThreads'
|
|
] as types select hasAll(arrayDistinct(groupArray(type)), types) from system.merge_tree_settings;
|