Document that "Z" is trimmed when parsing time

This commit is contained in:
Simon Ser 2023-01-26 14:09:06 +01:00 committed by GitHub
parent 1603038a4d
commit 8a3f369b62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -213,7 +213,8 @@ import (
// SQLiteTimestampFormats is timestamp formats understood by both this module
// and SQLite. The first format in the slice will be used when saving time
// values into the database. When parsing a string from a timestamp or datetime
// column, the formats are tried in order.
// column, the formats are tried in order. If the string ends with "Z", that
// suffix is trimmed before trying the formats.
var SQLiteTimestampFormats = []string{
// By default, store timestamps with whatever timezone they come with.
// When parsed, they will be returned with the same timezone.