mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
16 lines
664 B
SQL
16 lines
664 B
SQL
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');
|