Skip to content

Commit

Permalink
chore: add new endtoend test
Browse files Browse the repository at this point in the history
  • Loading branch information
earayu committed Nov 27, 2024
1 parent 4b9f86b commit 6890f5a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions endtoend/framework/connection_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"database/sql"
"fmt"
"github.com/go-sql-driver/mysql"
"time"
)

func newMysqlConfig(host string, port int, user string, passwd string, dbName string) *mysql.Config {
Expand All @@ -13,8 +12,6 @@ func newMysqlConfig(host string, port int, user string, passwd string, dbName st
Addr: fmt.Sprintf("%s:%d", host, port),
User: user,
Passwd: passwd,
ParseTime: true,
Loc: time.Local,
AllowNativePasswords: true,
DBName: dbName,
}
Expand Down

0 comments on commit 6890f5a

Please sign in to comment.