From 32a6b1b200c3d5bdc712b87d91c032c29970923a Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 5 Oct 2024 10:44:13 -0500 Subject: [PATCH] Skip xid8 test on PG < 13 and CRDB --- pgtype/uint64_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pgtype/uint64_test.go b/pgtype/uint64_test.go index 10134272..33c2622d 100644 --- a/pgtype/uint64_test.go +++ b/pgtype/uint64_test.go @@ -9,6 +9,9 @@ import ( ) func TestUint64Codec(t *testing.T) { + skipCockroachDB(t, "Server does not support xid8 (https://github.com/cockroachdb/cockroach/issues/36815)") + skipPostgreSQLVersionLessThan(t, 13) + pgxtest.RunValueRoundTripTests(context.Background(), t, defaultConnTestRunner, pgxtest.KnownOIDQueryExecModes, "xid8", []pgxtest.ValueRoundTripTest{ { pgtype.Uint64{Uint64: 1 << 36, Valid: true},