mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
11 lines
403 B
SQL
11 lines
403 B
SQL
select toInt64('--1'); -- { serverError 72; }
|
|
select toInt64('+-1'); -- { serverError 72; }
|
|
select toInt64('++1'); -- { serverError 72; }
|
|
select toInt64('++'); -- { serverError 72; }
|
|
select toInt64('+'); -- { serverError 72; }
|
|
select toInt64('1+1'); -- { serverError 6; }
|
|
select toInt64('1-1'); -- { serverError 6; }
|
|
select toInt64(''); -- { serverError 32; }
|
|
select toInt64('1');
|
|
select toInt64('-1');
|