diff options
Diffstat (limited to 'src/include/parser')
-rw-r--r-- | src/include/parser/analyze.h | 4 | ||||
-rw-r--r-- | src/include/parser/parse_agg.h | 4 | ||||
-rw-r--r-- | src/include/parser/parse_clause.h | 4 | ||||
-rw-r--r-- | src/include/parser/parse_expr.h | 4 | ||||
-rw-r--r-- | src/include/parser/parse_func.h | 4 | ||||
-rw-r--r-- | src/include/parser/parse_node.h | 6 | ||||
-rw-r--r-- | src/include/parser/parse_relation.h | 4 | ||||
-rw-r--r-- | src/include/parser/parse_target.h | 4 | ||||
-rw-r--r-- | src/include/parser/parser.h | 4 |
9 files changed, 19 insertions, 19 deletions
diff --git a/src/include/parser/analyze.h b/src/include/parser/analyze.h index d928f0e7a61..3fa861f1564 100644 --- a/src/include/parser/analyze.h +++ b/src/include/parser/analyze.h @@ -5,14 +5,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: analyze.h,v 1.8 1999/07/13 21:17:40 momjian Exp $ + * $Id: analyze.h,v 1.9 1999/07/15 23:04:00 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef ANALYZE_H #define ANALYZE_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern List *parse_analyze(List *pl, ParseState *parentParseState); diff --git a/src/include/parser/parse_agg.h b/src/include/parser/parse_agg.h index 64a6e3a65e2..f1b400e9c9a 100644 --- a/src/include/parser/parse_agg.h +++ b/src/include/parser/parse_agg.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_agg.h,v 1.11 1999/07/15 15:21:25 momjian Exp $ + * $Id: parse_agg.h,v 1.12 1999/07/15 23:04:01 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_AGG_H #define PARSE_AGG_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern void AddAggToParseState(ParseState *pstate, Aggref *aggref); extern void parseCheckAggregates(ParseState *pstate, Query *qry); diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h index 2b3dddad5c1..a50ab4e0391 100644 --- a/src/include/parser/parse_clause.h +++ b/src/include/parser/parse_clause.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_clause.h,v 1.10 1999/07/15 15:21:25 momjian Exp $ + * $Id: parse_clause.h,v 1.11 1999/07/15 23:04:01 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_CLAUSE_H #define PARSE_CLAUSE_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern void makeRangeTable(ParseState *pstate, char *relname, List *frmList, Node **qual); extern Node *transformWhereClause(ParseState *pstate, Node *where, Node *using); diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h index 0913ce3bbaa..cbc4095e330 100644 --- a/src/include/parser/parse_expr.h +++ b/src/include/parser/parse_expr.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_expr.h,v 1.12 1999/07/15 15:21:26 momjian Exp $ + * $Id: parse_expr.h,v 1.13 1999/07/15 23:04:02 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_EXPR_H #define PARSE_EXPR_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" #include "parser/parse_type.h" extern Node *transformExpr(ParseState *pstate, Node *expr, int precedence); diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h index de3487183ab..38626290cb1 100644 --- a/src/include/parser/parse_func.h +++ b/src/include/parser/parse_func.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_func.h,v 1.17 1999/07/15 15:21:26 momjian Exp $ + * $Id: parse_func.h,v 1.18 1999/07/15 23:04:02 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSER_FUNC_H #define PARSER_FUNC_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" #define MAXFARGS 8 /* max # args to a c or postquel function */ diff --git a/src/include/parser/parse_node.h b/src/include/parser/parse_node.h index 5a56b5fb75b..3dd2257db5e 100644 --- a/src/include/parser/parse_node.h +++ b/src/include/parser/parse_node.h @@ -5,15 +5,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_node.h,v 1.13 1999/07/15 15:21:27 momjian Exp $ + * $Id: parse_node.h,v 1.14 1999/07/15 23:04:02 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_NODE_H #define PARSE_NODE_H -#include <nodes/parsenodes.h> -#include <utils/rel.h> +#include "nodes/parsenodes.h" +#include "utils/rel.h" /* state information used during parse analysis */ typedef struct ParseState diff --git a/src/include/parser/parse_relation.h b/src/include/parser/parse_relation.h index 12c47636b6a..e44f89c79ba 100644 --- a/src/include/parser/parse_relation.h +++ b/src/include/parser/parse_relation.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_relation.h,v 1.10 1999/07/15 15:21:27 momjian Exp $ + * $Id: parse_relation.h,v 1.11 1999/07/15 23:04:03 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_QUERY_H #define PARSE_RANGE_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern RangeTblEntry *refnameRangeTableEntry(ParseState *pstate, char *refname); extern int refnameRangeTablePosn(ParseState *pstate, diff --git a/src/include/parser/parse_target.h b/src/include/parser/parse_target.h index d54ce32d83b..bd520d1bab9 100644 --- a/src/include/parser/parse_target.h +++ b/src/include/parser/parse_target.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parse_target.h,v 1.13 1999/07/15 15:21:27 momjian Exp $ + * $Id: parse_target.h,v 1.14 1999/07/15 23:04:03 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSE_TARGET_H #define PARSE_TARGET_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" #define EXPR_COLUMN_FIRST 1 #define EXPR_RELATION_FIRST 2 diff --git a/src/include/parser/parser.h b/src/include/parser/parser.h index 50b99b48ce6..f2c1cb5b5b6 100644 --- a/src/include/parser/parser.h +++ b/src/include/parser/parser.h @@ -6,14 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parser.h,v 1.5 1999/05/13 07:29:20 tgl Exp $ + * $Id: parser.h,v 1.6 1999/07/15 23:04:03 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef PARSER_H #define PARSER_H -#include <parser/parse_node.h> +#include "parser/parse_node.h" extern List *parser(char *str, Oid *typev, int nargs); |