From a8e5b24e9bc41f4fc8fff0891d2974a8c85ed570 Mon Sep 17 00:00:00 2001 From: qw4990 Date: Wed, 20 Mar 2019 16:20:05 +0800 Subject: [PATCH] refmt --- types/time.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/time.go b/types/time.go index c314767478849..cda6d2041d716 100644 --- a/types/time.go +++ b/types/time.go @@ -59,7 +59,7 @@ const ( // MaxDuration is the maximum for duration. MaxDuration int64 = 838*10000 + 59*100 + 59 // MinTime is the minimum for mysql time type. - MinTime = -gotime.Duration(838*3600 + 59*60 + 59) * gotime.Second + MinTime = -gotime.Duration(838*3600+59*60+59) * gotime.Second // MaxTime is the maximum for mysql time type. MaxTime = gotime.Duration(838*3600+59*60+59) * gotime.Second // ZeroDatetimeStr is the string representation of a zero datetime.