Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(pgdialect): remove unsigned integer conversion
PostgreSQL does not support unsigned integer types. Previously, a Go uint32 type was mapped to the database integer type. When values exceeded the range, they were converted. Even specifying the type as numeric did not prevent this conversion. This update removes the conversion, allowing the database to handle errors appropriately. Fixed #624
- Loading branch information