Просмотр исходного кода

mysql: use a datetime column with microsecond precision in test

Marcus Efraimsson 7 лет назад
Родитель
Сommit
6cb891dca8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      pkg/tsdb/mysql/mysql_test.go

+ 1 - 1
pkg/tsdb/mysql/mysql_test.go

@@ -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"`