From e55d8fe88a5f8424ecfefe786cc556ccd25dd39c Mon Sep 17 00:00:00 2001 From: Jelte Fennema-Nio Date: Thu, 11 Jan 2024 11:27:43 +0100 Subject: [PATCH] Remove debug prints --- src/test/regress/citus_tests/test/test_other_databases.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/test/regress/citus_tests/test/test_other_databases.py b/src/test/regress/citus_tests/test/test_other_databases.py index 6540afdfe..925b065a7 100644 --- a/src/test/regress/citus_tests/test/test_other_databases.py +++ b/src/test/regress/citus_tests/test/test_other_databases.py @@ -14,7 +14,6 @@ def test_main_commited_outer_not_yet(cluster): txid = cur1.fetchall() # using the transaction id of the cur1 simulate the main database commands manually - cur2.execute("SET citus.log_remote_commands = 'on'") cur2.execute("BEGIN") cur2.execute( "SELECT citus_internal.start_management_transaction(%s)", (str(txid[0][0]),) @@ -27,9 +26,6 @@ def test_main_commited_outer_not_yet(cluster): ) cur2.execute("COMMIT") - import pprint - pprint.pprint(cur2.execute('select * from pg_catalog.pg_dist_transaction').fetchall()) - # run the transaction recovery c.sql("SELECT recover_prepared_transactions()")