2
0

Rename pgx.Connection to pgx.Conn

This commit is contained in:
Jack Christensen
2014-05-17 13:03:51 -05:00
parent 4f67f16296
commit 4eb597d20b
8 changed files with 99 additions and 99 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ import (
var pool *pgx.ConnectionPool
// afterConnect creates the prepared statements that this application uses
func afterConnect(conn *pgx.Connection) (err error) {
func afterConnect(conn *pgx.Conn) (err error) {
err = conn.Prepare("getUrl", `
select url from shortened_urls where id=$1
`)