Add support for parsing Postgres dates that only use one or two millisecond digits.

This commit is contained in:
Jonathan Bernard 2019-05-19 18:28:22 -05:00
parent d37dc77490
commit 793dbcc611

View File

@ -4,6 +4,8 @@ import json, macros, options, sequtils, strutils, times, timeutils, unicode,
const UNDERSCORE_RUNE = "_".toRunes[0]
const PG_TIMESTAMP_FORMATS = [
"yyyy-MM-dd HH:mm:sszz",
"yyyy-MM-dd HH:mm:ss'.'fzz",
"yyyy-MM-dd HH:mm:ss'.'ffzz",
"yyyy-MM-dd HH:mm:ss'.'fffzz"
]