Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d2746c6

Browse files
committed
Make sure all the cleaned includes are commited
1 parent 0e28220 commit d2746c6

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

src/include/catalog/pg_type.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: pg_type.h,v 1.2 1996/10/19 04:24:57 scrappy Exp $
10+
* $Id: pg_type.h,v 1.3 1996/11/04 12:12:42 scrappy Exp $
1111
*
1212
* NOTES
1313
* the genbki.sh script reads this file and generates .bki
@@ -18,7 +18,7 @@
1818
#ifndef PG_TYPE_H
1919
#define PG_TYPE_H
2020

21-
#include "utils/rel.h"
21+
#include <utils/rel.h>
2222

2323
/* ----------------
2424
* postgres.h contains the system type definintions and the

src/include/parser/catalog_utils.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: catalog_utils.h,v 1.3 1996/11/03 12:13:03 scrappy Exp $
9+
* $Id: catalog_utils.h,v 1.4 1996/11/04 12:12:47 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndef CATALOG_UTILS_H
1414
#define CATALOG_UTILS_H
1515

16-
#include "catalog/pg_proc.h"
17-
#include "catalog/pg_type.h"
18-
#include "utils/syscache.h"
16+
#include <catalog/pg_type.h>
17+
#include <access/htup.h>
1918

2019
typedef HeapTuple Type;
2120
typedef HeapTuple Operator;

src/include/parser/parse_query.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: parse_query.h,v 1.4 1996/10/31 18:33:09 momjian Exp $
9+
* $Id: parse_query.h,v 1.5 1996/11/04 12:12:50 scrappy Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
1313
#ifndef PARSE_QUERY_H
1414
#define PARSE_QUERY_H
1515

16-
#include "nodes/pg_list.h"
17-
#include "nodes/parsenodes.h"
18-
#include "parser/catalog_utils.h"
19-
#include "parser/parse_state.h"
16+
#include <parser/catalog_utils.h>
17+
#include <parser/parse_state.h>
18+
#include <nodes/parsenodes.h>
2019

2120
typedef struct QueryTreeList {
2221
int len; /* number of queries */

src/include/parser/parse_state.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@
44
*
55
* Copyright (c) 1994, Regents of the University of California
66
*
7-
* $Id: parse_state.h,v 1.4 1996/10/30 02:02:13 momjian Exp $
7+
* $Id: parse_state.h,v 1.5 1996/11/04 12:12:52 scrappy Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
1111

1212
#ifndef PARSE_STATE_H
1313
#define PARSE_STATE_H
1414

15+
#include <nodes/parsenodes.h>
16+
#include <utils/rel.h>
17+
1518
/* state information used during parse analysis */
1619
typedef struct ParseState {
1720
int p_last_resno;

0 commit comments

Comments
 (0)