Nick Farrell
Nick Farrell
Provide some backwards-compatible configuration options for pgxpool which streamlines the use of the bulk loading of custom types: - AutoLoadTypes: a list of type (or class) names to automatically load...
Sometimes pgx is not capable of inferring the correct codec by inspecting the database, as is done with LoadType(s), and requires a user-defined operation to be performed instead. To allow...
I am using pgx with a database which defines a very large number of custom types. Virtually every stored procedure returns a custom type, and any given application needs at...
I am using pgx(pool) with a database where there are a lot of custom types which need registering. Even using some smarts to only register the types actually used by...
Consider the inclusion of something like the following in the package's README, as an alternative to the existing recommended boilerplate for handling paginated responses. Generics were introduced in version `1.18`,...
Some operations (such as assigning a reserved IP address to a newly-created droplet) can return a `422` HTTP status code. According to the standards, `422` errors are not supposed to...
Instead of requiring consumers of godo to hand-craft separate wrapper functions for each paginated List* function, demonstrate how to use golang generics to write a single helper. Additionally, use the...
`go get` no longer works for recent go versions. Replace these references with something like ```bash go install github.com/erning/gorun@latest ```