Test getSharedConnection handles dead connections

If a test does something that kills a connection, it previously
would break all subsequent tests that used the shared connection.
It no longer does.
pgx-vs-pq
Jack Christensen 2013-07-26 16:45:27 -05:00
parent c36c0875c9
commit c96fa440cc
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ type test interface {
var sharedConnection *pgx.Connection
func getSharedConnection(t test) (c *pgx.Connection) {
if sharedConnection == nil {
if sharedConnection == nil || !sharedConnection.IsAlive() {
var err error
sharedConnection, err = pgx.Connect(*defaultConnectionParameters)
if err != nil {