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()")