From 9fe79624456af3886e0a9b26dbb700f4ae971776 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 13 Feb 2021 13:38:28 -0600 Subject: [PATCH] Skip another initially deferred test on CockroachDB --- tx_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tx_test.go b/tx_test.go index 6a5e2d3f..3ca924e9 100644 --- a/tx_test.go +++ b/tx_test.go @@ -105,6 +105,10 @@ func TestTxCommitWhenDeferredConstraintFailure(t *testing.T) { conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE")) defer closeConn(t, conn) + if conn.PgConn().ParameterStatus("crdb_version") != "" { + t.Skip("Server does not support deferred constraint (https://github.com/cockroachdb/cockroach/issues/31632)") + } + createSql := ` create temporary table foo( id integer,