Skip xid8 test on PG < 13 and CRDB

pull/2142/head
Jack Christensen 2024-10-05 10:44:13 -05:00
parent f0783c6fbe
commit 32a6b1b200
1 changed files with 3 additions and 0 deletions

View File

@ -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},