Jaymon / prom

A PostgreSQL or SQLite orm for Python
MIT License
22 stars 4 forks source link

Long handling #101

Closed Jaymon closed 1 year ago

Jaymon commented 4 years ago

Version 1.2.0 has Postgres return integer for any long value using a type adapter in python 2.7. Python 3 doesn't have this problem because long doesn't exist, so there actually isn't any good way to specify BIGINT which is a separate but related problem.

I think when python2 support is dropped then all the long stuff should just be removed, there are just really hairy parts:

Jaymon commented 2 years ago

https://github.com/Jaymon/prom/issues/57