1 Star 1 Fork 0

bigbase/pg

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
time.go 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
Vladimir Mihailenco 提交于 2016-10-11 10:31 . Faster time appending.
package types
import "time"
const (
dateFormat = "2006-01-02"
timeFormat = "15:04:05.999999999"
timestampFormat = "2006-01-02 15:04:05.999999999"
timestamptzFormat = "2006-01-02 15:04:05.999999999-07:00:00"
timestamptzFormat2 = "2006-01-02 15:04:05.999999999-07:00"
timestamptzFormat3 = "2006-01-02 15:04:05.999999999-07"
)
func ParseTime(b []byte) (time.Time, error) {
switch l := len(b); {
case l <= len(dateFormat):
return time.Parse(dateFormat, string(b))
case l <= len(timeFormat):
return time.Parse(timeFormat, string(b))
default:
if c := b[len(b)-9]; c == '+' || c == '-' {
return time.Parse(timestamptzFormat, string(b))
}
if c := b[len(b)-6]; c == '+' || c == '-' {
return time.Parse(timestamptzFormat2, string(b))
}
if c := b[len(b)-3]; c == '+' || c == '-' {
return time.Parse(timestamptzFormat3, string(b))
}
return time.ParseInLocation(timestampFormat, string(b), time.Local)
}
}
func AppendTime(b []byte, tm time.Time, quote int) []byte {
if quote == 1 {
b = append(b, '\'')
}
b = tm.AppendFormat(b, timestamptzFormat)
if quote == 1 {
b = append(b, '\'')
}
return b
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bigbase/pg.git
git@gitee.com:bigbase/pg.git
bigbase
pg
pg
v5.2.7

搜索帮助