mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
11 lines
405 B
SQL
11 lines
405 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 72; }
|
|
select toInt64('1-1'); -- { serverError 72; }
|
|
select toInt64(''); -- { serverError 32; }
|
|
select toInt64('1');
|
|
select toInt64('-1');
|