mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
16 lines
664 B
MySQL
16 lines
664 B
MySQL
|
SELECT accurateCast(1e35, 'UInt32'); -- { serverError 70 }
|
||
|
SELECT accurateCast(1e35, 'UInt64'); -- { serverError 70 }
|
||
|
SELECT accurateCast(1e35, 'UInt128'); -- { serverError 70 }
|
||
|
SELECT accurateCast(1e35, 'UInt256'); -- { serverError 70 }
|
||
|
|
||
|
SELECT accurateCast(1e19, 'UInt64');
|
||
|
SELECT accurateCast(1e19, 'UInt128');
|
||
|
SELECT accurateCast(1e19, 'UInt256');
|
||
|
SELECT accurateCast(1e20, 'UInt64'); -- { serverError 70 }
|
||
|
SELECT accurateCast(1e20, 'UInt128'); -- { serverError 70 }
|
||
|
SELECT accurateCast(1e20, 'UInt256'); -- { serverError 70 }
|
||
|
|
||
|
SELECT accurateCast(1e19, 'Int64'); -- { serverError 70 }
|
||
|
SELECT accurateCast(1e19, 'Int128');
|
||
|
SELECT accurateCast(1e19, 'Int256');
|