We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b750718 commit 397cb83Copy full SHA for 397cb83
drivers.go
@@ -1,8 +1,8 @@
1
package sqltest
2
3
import (
4
+ _ "github.com/go-sql-driver/mysql"
5
+ _ "github.com/lib/pq"
6
_ "github.com/mattn/go-sqlite3"
7
_ "github.com/ziutek/mymysql/godrv"
- _ "github.com/Go-SQL-Driver/MySQL"
- _ "github.com/bmizerany/pq"
8
)
sql_test.go
@@ -25,7 +25,7 @@ var (
25
pq Tester = &pqDB{}
26
27
28
-// pqDB validates the postgres driver by Blake Mizerany (github.com/bmizerany/pq.go)
+// pqDB validates the postgres driver by Blake Mizerany (github.com/lib/pq.go)
29
type pqDB struct {
30
once sync.Once // guards init of running
31
running bool // whether port 5432 is listening
0 commit comments