mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
1790f01dd9
* Upgrade xorm to v1.2.2 (#16663) Backport #16663 Fix #16683 * Add test to ensure that dumping of login sources remains correct (#16847) #16831 has occurred because of a missed regression. This PR adds a simple test to try to prevent this occuring again. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
62 lines
1.4 KiB
Go
Vendored
62 lines
1.4 KiB
Go
Vendored
// Copyright 2015 The Xorm Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package dialects
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"xorm.io/xorm/schemas"
|
|
)
|
|
|
|
// FormatColumnTime format column time
|
|
func FormatColumnTime(dialect Dialect, dbLocation *time.Location, col *schemas.Column, t time.Time) (interface{}, error) {
|
|
if t.IsZero() {
|
|
if col.Nullable {
|
|
return nil, nil
|
|
}
|
|
|
|
if col.SQLType.IsNumeric() {
|
|
return 0, nil
|
|
}
|
|
}
|
|
|
|
var tmZone = dbLocation
|
|
if col.TimeZone != nil {
|
|
tmZone = col.TimeZone
|
|
}
|
|
|
|
t = t.In(tmZone)
|
|
|
|
switch col.SQLType.Name {
|
|
case schemas.Date:
|
|
return t.Format("2006-01-02"), nil
|
|
case schemas.Time:
|
|
var layout = "15:04:05"
|
|
if col.Length > 0 {
|
|
layout += "." + strings.Repeat("0", col.Length)
|
|
}
|
|
return t.Format(layout), nil
|
|
case schemas.DateTime, schemas.TimeStamp:
|
|
var layout = "2006-01-02 15:04:05"
|
|
if col.Length > 0 {
|
|
layout += "." + strings.Repeat("0", col.Length)
|
|
}
|
|
return t.Format(layout), nil
|
|
case schemas.Varchar:
|
|
return t.Format("2006-01-02 15:04:05"), nil
|
|
case schemas.TimeStampz:
|
|
if dialect.URI().DBType == schemas.MSSQL {
|
|
return t.Format("2006-01-02T15:04:05.9999999Z07:00"), nil
|
|
} else {
|
|
return t.Format(time.RFC3339Nano), nil
|
|
}
|
|
case schemas.BigInt, schemas.Int:
|
|
return t.Unix(), nil
|
|
default:
|
|
return t, nil
|
|
}
|
|
}
|