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

Commit 6724a50

Browse files
committed
Change my-function-name-- to my_function_name, and optimizer renames.
1 parent 8c3fff7 commit 6724a50

File tree

617 files changed

+2005
-2031
lines changed

Some content is hidden

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

617 files changed

+2005
-2031
lines changed

src/backend/access/common/heaptuple.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* heaptuple.c--
3+
* heaptuple.c
44
* This file contains heap tuple accessor and mutator routines, as well
55
* as a few various tuple utilities.
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.48 1999/02/03 21:15:27 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.49 1999/02/13 23:14:10 momjian Exp $
1212
*
1313
* NOTES
1414
* The old interface functions have been converted to macros

src/backend/access/common/heapvalid.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* heapvalid.c--
3+
* heapvalid.c
44
* heap tuple qualification validity checking code
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.22 1998/11/27 19:51:28 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/heapvalid.c,v 1.23 1999/02/13 23:14:11 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

src/backend/access/common/indextuple.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* indextuple.c--
3+
* indextuple.c
44
* This file contains index tuple accessor and mutator routines,
55
* as well as a few various tuple utilities.
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.32 1998/09/07 05:35:28 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.33 1999/02/13 23:14:11 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/

src/backend/access/common/indexvalid.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* indexvalid.c--
3+
* indexvalid.c
44
* index tuple qualification validity checking code
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.20 1998/09/01 03:20:44 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.21 1999/02/13 23:14:12 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

src/backend/access/common/printtup.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* printtup.c--
3+
* printtup.c
44
* Routines to print out tuples to the destination (binary or non-binary
55
* portals, frontend/interactive backend, etc.).
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.41 1999/01/27 01:11:43 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.42 1999/02/13 23:14:12 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/

src/backend/access/common/scankey.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* scan.c--
3+
* scan.c
44
* scan direction and key code
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.12 1998/06/15 18:39:22 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.13 1999/02/13 23:14:13 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -18,7 +18,7 @@
1818
#include <access/skey.h>
1919

2020
/*
21-
* ScanKeyEntryIsLegal --
21+
* ScanKeyEntryIsLegal
2222
* True iff the scan key entry is legal.
2323
*/
2424
#define ScanKeyEntryIsLegal(entry) \
@@ -28,7 +28,7 @@
2828
)
2929

3030
/*
31-
* ScanKeyEntrySetIllegal --
31+
* ScanKeyEntrySetIllegal
3232
* Marks a scan key entry as illegal.
3333
*/
3434
void
@@ -43,7 +43,7 @@ ScanKeyEntrySetIllegal(ScanKey entry)
4343
}
4444

