Add additional info for nullable pgtype types

Additional information warns about using nullable types being
used as parameters to query with Valid set to false.
pull/2113/head
mateuszkowalke 2024-08-22 06:51:58 +02:00
parent 4f7e19d67d
commit 4171f554d4
1 changed files with 3 additions and 0 deletions

View File

@ -53,6 +53,9 @@ similar fashion to database/sql. The second is to use a pointer to a pointer.
return err
}
When using nullable pgtype types as parameters for queries, one has to remember
to explicitly set their Valid field to true, otherwise the parameter's value will be NULL.
JSON Support
pgtype automatically marshals and unmarshals data from json and jsonb PostgreSQL types.