From e90ff42484a01cacf7ad3463fc89a26fc3c0d155 Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Fri, 11 Jul 2025 13:12:26 +0300 Subject: [PATCH] antithesis: Fix first_setup.py to commit both transactions --- antithesis-tests/stress-composer/first_setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/antithesis-tests/stress-composer/first_setup.py b/antithesis-tests/stress-composer/first_setup.py index 45b37466f..c3a3c8351 100755 --- a/antithesis-tests/stress-composer/first_setup.py +++ b/antithesis-tests/stress-composer/first_setup.py @@ -83,6 +83,8 @@ for i in range(tbl_count): CREATE TABLE tbl_{i} ({cols_str}) """) +con_init.commit() + con.commit() print(f"DB Schemas\n------------\n{json.dumps(schemas, indent=2)}")