From fb88a34cb4995248d154b5eaadde52136de25547 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 20 Feb 2021 16:40:16 -0600 Subject: [PATCH] Skip test with known issue on CockroachDB --- pgconn_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pgconn_test.go b/pgconn_test.go index 564a0c51..87edefc2 100644 --- a/pgconn_test.go +++ b/pgconn_test.go @@ -1098,6 +1098,10 @@ func TestConnExecBatchImplicitTransaction(t *testing.T) { require.NoError(t, err) defer closeConn(t, pgConn) + if pgConn.ParameterStatus("crdb_version") != "" { + t.Skip("Skipping due to known server issue: (https://github.com/cockroachdb/cockroach/issues/44803)") + } + _, err = pgConn.Exec(context.Background(), "create temporary table t(id int)").ReadAll() require.NoError(t, err)