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)