summaryrefslogtreecommitdiff
path: root/src/include/parser
diff options
context:
space:
mode:
authorBruce Momjian1999-05-26 12:57:23 +0000
committerBruce Momjian1999-05-26 12:57:23 +0000
commit278bbf4572996e4097eac0c0d169dea1616ad0b6 (patch)
tree240f44ee8338d26ad0ff7ce8d8e9733a0e3880df /src/include/parser
parent180186272ac16c74d2a822fee3878e576f265d08 (diff)
Make functions static or NOT_USED as appropriate.
Diffstat (limited to 'src/include/parser')
-rw-r--r--src/include/parser/parse_clause.h4
-rw-r--r--src/include/parser/parse_expr.h3
2 files changed, 2 insertions, 5 deletions
diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h
index 65d886494ce..82cac2e233e 100644
--- a/src/include/parser/parse_clause.h
+++ b/src/include/parser/parse_clause.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parse_clause.h,v 1.8 1999/02/23 08:05:27 thomas Exp $
+ * $Id: parse_clause.h,v 1.9 1999/05/26 12:56:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -26,6 +26,4 @@ extern List *transformGroupClause(ParseState *pstate, List *grouplist,
extern List *transformSortClause(ParseState *pstate,
List *orderlist, List *sortClause,
List *targetlist, char *uniqueFlag);
-extern List *transformUnionClause(List *unionClause, List *targetlist);
-
#endif /* PARSE_CLAUSE_H */
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h
index 1d4b594f320..285b00f3f7a 100644
--- a/src/include/parser/parse_expr.h
+++ b/src/include/parser/parse_expr.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parse_expr.h,v 1.10 1998/09/01 04:37:33 momjian Exp $
+ * $Id: parse_expr.h,v 1.11 1999/05/26 12:56:41 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -19,7 +19,6 @@
#include <parser/parse_node.h>
extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence);
-extern Node *transformIdent(ParseState *pstate, Node *expr, int precedence);
extern Oid exprType(Node *expr);
extern Node *parser_typecast2(Node *expr, Oid exprType, Type tp, int32 attypmod);