mysql: use a datetime column with microsecond precision in test

This commit is contained in:
Marcus Efraimsson 2018-04-10 16:37:39 +02:00
parent 97f67ddcb8
commit 6cb891dca8
No known key found for this signature in database
GPG Key ID: EBFE0FB04612DD4A

View File

@ -309,7 +309,7 @@ func TestMySQL(t *testing.T) {
Convey("Given a table with metrics having multiple values and measurements", func() {
type metric_values struct {
Time time.Time `xorm:"datetime 'time' not null"`
TimeNullable *time.Time `xorm:"datetime 'timeNullable' null"`
TimeNullable *time.Time `xorm:"datetime(6) 'timeNullable' null"`
TimeInt64 int64 `xorm:"bigint(20) 'timeInt64' not null"`
TimeInt64Nullable *int64 `xorm:"bigint(20) 'timeInt64Nullable' null"`
TimeFloat64 float64 `xorm:"double 'timeFloat64' not null"`