Skip test with non-standard CRDB behavior

pull/1281/head
Jack Christensen 2022-07-09 10:21:17 -05:00
parent c31b89a3f2
commit 3dafb5d4ee
1 changed files with 4 additions and 0 deletions

View File

@ -974,6 +974,10 @@ func TestStmtCacheInvalidationTx(t *testing.T) {
conn := mustConnectString(t, os.Getenv("PGX_TEST_DATABASE"))
defer closeConn(t, conn)
if conn.PgConn().ParameterStatus("crdb_version") != "" {
t.Skip("Server has non-standard prepare in errored transaction behavior (https://github.com/cockroachdb/cockroach/issues/84140)")
}
// create a table and fill it with some data
_, err := conn.Exec(ctx, `
DROP TABLE IF EXISTS drop_cols;