Skip to content

Commit 32a6b1b

Browse files
committed
Skip xid8 test on PG < 13 and CRDB
1 parent f0783c6 commit 32a6b1b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pgtype/uint64_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ import (
99
)
1010

1111
func TestUint64Codec(t *testing.T) {
12+
skipCockroachDB(t, "Server does not support xid8 (https://github.com/cockroachdb/cockroach/issues/36815)")
13+
skipPostgreSQLVersionLessThan(t, 13)
14+
1215
pgxtest.RunValueRoundTripTests(context.Background(), t, defaultConnTestRunner, pgxtest.KnownOIDQueryExecModes, "xid8", []pgxtest.ValueRoundTripTest{
1316
{
1417
pgtype.Uint64{Uint64: 1 << 36, Valid: true},

0 commit comments

Comments
 (0)