mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
11 lines
440 B
MySQL
11 lines
440 B
MySQL
|
SELECT toInt64(inf); -- { serverError 70 }
|
||
|
SELECT toInt128(inf); -- { serverError 70 }
|
||
|
SELECT toInt256(inf); -- { serverError 70 }
|
||
|
SELECT toInt64(nan); -- { serverError 70 }
|
||
|
SELECT toInt128(nan); -- { serverError 70 }
|
||
|
SELECT toInt256(nan); -- { serverError 70 }
|
||
|
SELECT toUInt64(inf); -- { serverError 70 }
|
||
|
SELECT toUInt256(inf); -- { serverError 70 }
|
||
|
SELECT toUInt64(nan); -- { serverError 70 }
|
||
|
SELECT toUInt256(nan); -- { serverError 70 }
|