4545
/*
46-
* ScanKeyEntryInitialize --
46+
* ScanKeyEntryInitialize
4747
* Initializes an scan key entry.
4848
*
4949
* Note:

src/backend/access/common/tupdesc.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* tupdesc.c--
3+
* tupdesc.c
44
* POSTGRES tuple descriptor support code
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.47 1999/02/03 21:15:27 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.48 1999/02/13 23:14:14 momjian Exp $
1111
*
1212
* NOTES
1313
* some of the executor utility code such as "ExecTypeFromTL" should be

src/backend/access/gist/gist.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* gist.c--
3+
* gist.c
44
* interface routines for the postgres GiST index access method.
55
*
66
*

src/backend/access/gist/gistget.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* gistget.c--
3+
* gistget.c
44
* fetch tuples from a GiST scan.
55
*
66
*

src/backend/access/gist/gistscan.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* gistscan.c--
3+
* gistscan.c
44
* routines to manage scans on index relations
55
*
66
*

src/backend/access/gist/giststrat.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* giststrat.c--
3+
* giststrat.c
44
* strategy map data for GiSTs.
55
*
66
* Copyright (c) 1994, Regents of the University of California

src/backend/access/hash/hash.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hash.c--
3+
* hash.c
44
* Implementation of Margo Seltzer's Hashing package for postgres.
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.24 1999/02/03 21:15:28 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.25 1999/02/13 23:14:17 momjian Exp $
1111
*
1212
* NOTES
1313
* This file contains only the public interface routines.

src/backend/access/hash/hashfunc.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hashfunc.c--
3+
* hashfunc.c
44
* Comparison functions for hash access method.
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.12 1998/09/01 04:26:49 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.13 1999/02/13 23:14:18 momjian Exp $
1111
*
1212
* NOTES
1313
* These functions are stored in pg_amproc. For each operator class

src/backend/access/hash/hashinsert.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hashinsert.c--
3+
* hashinsert.c
44
* Item insertion in hash tables for Postgres.
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.14 1998/09/01 03:20:56 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.15 1999/02/13 23:14:19 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

src/backend/access/hash/hashovfl.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hashovfl.c--
3+
* hashovfl.c
44
* Overflow page management code for the Postgres hash access method
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.19 1999/02/03 21:15:28 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.20 1999/02/13 23:14:19 momjian Exp $
1111
*
1212
* NOTES
1313
* Overflow pages look like ordinary relation pages.

src/backend/access/hash/hashpage.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hashpage.c--
3+
* hashpage.c
44
* Hash table page management code for the Postgres hash access method
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.18 1998/12/15 12:45:10 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.19 1999/02/13 23:14:20 momjian Exp $
1111
*
1212
* NOTES
1313
* Postgres hash pages look like ordinary relation pages. The opaque

src/backend/access/hash/hashscan.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hashscan.c--
3+
* hashscan.c
44
* manage scans on hash tables
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.16 1998/09/01 03:20:59 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.17 1999/02/13 23:14:20 momjian Exp $
1111
*
1212
* NOTES
1313
* Because we can be doing an index scan on a relation while we

src/backend/access/hash/hashsearch.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hashsearch.c--
3+
* hashsearch.c
44
* search code for postgres hash tables
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.16 1998/09/01 03:21:01 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.17 1999/02/13 23:14:20 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

src/backend/access/hash/hashstrat.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* btstrat.c--
3+
* btstrat.c
44
* Srategy map entries for the btree indexed access method
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.12 1998/09/01 03:21:02 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.13 1999/02/13 23:14:21 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

src/backend/access/hash/hashutil.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* btutils.c--
3+
* btutils.c
44
* Utility code for Postgres btree implementation.
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.14 1998/09/01 03:21:03 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.15 1999/02/13 23:14:21 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

src/backend/access/heap/heapam.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* heapam.c--
3+
* heapam.c
44
* heap access method code
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.40 1999/01/29 09:22:51 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.41 1999/02/13 23:14:22 momjian Exp $
1111
*
1212
*
1313
* INTERFACE ROUTINES

src/backend/access/heap/hio.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* hio.c--
3+
* hio.c
44
* POSTGRES heap access method input/output code.
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Id: hio.c,v 1.16 1999/02/02 03:43:57 momjian Exp $
10+
* $Id: hio.c,v 1.17 1999/02/13 23:14:24 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/

src/backend/access/heap/stats.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* stats.c--
3+
* stats.c
44
* heap access method debugging statistic collection routines
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.14 1998/12/15 12:45:15 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.15 1999/02/13 23:14:25 momjian Exp $
1111
*
1212
* NOTES
1313
* initam should be moved someplace else.

src/backend/access/index/genam.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* genam.c--
3+
* genam.c
44
* general index access method routines
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.15 1998/10/08 18:29:14 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.16 1999/02/13 23:14:29 momjian Exp $
1111
*
1212
* NOTES
1313
* many of the old access method routines have been turned into

src/backend/access/index/indexam.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*-------------------------------------------------------------------------
22
*
3-
* indexam.c--
3+
* indexam.c
44
* general index access method routines
55
*
66
* Copyright (c) 1994, Regents of the University of California
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.29 1998/12/15 12:45:15 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.30 1999/02/13 23:14:30 momjian Exp $
1111
*
1212
* INTERFACE ROUTINES
1313
* index_open - open an index relation by relationId

0 commit comments

Comments
 (0)