2
0

Fix go modules

Wow. This is fun. Sure is easy to get modules wrong when upgrading a v2+
project.
This commit is contained in:
Jack Christensen
2019-04-20 17:41:08 -05:00
parent 6161728ff9
commit 8502a12ac7
71 changed files with 143 additions and 143 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import (
"github.com/pkg/errors"
"github.com/jackc/pgx/pgtype"
"github.com/jackc/pgx/v4/pgtype"
uuid "github.com/satori/go.uuid"
)
+3 -3
View File
@@ -4,9 +4,9 @@ import (
"bytes"
"testing"
"github.com/jackc/pgx/pgtype"
satori "github.com/jackc/pgx/pgtype/ext/satori-uuid"
"github.com/jackc/pgx/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype"
satori "github.com/jackc/pgx/v4/pgtype/ext/satori-uuid"
"github.com/jackc/pgx/v4/pgtype/testutil"
)
func TestUUIDTranscode(t *testing.T) {
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"github.com/pkg/errors"
"github.com/jackc/pgx/pgtype"
"github.com/jackc/pgx/v4/pgtype"
"github.com/shopspring/decimal"
)
+3 -3
View File
@@ -7,9 +7,9 @@ import (
"reflect"
"testing"
"github.com/jackc/pgx/pgtype"
shopspring "github.com/jackc/pgx/pgtype/ext/shopspring-numeric"
"github.com/jackc/pgx/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype"
shopspring "github.com/jackc/pgx/v4/pgtype/ext/shopspring-numeric"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/shopspring/decimal"
)