We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8c7436 commit 4c27a93Copy full SHA for 4c27a93
tests/ptrack.py
@@ -483,7 +483,7 @@ def test_ptrack_unprivileged(self):
483
484
if node.major_version < 11:
485
# Reviewer, NB: skip this test in case of old ptrack?
486
- self.fnames = [
+ fnames = [
487
'pg_catalog.oideq(oid, oid)',
488
'pg_catalog.ptrack_version()',
489
'pg_catalog.pg_ptrack_clear()',
@@ -493,7 +493,7 @@ def test_ptrack_unprivileged(self):
493
'pg_catalog.pg_ptrack_get_block_2(oid, oid, oid, bigint)'
494
]
495
496
- for self.fname in self.fnames:
+ for fname in fnames:
497
node.safe_psql(
498
"backupdb",
499
"GRANT EXECUTE ON FUNCTION {0} TO backup".format(fname))
0 commit comments