From 674cf70c5151f96a549e72a43805f263b6abfd2e Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 20 Feb 2021 16:47:09 -0600 Subject: [PATCH] Skip tests with known server issues --- copy_from_test.go | 4 ++++ tx_test.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/copy_from_test.go b/copy_from_test.go index 35328205..93f583b8 100644 --- a/copy_from_test.go +++ b/copy_from_test.go @@ -134,6 +134,10 @@ func TestConnCopyFromLarge(t *testing.T) { conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE")) defer closeConn(t, conn) + if conn.PgConn().ParameterStatus("crdb_version") != "" { + t.Skip("Skipping due to known server issue: (https://github.com/cockroachdb/cockroach/issues/52722)") + } + mustExec(t, conn, `create temporary table foo( a int2, b int4, diff --git a/tx_test.go b/tx_test.go index 854038c4..efcbe8bd 100644 --- a/tx_test.go +++ b/tx_test.go @@ -155,6 +155,10 @@ func TestTxCommitSerializationFailure(t *testing.T) { c1 := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE")) defer closeConn(t, c1) + if c1.PgConn().ParameterStatus("crdb_version") != "" { + t.Skip("Skipping due to known server issue: (https://github.com/cockroachdb/cockroach/issues/60754)") + } + c2 := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE")) defer closeConn(t, c2)