Fix go modules
Wow. This is fun. Sure is easy to get modules wrong when upgrading a v2+ project.
This commit is contained in:
@@ -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"
|
||||
)
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
@@ -6,7 +6,7 @@ import (
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/jackc/pgx/pgtype"
|
||||
"github.com/jackc/pgx/v4/pgtype"
|
||||
"github.com/shopspring/decimal"
|
||||
)
|
||||
|
||||
|
||||
@@ -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"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user