From 42d3d00734b2c3aba2d960f8d3c344b494350812 Mon Sep 17 00:00:00 2001 From: Phil Constantinou Date: Sun, 5 Jan 2025 19:19:17 -0800 Subject: [PATCH] Parse as a UTC time --- pgtype/timestamp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgtype/timestamp.go b/pgtype/timestamp.go index e6e2cc65..89718221 100644 --- a/pgtype/timestamp.go +++ b/pgtype/timestamp.go @@ -112,7 +112,7 @@ func (ts *Timestamp) UnmarshalJSON(b []byte) error { if err == nil { *ts = Timestamp{Time: tim, Valid: true} } - tim, err = time.Parse(jsonISO8601, tss) + tim, err = time.ParseInLocation(jsonISO8601, tss, time.UTC) if err == nil { *ts = Timestamp{Time: tim, Valid: true} }