Skip to content

Commit a9591ce

Browse files
committed
Change #include's to use <> and "" as appropriate.
1 parent 2e6b1e6 commit a9591ce

File tree

211 files changed

+794
-794
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+794
-794
lines changed

src/backend/access/common/heaptuple.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.54 1999/07/15 22:38:31 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.55 1999/07/15 23:02:51 momjian Exp $
1212
*
1313
* NOTES
1414
* The old interface functions have been converted to macros
@@ -17,10 +17,10 @@
1717
*-------------------------------------------------------------------------
1818
*/
1919

20-
#include <postgres.h>
20+
#include "postgres.h"
2121

22-
#include <access/heapam.h>
23-
#include <catalog/pg_type.h>
22+
#include "access/heapam.h"
23+
#include "catalog/pg_type.h"
2424

2525
#ifndef HAVE_MEMMOVE
2626
#else

src/backend/access/common/indextuple.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.34 1999/07/15 22:38:32 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.35 1999/07/15 23:02:51 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
1515

16-
#include <postgres.h>
16+
#include "postgres.h"
1717

18-
#include <access/heapam.h>
19-
#include <access/itup.h>
20-
#include <catalog/pg_type.h>
18+
#include "access/heapam.h"
19+
#include "access/itup.h"
20+
#include "catalog/pg_type.h"
2121

2222
#ifndef HAVE_MEMMOVE
2323
#else

src/backend/access/common/indexvalid.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.22 1999/07/15 22:38:32 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.23 1999/07/15 23:02:51 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include <postgres.h>
15+
#include "postgres.h"
1616

17-
#include <access/iqual.h>
18-
#include <executor/execdebug.h>
17+
#include "access/iqual.h"
18+
#include "executor/execdebug.h"
1919

2020
/* ----------------------------------------------------------------
2121
* index scan key qualification code

src/backend/access/common/scankey.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.15 1999/07/15 22:38:32 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.16 1999/07/15 23:02:51 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include <postgres.h>
15+
#include "postgres.h"
1616

17-
#include <access/skey.h>
17+
#include "access/skey.h"
1818

1919
/*
2020
* ScanKeyEntryIsLegal

src/backend/access/common/tupdesc.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.51 1999/07/15 22:38:33 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.52 1999/07/15 23:02:51 momjian Exp $
1111
*
1212
* NOTES
1313
* some of the executor utility code such as "ExecTypeFromTL" should be
@@ -18,13 +18,13 @@
1818

1919
#include <stdio.h>
2020

21-
#include <postgres.h>
21+
#include "postgres.h"
2222

23-
#include <catalog/pg_type.h>
24-
#include <nodes/parsenodes.h>
25-
#include <parser/parse_type.h>
26-
#include <utils/builtins.h>
27-
#include <utils/syscache.h>
23+
#include "catalog/pg_type.h"
24+
#include "nodes/parsenodes.h"
25+
#include "parser/parse_type.h"
26+
#include "utils/builtins.h"
27+
#include "utils/syscache.h"
2828

2929
#ifndef HAVE_MEMMOVE
3030
#else

src/backend/access/gist/gist.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
*-------------------------------------------------------------------------
1212
*/
1313

14-
#include <postgres.h>
15-
16-
#include <catalog/pg_index.h>
17-
#include <access/genam.h>
18-
#include <access/gist.h>
19-
#include <access/gistscan.h>
20-
#include <access/heapam.h>
21-
#include <catalog/index.h>
22-
#include <executor/executor.h>
23-
#include <utils/syscache.h>
14+
#include "postgres.h"
15+
16+
#include "catalog/pg_index.h"
17+
#include "access/genam.h"
18+
#include "access/gist.h"
19+
#include "access/gistscan.h"
20+
#include "access/heapam.h"
21+
#include "catalog/index.h"
22+
#include "executor/executor.h"
23+
#include "utils/syscache.h"
2424

2525
#ifndef HAVE_MEMMOVE
2626
#else

src/backend/access/gist/gistget.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
*-------------------------------------------------------------------------
1212
*/
1313

14-
#include <postgres.h>
14+
#include "postgres.h"
1515

16-
#include <access/gist.h>
17-
#include <executor/execdebug.h>
16+
#include "access/gist.h"
17+
#include "executor/execdebug.h"
1818

1919
#ifndef HAVE_MEMMOVE
2020
#else

src/backend/access/gist/gistscan.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
*-------------------------------------------------------------------------
1111
*/
1212

13-
#include <postgres.h>
13+
#include "postgres.h"
1414

15-
#include <access/gist.h>
16-
#include <access/gistscan.h>
17-
#include <access/genam.h>
15+
#include "access/gist.h"
16+
#include "access/gistscan.h"
17+
#include "access/genam.h"
1818

1919
#ifndef HAVE_MEMMOVE
2020
#else

src/backend/access/gist/giststrat.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include <postgres.h>
15+
#include "postgres.h"
1616

17-
#include <access/gist.h>
18-
#include <access/istrat.h>
17+
#include "access/gist.h"
18+
#include "access/istrat.h"
1919

2020
/*
2121
* Note: negate, commute, and negatecommute all assume that operators are

src/backend/access/hash/hash.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.27 1999/07/15 22:38:35 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.28 1999/07/15 23:02:54 momjian Exp $
1111
*
1212
* NOTES
1313
* This file contains only the public interface routines.
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
1717

18-
#include <postgres.h>
18+
#include "postgres.h"
1919

20-
#include <access/hash.h>
21-
#include <executor/executor.h>
22-
#include <access/heapam.h>
23-
#include <access/genam.h>
24-
#include <catalog/index.h>
25-
#include <miscadmin.h>
20+
#include "access/hash.h"
21+
#include "executor/executor.h"
22+
#include "access/heapam.h"
23+
#include "access/genam.h"
24+
#include "catalog/index.h"
25+
#include "miscadmin.h"
2626

2727
#ifndef HAVE_MEMMOVE
2828
#else

src/backend/access/hash/hashinsert.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.16 1999/07/15 22:38:36 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.17 1999/07/15 23:02:54 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include <postgres.h>
15+
#include "postgres.h"
1616

17-
#include <access/hash.h>
17+
#include "access/hash.h"
1818

1919
static InsertIndexResult _hash_insertonpg(Relation rel, Buffer buf, int keysz, ScanKey scankey, HashItem hitem, Buffer metabuf);
2020
static OffsetNumber _hash_pgaddtup(Relation rel, Buffer buf, int keysz, ScanKey itup_scankey, Size itemsize, HashItem hitem);

src/backend/access/hash/hashovfl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.21 1999/07/15 22:38:37 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.22 1999/07/15 23:02:55 momjian Exp $
1111
*
1212
* NOTES
1313
* Overflow pages look like ordinary relation pages.
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
17-
#include <postgres.h>
17+
#include "postgres.h"
1818

19-
#include <access/hash.h>
19+
#include "access/hash.h"
2020

2121
#ifndef HAVE_MEMMOVE
2222
#else

src/backend/access/hash/hashpage.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.21 1999/07/15 22:38:37 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.22 1999/07/15 23:02:55 momjian Exp $
1111
*
1212
* NOTES
1313
* Postgres hash pages look like ordinary relation pages. The opaque
@@ -23,11 +23,11 @@
2323
*-------------------------------------------------------------------------
2424
*/
2525

26-
#include <postgres.h>
26+
#include "postgres.h"
2727

28-
#include <access/hash.h>
29-
#include <miscadmin.h>
30-
#include <access/genam.h>
28+
#include "access/hash.h"
29+
#include "miscadmin.h"
30+
#include "access/genam.h"
3131

3232
#ifndef HAVE_MEMMOVE
3333
#else

src/backend/access/hash/hashscan.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.19 1999/07/15 15:18:33 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.20 1999/07/15 23:02:55 momjian Exp $
1111
*
1212
* NOTES
1313
* Because we can be doing an index scan on a relation while we
@@ -27,9 +27,9 @@
2727
*-------------------------------------------------------------------------
2828
*/
2929

30-
#include <postgres.h>
30+
#include "postgres.h"
3131

32-
#include <access/hash.h>
32+
#include "access/hash.h"
3333

3434
static void _hash_scandel(IndexScanDesc scan, BlockNumber blkno, OffsetNumber offno);
3535
static bool _hash_scantouched(IndexScanDesc scan, BlockNumber blkno, OffsetNumber offno);

src/backend/access/hash/hashsearch.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.18 1999/07/15 22:38:38 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.19 1999/07/15 23:02:55 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include <postgres.h>
15+
#include "postgres.h"
1616

17-
#include <access/hash.h>
17+
#include "access/hash.h"
1818

1919
#ifndef HAVE_MEMMOVE
2020
#else

src/backend/access/hash/hashstrat.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.14 1999/07/15 22:38:38 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.15 1999/07/15 23:02:56 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include <postgres.h>
15+
#include "postgres.h"
1616

1717

1818
/*

src/backend/access/hash/hashutil.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.18 1999/07/15 22:38:39 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.19 1999/07/15 23:02:56 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
1414

15-
#include <postgres.h>
15+
#include "postgres.h"
1616

17-
#include <access/hash.h>
18-
#include <access/iqual.h>
17+
#include "access/hash.h"
18+
#include "access/iqual.h"
1919

2020
#ifndef HAVE_MEMMOVE
2121
#else

src/backend/access/heap/heapam.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.49 1999/07/15 22:38:40 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.50 1999/07/15 23:02:57 momjian Exp $
1111
*
1212
*
1313
* INTERFACE ROUTINES
@@ -73,17 +73,17 @@
7373
*-------------------------------------------------------------------------
7474
*/
7575

76-
#include <postgres.h>
77-
78-
#include <access/heapam.h>
79-
#include <miscadmin.h>
80-
#include <utils/relcache.h>
81-
#include <access/valid.h>
82-
#include <access/hio.h>
83-
#include <storage/smgr.h>
84-
#include <catalog/catalog.h>
85-
#include <utils/inval.h>
86-
#include <utils/builtins.h>
76+
#include "postgres.h"
77+
78+
#include "access/heapam.h"
79+
#include "miscadmin.h"
80+
#include "utils/relcache.h"
81+
#include "access/valid.h"
82+
#include "access/hio.h"
83+
#include "storage/smgr.h"
84+
#include "catalog/catalog.h"
85+
#include "utils/inval.h"
86+
#include "utils/builtins.h"
8787

8888
#ifndef HAVE_MEMMOVE
8989
#else

0 commit comments

Comments
 (0)