We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b35732c commit a8e5b24Copy full SHA for a8e5b24
types/time.go
@@ -59,7 +59,7 @@ const (
59
// MaxDuration is the maximum for duration.
60
MaxDuration int64 = 838*10000 + 59*100 + 59
61
// MinTime is the minimum for mysql time type.
62
- MinTime = -gotime.Duration(838*3600 + 59*60 + 59) * gotime.Second
+ MinTime = -gotime.Duration(838*3600+59*60+59) * gotime.Second
63
// MaxTime is the maximum for mysql time type.
64
MaxTime = gotime.Duration(838*3600+59*60+59) * gotime.Second
65
// ZeroDatetimeStr is the string representation of a zero datetime.
0 commit comments