mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Basic system.settings/merge_tree_settings coverage
This commit is contained in:
parent
2090925270
commit
419150d81b
@ -0,0 +1,4 @@
|
||||
send_timeout 300 0 \N \N 0 SettingSeconds
|
||||
replicated_max_parallel_sends 0 0 Limit parallel sends. SettingUInt64
|
||||
1
|
||||
1
|
34
dbms/tests/queries/0_stateless/01221_system_settings.sql
Normal file
34
dbms/tests/queries/0_stateless/01221_system_settings.sql
Normal file
@ -0,0 +1,34 @@
|
||||
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;
|
Loading…
Reference in New Issue
Block a user