diff options
| author | Tom Lane | 2021-02-11 16:23:25 +0000 |
|---|---|---|
| committer | Tom Lane | 2021-02-11 16:23:25 +0000 |
| commit | d4c746516b8b4eb0bf993e3729ccc04d1febdb1e (patch) | |
| tree | 55699d74c7a9cc45dfe722a0359f42fe369c3b8e /src/include/parser | |
| parent | 42d74e0c443760af91875af99d2655c9eb4c40df (diff) | |
Remove no-longer-used RTE argument of markVarForSelectPriv().
In the wake of c028faf2a, this is no longer needed. I left it
out of that patch since the API change would be undesirable in
a released branch; but there's no reason not to do it in HEAD.
Diffstat (limited to 'src/include/parser')
| -rw-r--r-- | src/include/parser/parse_relation.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/parser/parse_relation.h b/src/include/parser/parse_relation.h index 35e64070a8..5dbe5ba2e2 100644 --- a/src/include/parser/parse_relation.h +++ b/src/include/parser/parse_relation.h @@ -41,8 +41,7 @@ extern Node *scanNSItemForColumn(ParseState *pstate, ParseNamespaceItem *nsitem, int location); extern Node *colNameToVar(ParseState *pstate, const char *colname, bool localonly, int location); -extern void markVarForSelectPriv(ParseState *pstate, Var *var, - RangeTblEntry *rte); +extern void markVarForSelectPriv(ParseState *pstate, Var *var); extern Relation parserOpenTable(ParseState *pstate, const RangeVar *relation, int lockmode); extern ParseNamespaceItem *addRangeTableEntry(ParseState *pstate, |
