From ec0bae649a4337f09c05fd7522e35d8e806805b4 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Fri, 12 Apr 2019 21:42:16 -0500 Subject: [PATCH] Fix Ping --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index 6ef1b784..275e72e4 100644 --- a/conn.go +++ b/conn.go @@ -685,7 +685,7 @@ func quoteIdentifier(s string) string { } func (c *Conn) Ping(ctx context.Context) error { - _, err := c.Exec(ctx, ";", nil) + _, err := c.Exec(ctx, ";") return err }