We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3698598 commit 60af40aCopy full SHA for 60af40a
neo4j/internal/bolt/hydrator.go
@@ -758,7 +758,8 @@ func (h *hydrator) dateTimeNamedZone(n uint32) interface{} {
758
h.unp.Next()
759
nanos := h.unp.Int()
760
761
- zone := h.unp.String() // time.Time in local timezone, e.g. 15th of June 2020, 15:30 in Paris (UTC+2h)
+ zone := h.unp.String()
762
+ // time.Time in local timezone, e.g. 15th of June 2020, 15:30 in Paris (UTC+2h)
763
unixTime := time.Unix(seconds, nanos)
764
// time.Time computed in UTC timezone, e.g. 15th of June 2020, 13:30 in UTC
765
utcTime := unixTime.UTC()
0 commit comments