Skip to content

Commit dc792f5

Browse files
committed
tests: ptrack small fixes
1 parent d21412d commit dc792f5

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/ptrack.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,21 @@ def test_ptrack_disable(self):
6060
node.start()
6161

6262
# FULL BACKUP
63-
print('START')
64-
print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
63+
# print('START')
64+
# print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
6565
self.backup_node(backup_dir, 'node', node, options=['--stream'])
66-
print('AFTER FULL')
67-
print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
66+
# print('AFTER FULL')
67+
# print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
6868
# DISABLE PTRACK
6969
node.safe_psql('postgres', "alter system set ptrack_enable to off")
7070
node.restart()
71-
print('DISABLED')
72-
print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
71+
# print('DISABLED')
72+
# print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
7373
# ENABLE PTRACK
7474
node.safe_psql('postgres', "alter system set ptrack_enable to on")
7575
node.restart()
76-
print('ENABLED')
77-
print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
76+
# print('ENABLED')
77+
# print(node.safe_psql('postgres', "select pg_ptrack_control_lsn()"))
7878

7979
# PTRACK BACKUP
8080
try:
@@ -685,7 +685,7 @@ def test_relation_with_multiple_segments(self):
685685
self.create_tblspace_in_node(node, 'somedata')
686686

687687
# CREATE TABLE
688-
node.pgbench_init(scale=30, options=['--tablespace=somedata'])
688+
node.pgbench_init(scale=300, options=['--tablespace=somedata'])
689689
# FULL BACKUP
690690
self.backup_node(backup_dir, 'node', node, options=["--stream"])
691691

0 commit comments

Comments
 (0)