Skip tests with known server issues

pull/955/head
Jack Christensen 2021-02-20 16:47:09 -06:00
parent 775d3b1049
commit 674cf70c51
2 changed files with 8 additions and 0 deletions

View File

@ -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,

View File

@ -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)