Closed vaeng closed 8 months ago
Are we overflowing here?
❯ sqlite3
SQLite version 3.37.2 2022-01-06 13:25:41
sqlite> select POWER(2, 64) - 1;
1.84467440737096e+19
sqlite> .quit
❯ python3
Python 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0] on linux
>>> 2**64 -1
18446744073709551615
@glennj seems okay, I can't find any hard limits.
Are we overflowing here?
SET result = POWER(2, 64) - 1