2
0

Update underlying packages to final release versions

This commit is contained in:
Jack Christensen
2019-09-14 20:31:06 -05:00
parent 7d053e4d5c
commit 2799739ef3
3 changed files with 21 additions and 8 deletions
+3 -3
View File
@@ -16,9 +16,9 @@ import (
"github.com/jackc/pgconn"
"github.com/jackc/pgconn/stmtcache"
"github.com/jackc/pgtype"
satori "github.com/jackc/pgtype/ext/satori-uuid"
gofrs "github.com/jackc/pgtype/ext/gofrs-uuid"
"github.com/jackc/pgx/v4"
uuid "github.com/satori/go.uuid"
"github.com/gofrs/uuid"
"github.com/shopspring/decimal"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -1162,7 +1162,7 @@ func TestConnQueryDatabaseSQLDriverValuerWithBinaryPgTypeThatAcceptsSameType(t *
defer closeConn(t, conn)
conn.ConnInfo().RegisterDataType(pgtype.DataType{
Value: &satori.UUID{},
Value: &gofrs.UUID{},
Name: "uuid",
OID: 2950,
})