You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using sqlboiler with PostgreSQL, int4 (integer) columns are generated as int type in Go structs instead of int32. This causes type inconsistency issues because:
PostgreSQL int4 is always 32-bit regardless of platform
Go int is platform-dependent (32-bit on 32-bit systems, 64-bit on 64-bit systems)
This leads to unnecessary type conversions and potential overflow issues on 32-bit systems
Current Behavior
PostgreSQL Schema:
CREATETABLEimg_category (
id SERIALPRIMARY KEY, -- int4 type
......
);