mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 00:55:55 +00:00
treat import timestamps as UTC
This commit is contained in:
parent
151fd62e64
commit
e7481f4fd2
1 changed files with 1 additions and 1 deletions
2
api.go
2
api.go
|
|
@ -732,7 +732,7 @@ func (api *API) Import(_ context.Context, req *ImportRequest) error {
|
|||
if ts == 0 {
|
||||
continue
|
||||
}
|
||||
t := time.Unix(0, ts)
|
||||
t := time.Unix(0, ts).UTC()
|
||||
timestamps[i] = &t
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue