2
0

Bump module version to v5

This commit is contained in:
Jack Christensen
2021-12-11 13:29:03 -06:00
parent 390bd79757
commit 72cc95e4dd
151 changed files with 287 additions and 287 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ package zeronull
import (
"database/sql/driver"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type Float8 float64
+2 -2
View File
@@ -3,8 +3,8 @@ package zeronull_test
import (
"testing"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestFloat8Transcode(t *testing.T) {
+1 -1
View File
@@ -3,7 +3,7 @@ package zeronull
import (
"database/sql/driver"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type Int2 int16
+2 -2
View File
@@ -3,8 +3,8 @@ package zeronull_test
import (
"testing"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestInt2Transcode(t *testing.T) {
+1 -1
View File
@@ -3,7 +3,7 @@ package zeronull
import (
"database/sql/driver"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type Int4 int32
+2 -2
View File
@@ -3,8 +3,8 @@ package zeronull_test
import (
"testing"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestInt4Transcode(t *testing.T) {
+1 -1
View File
@@ -3,7 +3,7 @@ package zeronull
import (
"database/sql/driver"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type Int8 int64
+2 -2
View File
@@ -3,8 +3,8 @@ package zeronull_test
import (
"testing"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestInt8Transcode(t *testing.T) {
+1 -1
View File
@@ -3,7 +3,7 @@ package zeronull
import (
"database/sql/driver"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type Text string
+2 -2
View File
@@ -3,8 +3,8 @@ package zeronull_test
import (
"testing"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestTextTranscode(t *testing.T) {
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"database/sql/driver"
"time"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type Timestamp time.Time
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"testing"
"time"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestTimestampTranscode(t *testing.T) {
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"database/sql/driver"
"time"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type Timestamptz time.Time
+2 -2
View File
@@ -4,8 +4,8 @@ import (
"testing"
"time"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestTimestamptzTranscode(t *testing.T) {
+1 -1
View File
@@ -3,7 +3,7 @@ package zeronull
import (
"database/sql/driver"
"github.com/jackc/pgx/v4/pgtype"
"github.com/jackc/pgx/v5/pgtype"
)
type UUID [16]byte
+2 -2
View File
@@ -3,8 +3,8 @@ package zeronull_test
import (
"testing"
"github.com/jackc/pgx/v4/pgtype/testutil"
"github.com/jackc/pgx/v4/pgtype/zeronull"
"github.com/jackc/pgx/v5/pgtype/testutil"
"github.com/jackc/pgx/v5/pgtype/zeronull"
)
func TestUUIDTranscode(t *testing.T) {