-
Notifications
You must be signed in to change notification settings - Fork 28
Closed
Description
I have checked the code and saw you have added support for bigint to be mapped to Int64, but for some reason it is mapped to Int32 instead. I'm using version 0.0.32. Thanks!
Edit:
converter.py line 126
if 'integer' in mysql_type or 'int(' in mysql_type: if is_unsigned: return 'UInt32' return 'Int32'
Might this be the culprit? "bigint(20)" does contain "int(" in it causing the field to be mapped to Int32.
bakwc
Metadata
Metadata
Assignees
Labels
No labels

