Skip to content
Snippets Groups Projects
Commit 728d79d9 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

link to sqlite3 docs about integers

parent 1a5da05e
No related branches found
No related tags found
No related merge requests found
......@@ -1220,6 +1220,8 @@ def tables() -> SearchStrategy[Table]:
# Python has unbounded integers but SQLite3 integers must fall into this
# range.
#
# https://www.sqlite.org/floatingpoint.html#how_sqlite_stores_numbers
_sql_integer = integers(min_value=-(2 ** 63) + 1, max_value=2 ** 63 - 1)
# SQLite3 can do infinity and NaN but I don't know how to get them through the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment