diff options
author | Simon Riggs <simon@2ndQuadrant.com> | 2018-04-05 20:06:02 +0100 |
---|---|---|
committer | Simon Riggs <simon@2ndQuadrant.com> | 2018-04-05 20:06:02 +0100 |
commit | 530e69e59b07cf94a65cfde7dd1a8b1c62b44228 (patch) | |
tree | fe686ad882c0d08eea49a83340d7e9abfd813590 /src/include/parser/parse_clause.h | |
parent | b9986551e0c6129300b9d7a387baf2006724b297 (diff) | |
download | postgresql-530e69e59b07cf94a65cfde7dd1a8b1c62b44228.tar.gz postgresql-530e69e59b07cf94a65cfde7dd1a8b1c62b44228.zip |
Allow cpluspluscheck to pass by renaming variable
Use of a C++ keyword as a function name caused problems
Reported-by: Álvaro Herrera
Diffstat (limited to 'src/include/parser/parse_clause.h')
-rw-r--r-- | src/include/parser/parse_clause.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h index 30121c98ed8..4420e720708 100644 --- a/src/include/parser/parse_clause.h +++ b/src/include/parser/parse_clause.h @@ -23,7 +23,7 @@ extern bool interpretOidsOption(List *defList, bool allowOids); extern Node *transformFromClauseItem(ParseState *pstate, Node *n, RangeTblEntry **top_rte, int *top_rti, RangeTblEntry **right_rte, int *right_rti, - List **namespace); + List **fnamespace); extern Node *transformWhereClause(ParseState *pstate, Node *clause, ParseExprKind exprKind, const char *constructName); extern Node *transformLimitClause(ParseState *pstate, Node *clause, |