Fix some previously broken comment links

query-exec-mode
Jack Christensen 2021-12-11 13:30:36 -06:00
parent 72cc95e4dd
commit 85b08ac663
4 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ import (
"github.com/stretchr/testify/require"
)
// https://github.com/jackc/pgx/v4/pgtype/issues/78
// https://github.com/jackc/pgtype/issues/78
func TestTextArrayDecodeTextNull(t *testing.T) {
textArray := &pgtype.TextArray{}
err := textArray.DecodeText(nil, []byte(`{abc,"NULL",NULL,def}`))

View File

@ -99,7 +99,7 @@ func TestTimestampNanosecondsTruncated(t *testing.T) {
}
}
// https://github.com/jackc/pgx/v4/pgtype/issues/74
// https://github.com/jackc/pgtype/issues/74
func TestTimestampDecodeTextInvalid(t *testing.T) {
tstz := &pgtype.Timestamp{}
err := tstz.DecodeText(nil, []byte(`eeeee`))

View File

@ -99,7 +99,7 @@ func TestTimestamptzNanosecondsTruncated(t *testing.T) {
}
}
// https://github.com/jackc/pgx/v4/pgtype/issues/74
// https://github.com/jackc/pgtype/issues/74
func TestTimestamptzDecodeTextInvalid(t *testing.T) {
tstz := &pgtype.Timestamptz{}
err := tstz.DecodeText(nil, []byte(`eeeee`))

View File

@ -41,7 +41,7 @@ func TestTstzrangeTranscode(t *testing.T) {
})
}
// https://github.com/jackc/pgx/v4/pgtype/issues/74
// https://github.com/jackc/pgtype/issues/74
func TestTstzRangeDecodeTextInvalid(t *testing.T) {
tstzrange := &pgtype.Tstzrange{}
err := tstzrange.DecodeText(nil, []byte(`[eeee,)`))