From ff6ab48e0012628676ab3f1fb1e027d584d0fc0b Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 27 Feb 2021 09:52:28 -0600 Subject: [PATCH] Skip tests with parameter description server issues --- batch_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/batch_test.go b/batch_test.go index c441abdd..71b4137b 100644 --- a/batch_test.go +++ b/batch_test.go @@ -189,6 +189,10 @@ func TestConnSendBatchWithPreparedStatement(t *testing.T) { conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE")) defer closeConn(t, conn) + if conn.PgConn().ParameterStatus("crdb_version") != "" { + t.Skip("Server issues incorrect ParameterDescription (https://github.com/cockroachdb/cockroach/issues/60907)") + } + _, err := conn.Prepare(context.Background(), "ps1", "select n from generate_series(0,$1::int) n") if err != nil { t.Fatal(err) @@ -244,6 +248,10 @@ func TestConnSendBatchWithPreparedStatementAndStatementCacheDisabled(t *testing. conn := mustConnect(t, config) defer closeConn(t, conn) + if conn.PgConn().ParameterStatus("crdb_version") != "" { + t.Skip("Server issues incorrect ParameterDescription (https://github.com/cockroachdb/cockroach/issues/60907)") + } + _, err = conn.Prepare(context.Background(), "ps1", "select n from generate_series(0,$1::int) n") if err != nil { t.Fatal(err)