1
0
Fork 0
forked from External/ergo

upgrade mysql driver

This commit is contained in:
Shivaram Lingamneni 2021-04-19 06:42:39 -04:00
parent 3ceb346c61
commit 57c5030e91
20 changed files with 387 additions and 227 deletions

View file

@ -32,3 +32,8 @@ type NullTime struct {
Time time.Time
Valid bool // Valid is true if Time is not NULL
}
// for internal use.
// the mysql package uses sql.NullTime if it is available.
// if not, the package uses mysql.NullTime.
type nullTime = NullTime // sql.NullTime is not available