zeronull.Timestamptz should use pgtype.Timestamptz

https://github.com/jackc/pgx/issues/1694
pull/1697/head
Jack Christensen 2023-07-22 08:35:32 -05:00
parent e665f74c99
commit 492283b90b
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ func (ts *Timestamptz) Scan(src any) error {
return nil
}
var nullable pgtype.Timestamp
var nullable pgtype.Timestamptz
err := nullable.Scan(src)
if err != nil {
return err