~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to src/include/parser/parse_node.h

Tags: upstream-8.4.0
ImportĀ upstreamĀ versionĀ 8.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8
8
 * Portions Copyright (c) 1994, Regents of the University of California
9
9
 *
10
 
 * $PostgreSQL: pgsql/src/include/parser/parse_node.h,v 1.61 2009/01/22 20:16:09 tgl Exp $
 
10
 * $PostgreSQL: pgsql/src/include/parser/parse_node.h,v 1.62 2009/06/11 14:49:11 momjian Exp $
11
11
 *
12
12
 *-------------------------------------------------------------------------
13
13
 */
59
59
 * to make an RTE before you can access a CTE.
60
60
 *
61
61
 * p_future_ctes: list of CommonTableExprs (WITH items) that are not yet
62
 
 * visible due to scope rules.  This is used to help improve error messages.
 
62
 * visible due to scope rules.  This is used to help improve error messages.
63
63
 *
64
64
 * p_windowdefs: list of WindowDefs representing WINDOW and OVER clauses.
65
65
 * We collect these while transforming expressions and then transform them
122
122
extern void cancel_parser_errposition_callback(ParseCallbackState *pcbstate);
123
123
 
124
124
extern Var *make_var(ParseState *pstate, RangeTblEntry *rte, int attrno,
125
 
                                         int location);
 
125
                 int location);
126
126
extern Oid      transformArrayType(Oid arrayType);
127
127
extern ArrayRef *transformArraySubscripts(ParseState *pstate,
128
128
                                                 Node *arrayBase,