mirror of https://github.com/jackc/pgx.git
39 lines
1.0 KiB
Go
39 lines
1.0 KiB
Go
package pgtype_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
"github.com/jackc/pgx/v5/pgxtest"
|
|
)
|
|
|
|
func TestTIDCodec(t *testing.T) {
|
|
skipCockroachDB(t, "Server does not support type tid")
|
|
|
|
pgxtest.RunValueRoundTripTests(context.Background(), t, defaultConnTestRunner, nil, "tid", []pgxtest.ValueRoundTripTest{
|
|
{
|
|
pgtype.TID{BlockNumber: 42, OffsetNumber: 43, Valid: true},
|
|
new(pgtype.TID),
|
|
isExpectedEq(pgtype.TID{BlockNumber: 42, OffsetNumber: 43, Valid: true}),
|
|
},
|
|
{
|
|
pgtype.TID{BlockNumber: 4294967295, OffsetNumber: 65535, Valid: true},
|
|
new(pgtype.TID),
|
|
isExpectedEq(pgtype.TID{BlockNumber: 4294967295, OffsetNumber: 65535, Valid: true}),
|
|
},
|
|
{
|
|
pgtype.TID{BlockNumber: 42, OffsetNumber: 43, Valid: true},
|
|
new(string),
|
|
isExpectedEq("(42,43)"),
|
|
},
|
|
{
|
|
pgtype.TID{BlockNumber: 4294967295, OffsetNumber: 65535, Valid: true},
|
|
new(string),
|
|
isExpectedEq("(4294967295,65535)"),
|
|
},
|
|
{pgtype.TID{}, new(pgtype.TID), isExpectedEq(pgtype.TID{})},
|
|
{nil, new(pgtype.TID), isExpectedEq(pgtype.TID{})},
|
|
})
|
|
}
|