Renan
Results
2
comments of
Renan
For the record, to override `smallint` type I had to do: ```yml overrides: - db_type: "pg_catalog.int2" go_type: "uint8" ```
Since [pgxpoolmock](https://github.com/driftprogramming/pgxpoolmock) mentioned above apparently is not maintained anymore and does not support v5, the same can be done with [pgxmock](github.com/pashagolub/pgxmock) with the [`.Kind()` func](https://pkg.go.dev/github.com/pashagolub/pgxmock/v3#Rows.Kind), e.g.: ```go import ( "github.com/pashagolub/pgxmock/v3"...