From 530e69e59b07cf94a65cfde7dd1a8b1c62b44228 Mon Sep 17 00:00:00 2001 From: Simon Riggs Date: Thu, 5 Apr 2018 20:06:02 +0100 Subject: Allow cpluspluscheck to pass by renaming variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use of a C++ keyword as a function name caused problems Reported-by: Álvaro Herrera --- src/include/parser/parse_clause.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/parser/parse_clause.h') 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, -- cgit v1.2.3