Thanks to visit codestin.com
Credit goes to github.com

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

0 commit comments

Comments
 (0)