8000 Final cleanup. · postgrespro/postgres_cluster@a71802e · GitHub
[go: up one dir, main page]

Skip to content

Commit a71802e

Browse files
committed
Final cleanup.
1 parent 9b645d4 commit a71802e

File tree

210 files changed

+804
-878
lines changed
  • storage
  • tcop
  • tioga
  • utils
  • Some content is hidden

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

    210 files changed

    +804
    -878
    lines changed

    src/backend/access/common/heaptuple.c

    Lines changed: 2 additions & 1 deletion
    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.55 1999/07/15 23:02:51 momjian Exp $
    11+
    * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.56 1999/07/16 04:58:21 momjian Exp $
    1212
    *
    1313
    * NOTES
    1414
    * The old interface functions have been converted to macros
    @@ -23,6 +23,7 @@
    2323
    #include "catalog/pg_type.h"
    2424

    2525
    #ifndef HAVE_MEMMOVE
    26+
    #include <regex/utils.h>
    2627
    #else
    2728
    #include <string.h>
    2829
    #endif

    src/backend/access/common/indextuple.c

    Lines changed: 2 additions & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -8,7 +8,7 @@
    88
    *
    99
    *
    1010
    * IDENTIFICATION
    11-
    * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.35 1999/07/15 23:02:51 momjian Exp $
    11+
    * $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.36 1999/07/16 04:58:22 momjian Exp $
    1212
    *
    1313
    *-------------------------------------------------------------------------
    1414
    */
    @@ -20,6 +20,7 @@
    2020
    #include "catalog/pg_type.h"
    2121

    2222
    #ifndef HAVE_MEMMOVE
    23+
    #include <regex/utils.h>
    2324
    #else
    2425
    #include <string.h>
    2526
    #endif

    src/backend/access/common/tupdesc.c

    Lines changed: 2 additions & 1 deletion
    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.52 1999/07/15 23:02:51 momjian Exp $
    10+
    * $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.53 1999/07/16 04:58:22 momjian Exp $
    1111
    *
    1212
    * NOTES
    1313
    * some of the executor utility code such as "ExecTypeFromTL" should be
    @@ -27,6 +27,7 @@
    2727
    #include "utils/syscache.h"
    2828

    2929
    #ifndef HAVE_MEMMOVE
    30+
    #include <regex/utils.h>
    3031
    #else
    3132
    #include <string.h>
    3233
    #endif

    src/backend/access/gist/gist.c

    Lines changed: 2 additions & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -13,16 +13,17 @@
    1313

    1414
    #include "postgres.h"
    1515

    16-
    #include "catalog/pg_index.h"
    1716
    #include "access/genam.h"
    1817
    #include "access/gist.h"
    1918
    #include "access/gistscan.h"
    2019
    #include "access/heapam.h"
    2120
    #include "catalog/index.h"
    21+
    #include "catalog/pg_index.h"
    2222
    #include "executor/executor.h"
    2323
    #include "utils/syscache.h"
    2424

    2525
    #ifndef HAVE_MEMMOVE
    26+
    #include <regex/utils.h>
    2627
    #else
    2728
    #include <string.h>
    2829
    #endif

    src/backend/access/gist/gistget.c

    Lines changed: 1 addition & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -17,6 +17,7 @@
    1717
    #include "executor/execdebug.h"
    1818

    1919
    #ifndef HAVE_MEMMOVE
    20+
    #include <regex/utils.h>
    2021
    #else
    2122
    #include <string.h>
    2223
    #endif

    src/backend/access/gist/gistscan.c

    Lines changed: 2 additions & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -12,11 +12,12 @@
    1212

    1313
    #include "postgres.h"
    1414

    15+
    #include "access/genam.h"
    1516
    #include "access/gist.h"
    1617
    #include "access/gistscan.h"
    17-
    #include "access/genam.h"
    1818

    1919
    #ifndef HAVE_MEMMOVE
    20+
    #include <regex/utils.h>
    2021
    #else
    2122
    #include <string.h>
    2223
    #endif

    src/backend/access/hash/hash.c

    Lines changed: 4 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/hash.c,v 1.28 1999/07/15 23:02:54 momjian Exp $
    10+
    * $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.29 1999/07/16 04:58:24 momjian Exp $
    1111
    *
    1212
    * NOTES
    1313
    * This file contains only the public interface routines.
    @@ -17,14 +17,15 @@
    1717

    1818
    #include "postgres.h"
    1919

    20+
    #include "access/genam.h"
    2021
    #include "access/hash.h"
    21-
    #include "executor/executor.h"
    2222
    #include "access/heapam.h"
    23-
    #include "access/genam.h"
    2423
    #include "catalog/index.h"
    24+
    #include "executor/executor.h"
    2525
    #include "miscadmin.h"
    2626

    2727
    #ifndef HAVE_MEMMOVE
    28+
    #include <regex/utils.h>
    2829
    #else
    2930
    #include <string.h>
    3031
    #endif

    src/backend/access/hash/hashovfl.c

    Lines changed: 2 additions & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -7,7 +7,7 @@
    77
    *
    88
    *
    99
    * IDENTIFICATION
    10-
    * $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.22 1999/07/15 23:02:55 momjian Exp $
    10+
    * $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.23 1999/07/16 04:58:25 momjian Exp $
    1111
    *
    1212
    * NOTES
    1313
    * Overflow pages look like ordinary relation pages.
    @@ -19,6 +19,7 @@
    1919
    #include "access/hash.h"
    2020

    2121
    #ifndef HAVE_MEMMOVE
    22+
    #include <regex/utils.h>
    2223
    #else
    2324
    #include <string.h>
    2425
    #endif

    src/backend/access/hash/hashpage.c

    Lines changed: 3 additions & 2 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.22 1999/07/15 23:02:55 momjian Exp $
    10+
    * $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.23 1999/07/16 04:58:25 momjian Exp $
    1111
    *
    1212
    * NOTES
    1313
    * Postgres hash pages look like ordinary relation pages. The opaque
    @@ -25,11 +25,12 @@
    2525

    2626
    #include "postgres.h"
    2727

    28+
    #include "access/genam.h"
    2829
    #include "access/hash.h"
    2930
    #include "miscadmin.h"
    30-
    #include "access/genam.h"
    3131

    3232
    #ifndef HAVE_MEMMOVE
    33+
    #include <regex/utils.h>
    3334
    #else
    3435
    #include <string.h>
    3536
    #endif

    src/backend/access/hash/hashsearch.c

    Lines changed: 2 additions & 1 deletion
    4CBF
    Original file line numberDiff line numberDiff line change
    @@ -7,7 +7,7 @@
    77
    *
    88
    *
    99
    * IDENTIFICATION
    10-
    * $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.19 1999/07/15 23:02:55 momjian Exp $
    10+
    * $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.20 1999/07/16 04:58:25 momjian Exp $
    1111
    *
    1212
    *-------------------------------------------------------------------------
    1313
    */
    @@ -17,6 +17,7 @@
    1717
    #include "access/hash.h"
    1818

    1919
    #ifndef HAVE_MEMMOVE
    20+
    #include <regex/utils.h>
    2021
    #else
    2122
    #include <string.h>
    2223
    #endif

    0 commit comments

    Comments
     (0)
    0