mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
6 lines
281 B
SQL
6 lines
281 B
SQL
select intDiv(-9223372036854775808, 255);
|
|
select intDiv(-9223372036854775808, 65535);
|
|
select intDiv(-9223372036854775808, 4294967295);
|
|
select intDiv(-9223372036854775808, 18446744073709551615); -- { serverError 153 }
|
|
select intDiv(-9223372036854775808, -1); -- { serverError 153 }
|