2
0

Skip test with known issue on CockroachDB

This commit is contained in:
Jack Christensen
2021-02-20 16:40:16 -06:00
parent 4bde08d1a6
commit fb88a34cb4
+4
View File
@@ -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)