Remove debug prints

pull/7402/head
Jelte Fennema-Nio 2024-01-11 11:27:43 +01:00
parent aad346602f
commit e55d8fe88a
1 changed files with 0 additions and 4 deletions

View File

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