diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2015-04-15 16:26:27 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2015-04-15 16:26:27 +0900 |
commit | dee1a37fe11067e97971fac64fa5bff4ef0934f4 (patch) | |
tree | b232f6206d6c345b0486f84263a3e85d40d2ebb4 /sqlite3.go | |
parent | Merge pull request #194 from hallyn/tximm.2 (diff) | |
download | golite-dee1a37fe11067e97971fac64fa5bff4ef0934f4.tar.gz golite-dee1a37fe11067e97971fac64fa5bff4ef0934f4.tar.xz |
Z suffix should be no-op
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -650,6 +650,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error { switch rc.decltype[i] { case "timestamp", "datetime", "date": var t time.Time + s = strings.TrimSuffix(s, "Z") for _, format := range SQLiteTimestampFormats { if timeVal, err = time.ParseInLocation(format, s, time.UTC); err == nil { t = timeVal |