mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Check SELECT permissions in subqueries.
This commit is contained in:
@ -26,7 +26,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.44 1998/02/26 04:31:09 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.45 1998/02/27 08:43:52 vadim Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -54,12 +54,12 @@
|
||||
#include "catalog/heap.h"
|
||||
#include "commands/trigger.h"
|
||||
|
||||
void
|
||||
ExecCheckPerms(CmdType operation, int resultRelation, List *rangeTable,
|
||||
Query *parseTree);
|
||||
|
||||
|
||||
/* decls for local routines only used within this module */
|
||||
static void
|
||||
ExecCheckPerms(CmdType operation, int resultRelation, List *rangeTable,
|
||||
Query *parseTree);
|
||||
static TupleDesc
|
||||
InitPlan(CmdType operation, Query *parseTree,
|
||||
Plan *plan, EState *estate);
|
||||
@ -273,14 +273,7 @@ ExecutorEnd(QueryDesc *queryDesc, EState *estate)
|
||||
BufferRefCountRestore(estate->es_refcount);
|
||||
}
|
||||
|
||||
/* ===============================================================
|
||||
* ===============================================================
|
||||
static routines follow
|
||||
* ===============================================================
|
||||
* ===============================================================
|
||||
*/
|
||||
|
||||
static void
|
||||
void
|
||||
ExecCheckPerms(CmdType operation,
|
||||
int resultRelation,
|
||||
List *rangeTable,
|
||||
@ -376,6 +369,13 @@ ExecCheckPerms(CmdType operation,
|
||||
}
|
||||
}
|
||||
|
||||
/* ===============================================================
|
||||
* ===============================================================
|
||||
static routines follow
|
||||
* ===============================================================
|
||||
* ===============================================================
|
||||
*/
|
||||
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
* InitPlan
|
||||
|
Reference in New Issue
Block a user