aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/amcheck/verify_heapam.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/amcheck/verify_heapam.c b/contrib/amcheck/verify_heapam.c
index d8b3fd3d4f9..a3caee7cdd3 100644
--- a/contrib/amcheck/verify_heapam.c
+++ b/contrib/amcheck/verify_heapam.c
@@ -298,7 +298,7 @@ verify_heapam(PG_FUNCTION_ARGS)
rsinfo->setDesc = ctx.tupdesc;
MemoryContextSwitchTo(old_context);
- /* Open relation, check relkind and access method, and check privileges */
+ /* Open relation, check relkind and access method */
ctx.rel = relation_open(relid, AccessShareLock);
sanity_check_relation(ctx.rel);
@@ -524,8 +524,7 @@ verify_heapam(PG_FUNCTION_ARGS)
}
/*
- * Check that a relation's relkind and access method are both supported,
- * and that the caller has select privilege on the relation.
+ * Check that a relation's relkind and access method are both supported.
*/
static void
sanity_check_relation(Relation rel)