improve unit testing case for driver feature og package gdb

This commit is contained in:
John
2020-03-08 12:18:07 +08:00
parent 5b7576430f
commit 5bed5a1532

View File

@ -48,7 +48,7 @@ func (d *MyDriver) HandleSqlBeforeExec(sql string) string {
func init() {
// It here registers my custom driver in package initialization function "init".
// You can later using this type in the configuration.
// You can later use this type in the database configuration.
gdb.Register(customDriverName, &MyDriver{})
}