diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-14 23:01:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-01-14 23:01:55 +0000 |
commit | cfd7fb7ed4b66da97f88338d991843fa7e2fe59d (patch) | |
tree | f433f1281eba10a7ab2e563fa39eaf3228df32e8 /src/backend/executor/nodeSubplan.c | |
parent | 01d320d421b3f82de799e86e8b9adac27c2f9a26 (diff) | |
download | postgresql-cfd7fb7ed4b66da97f88338d991843fa7e2fe59d.tar.gz postgresql-cfd7fb7ed4b66da97f88338d991843fa7e2fe59d.zip |
Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this time
for sure...). Rather than relying on the query context of a rangetable
entry to identify what permissions it wants checked, store a full AclMode
mask in each RTE, and check exactly those bits. This allows an RTE
specifying, say, INSERT privilege on a view to be copied into a derived
UPDATE query without changing meaning. Per recent discussion thread.
initdb forced due to change of stored rule representation.
Diffstat (limited to 'src/backend/executor/nodeSubplan.c')
-rw-r--r-- | src/backend/executor/nodeSubplan.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/executor/nodeSubplan.c b/src/backend/executor/nodeSubplan.c index da7d5915f20..1624f41fd54 100644 --- a/src/backend/executor/nodeSubplan.c +++ b/src/backend/executor/nodeSubplan.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/nodeSubplan.c,v 1.59 2003/11/29 19:51:48 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/executor/nodeSubplan.c,v 1.60 2004/01/14 23:01:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -670,10 +670,9 @@ ExecInitSubPlan(SubPlanState *node, EState *estate) MemoryContext oldcontext; /* - * Do access checking on the rangetable entries in the subquery. Here, - * we assume the subquery is a SELECT. + * Do access checking on the rangetable entries in the subquery. */ - ExecCheckRTPerms(subplan->rtable, CMD_SELECT); + ExecCheckRTPerms(subplan->rtable); /* * initialize my state |