mirror of https://github.com/jackc/pgx.git
Skip tests with known server issues
parent
775d3b1049
commit
674cf70c51
|
@ -134,6 +134,10 @@ func TestConnCopyFromLarge(t *testing.T) {
|
||||||
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
||||||
defer closeConn(t, conn)
|
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(
|
mustExec(t, conn, `create temporary table foo(
|
||||||
a int2,
|
a int2,
|
||||||
b int4,
|
b int4,
|
||||||
|
|
|
@ -155,6 +155,10 @@ func TestTxCommitSerializationFailure(t *testing.T) {
|
||||||
c1 := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
c1 := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
||||||
defer closeConn(t, c1)
|
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"))
|
c2 := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
|
||||||
defer closeConn(t, c2)
|
defer closeConn(t, c2)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue