[PATCH] refactor ExecCheckPermissionsModified for ACL_SELECT
Steve Chavez <steve@supabase.io>
From: Steve Chavez <steve@supabase.io>
To: PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2026-03-23T22:23:59Z
Lists: pgsql-hackers
Attachments
- 0001-refactor-ExecCheckPermissionsModified-for-ACL_SELECT.patch (text/x-patch) patch 0001
Hello hackers, Currently the code on ExecCheckOneRelPerms duplicates the logic in ExecCheckPermissionsModified. This change accommodates ExecCheckPermissionsModified to handle ACL_SELECT and makes ExecCheckOneRelPerms reuse code. It also merges similar comments. Main benefit is that it reduces LOCs and centralizes column privilege logic. Best regards, Steve Chavez