diff --git a/sqlite3.go b/sqlite3.go index 64933f15..77858ce3 100644 --- a/sqlite3.go +++ b/sqlite3.go @@ -898,7 +898,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error { } else { val *= int64(time.Second) // convert sec to nsec } - t = time.Unix(0, val).UTC() + t = time.Unix(0, val) if rc.s.c.loc != nil { t = t.In(rc.s.c.loc) }