diff --git a/test_runner/performance/test_dup_key.py b/test_runner/performance/test_dup_key.py index a8caceb61a..ee867a9845 100644 --- a/test_runner/performance/test_dup_key.py +++ b/test_runner/performance/test_dup_key.py @@ -17,6 +17,8 @@ def test_dup_key(env: PgCompare): with closing(env.pg.connect()) as conn: with conn.cursor() as cur: + cur.execute('drop table if exists t, f;') + cur.execute("SET synchronous_commit=off") cur.execute("SET statement_timeout=0")