No return error when invalid datetime.

systemlib
mattn 2012-12-26 09:52:55 +09:00
parent 7ea7c83912
commit acf6044aaf
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error {
if err != nil {
dest[i], err = time.Parse(SQLiteDatetimeFormat, s)
if err != nil {
return err
dest[i] = s
}
}
}