diff options
Diffstat (limited to 'src/include/parser/parse_state.h')
-rw-r--r-- | src/include/parser/parse_state.h | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/src/include/parser/parse_state.h b/src/include/parser/parse_state.h index c2f900e81f3..05f860290fb 100644 --- a/src/include/parser/parse_state.h +++ b/src/include/parser/parse_state.h @@ -4,7 +4,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_state.h,v 1.5 1996/11/04 12:12:52 scrappy Exp $ + * $Id: parse_state.h,v 1.6 1997/09/07 04:59:37 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -12,22 +12,23 @@ #ifndef PARSE_STATE_H #define PARSE_STATE_H -#include <nodes/parsenodes.h> +#include <nodes/parsenodes.h> #include <utils/rel.h> /* state information used during parse analysis */ -typedef struct ParseState { - int p_last_resno; - List *p_rtable; - int p_numAgg; - List *p_aggs; - bool p_is_insert; - List *p_insert_columns; - bool p_is_update; - bool p_is_rule; - Relation p_target_relation; - RangeTblEntry *p_target_rangetblentry; -} ParseState; +typedef struct ParseState +{ + int p_last_resno; + List *p_rtable; + int p_numAgg; + List *p_aggs; + bool p_is_insert; + List *p_insert_columns; + bool p_is_update; + bool p_is_rule; + Relation p_target_relation; + RangeTblEntry *p_target_rangetblentry; +} ParseState; -#endif /*PARSE_QUERY_H*/ +#endif /* PARSE_QUERY_H */ |