Skip to content

Commit

Permalink
BQTimestamp time should be UTC
Browse files Browse the repository at this point in the history
  • Loading branch information
philpearl committed Jan 5, 2024
1 parent 4970b86 commit d92227a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plenccodec/time.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ func (c BQTimestampCodec) Read(data []byte, ptr unsafe.Pointer, wt plenccore.Wir
if err != nil {
return n, err
}
*(*time.Time)(ptr) = time.UnixMicro(ts)
*(*time.Time)(ptr) = time.UnixMicro(ts).UTC()
return n, nil
}

Expand Down

0 comments on commit d92227a

Please sign in to comment.