Skip deferred constraint tests on CockroachDB

pull/955/head
Jack Christensen 2021-02-13 13:31:14 -06:00
parent c4e66b05de
commit 5a16bad252
2 changed files with 8 additions and 0 deletions

View File

@ -597,6 +597,10 @@ func TestConnBeginBatchDeferredError(t *testing.T) {
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
defer closeConn(t, conn)
if conn.PgConn().ParameterStatus("crdb_version") != "" {
t.Skip("Server does not support deferred constraint (https://github.com/cockroachdb/cockroach/issues/31632)")
}
mustExec(t, conn, `create temporary table t (
id text primary key,
n int not null,

View File

@ -542,6 +542,10 @@ func TestConnQueryDeferredError(t *testing.T) {
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
defer closeConn(t, conn)
if conn.PgConn().ParameterStatus("crdb_version") != "" {
t.Skip("Server does not support deferred constraint (https://github.com/cockroachdb/cockroach/issues/31632)")
}
mustExec(t, conn, `create temporary table t (
id text primary key,
n int not null,