mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
eded2b8ba0
Refernce files had been checked manually and using this onelinear: $ diff <(jq -r .bool ../tests/queries/0_stateless/02152_bool_type_parsing.stdout) ../tests/queries/0_stateless/02152_bool_type_parsing.reference Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
12 lines
471 B
SQL
12 lines
471 B
SQL
SELECT 1 SETTINGS max_execution_time=NaN; -- { clientError 72 }
|
|
SELECT 1 SETTINGS max_execution_time=Infinity; -- { clientError 72 };
|
|
SELECT 1 SETTINGS max_execution_time=-Infinity; -- { clientError 72 };
|
|
|
|
-- Ok values
|
|
SELECT 1 SETTINGS max_execution_time=-0.5;
|
|
SELECT 1 SETTINGS max_execution_time=0.5;
|
|
SELECT 1 SETTINGS max_execution_time=-1;
|
|
SELECT 1 SETTINGS max_execution_time=0.0;
|
|
SELECT 1 SETTINGS max_execution_time=-0.0;
|
|
SELECT 1 SETTINGS max_execution_time=10;
|