We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5b62b1 commit 039dcc2Copy full SHA for 039dcc2
driver/driver.go
@@ -43,7 +43,6 @@ type connInfo struct {
43
//
44
// Optional parameters are supported in the standard DSN form
45
func parseDSN(dsn string) (connInfo, error) {
46
-
47
var matchErr error
48
ci := connInfo{}
49
@@ -81,7 +80,6 @@ func parseDSN(dsn string) (connInfo, error) {
81
80
// Open takes a supplied DSN string and opens a connection
82
// See ParseDSN for more information on the form of the DSN
83
func (d driver) Open(dsn string) (sqldriver.Conn, error) {
84
85
var c *client.Conn
86
87
ci, err := parseDSN(dsn)
0 commit comments