mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
6 lines
308 B
MySQL
6 lines
308 B
MySQL
|
select intDiv(materialize(toInt32(1)), 0x100000000);
|
||
|
select intDiv(materialize(toInt32(1)), -0x100000000);
|
||
|
select intDiv(materialize(toInt32(1)), -9223372036854775808);
|
||
|
select materialize(toInt32(1)) % -9223372036854775808;
|
||
|
select value % -9223372036854775808 from (select toInt32(arrayJoin([3, 5])) value);
|