mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
13 lines
494 B
MySQL
13 lines
494 B
MySQL
|
-- Tags: no-parallel
|
||
|
-- Bug: https://github.com/ClickHouse/ClickHouse/issues/38863
|
||
|
|
||
|
DROP SETTINGS PROFILE IF EXISTS 02294_profile1, 02294_profile2;
|
||
|
|
||
|
CREATE SETTINGS PROFILE 02294_profile1 SETTINGS timeout_before_checking_execution_speed = 3 TO default;
|
||
|
SHOW CREATE SETTINGS PROFILE 02294_profile1;
|
||
|
|
||
|
CREATE SETTINGS PROFILE 02294_profile2 SETTINGS max_execution_time = 0.5 TO default;
|
||
|
SHOW CREATE SETTINGS PROFILE 02294_profile2;
|
||
|
|
||
|
DROP SETTINGS PROFILE IF EXISTS 02294_profile1, 02294_profile2;
|