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

Commit 5c25d60

Browse files
committed
Add:
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
1 parent b866d2e commit 5c25d60

File tree

596 files changed

+1776
-1179
lines changed

Some content is hidden

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

596 files changed

+1776
-1179
lines changed

contrib/os2client/c.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
* postgres.
88
*
99
*
10-
* Copyright (c) 1994, Regents of the University of California
10+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
11+
* Portions Copyright (c) 1994, Regents of the University of California
1112
*
12-
* $Id: c.h,v 1.2 1999/05/25 16:06:01 momjian Exp $
13+
* $Id: c.h,v 1.3 2000/01/26 05:55:52 momjian Exp $
1314
*
1415
*-------------------------------------------------------------------------
1516
*/

contrib/vacuumlo/vacuumlo.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* vacuumlo.c
44
* This removes orphaned large objects from a database.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/contrib/vacuumlo/vacuumlo.c,v 1.2 1999/05/25 16:06:31 momjian Exp $
11+
* $Header: /cvsroot/pgsql/contrib/vacuumlo/vacuumlo.c,v 1.3 2000/01/26 05:55:52 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/common/heaptuple.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
* This file contains heap tuple accessor and mutator routines, as well
55
* as a few various tuple utilities.
66
*
7-
* Copyright (c) 1994, Regents of the University of California
7+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8+
* Portions Copyright (c) 1994, Regents of the University of California
89
*
910
*
1011
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.60 2000/01/15 02:59:17 petere Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.61 2000/01/26 05:55:53 momjian Exp $
1213
*
1314
* NOTES
1415
* The old interface functions have been converted to macros

src/backend/access/common/indextuple.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
* This file contains index tuple accessor and mutator routines,
55
* as well as a few various tuple utilities.
66
*
7-
* Copyright (c) 1994, Regents of the University of California
7+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8+
* Portions Copyright (c) 1994, Regents of the University of California
89
*
910
*
1011
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.41 2000/01/15 02:59:17 petere Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.42 2000/01/26 05:55:53 momjian Exp $
1213
*
1314
*-------------------------------------------------------------------------
1415
*/

src/backend/access/common/indexvalid.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* indexvalid.c
44
* index tuple qualification validity checking code
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.23 1999/07/15 23:02:51 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/Attic/indexvalid.c,v 1.24 2000/01/26 05:55:53 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/common/printtup.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
* Routines to print out tuples to the destination (binary or non-binary
55
* portals, frontend/interactive backend, etc.).
66
*
7-
* Copyright (c) 1994, Regents of the University of California
7+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8+
* Portions Copyright (c) 1994, Regents of the University of California
89
*
910
*
1011
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.51 1999/11/22 17:55:52 momjian Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/access/common/printtup.c,v 1.52 2000/01/26 05:55:53 momjian Exp $
1213
*
1314
*-------------------------------------------------------------------------
1415
*/

src/backend/access/common/scankey.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* scan.c
44
* scan direction and key code
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.16 1999/07/15 23:02:51 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/scankey.c,v 1.17 2000/01/26 05:55:53 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/common/tupdesc.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* tupdesc.c
44
* POSTGRES tuple descriptor support code
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.59 1999/12/21 00:06:39 wieck Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/tupdesc.c,v 1.60 2000/01/26 05:55:53 momjian Exp $
1112
*
1213
* NOTES
1314
* some of the executor utility code such as "ExecTypeFromTL" should be

src/backend/access/gist/giststrat.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
* giststrat.c
44
* strategy map data for GiSTs.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION

src/backend/access/hash/hash.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hash.c
44
* Implementation of Margo Seltzer's Hashing package for postgres.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.34 2000/01/19 23:54:47 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hash.c,v 1.35 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
* NOTES
1314
* This file contains only the public interface routines.

src/backend/access/hash/hashfunc.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hashfunc.c
44
* Comparison functions for hash access method.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.22 2000/01/10 17:14:28 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashfunc.c,v 1.23 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
* NOTES
1314
* These functions are stored in pg_amproc. For each operator class

src/backend/access/hash/hashinsert.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hashinsert.c
44
* Item insertion in hash tables for Postgres.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.18 1999/07/19 07:07:16 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashinsert.c,v 1.19 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/hash/hashovfl.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hashovfl.c
44
* Overflow page management code for the Postgres hash access method
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.25 1999/07/19 07:07:16 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.26 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
* NOTES
1314
* Overflow pages look like ordinary relation pages.

src/backend/access/hash/hashpage.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hashpage.c
44
* Hash table page management code for the Postgres hash access method
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.25 1999/07/19 07:07:17 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashpage.c,v 1.26 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
* NOTES
1314
* Postgres hash pages look like ordinary relation pages. The opaque

src/backend/access/hash/hashscan.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hashscan.c
44
* manage scans on hash tables
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.21 2000/01/15 02:59:19 petere Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.22 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
* NOTES
1314
* Because we can be doing an index scan on a relation while we

src/backend/access/hash/hashsearch.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hashsearch.c
44
* search code for postgres hash tables
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.21 1999/07/17 20:16:39 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.22 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/hash/hashstrat.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* btstrat.c
44
* Srategy map entries for the btree indexed access method
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.15 1999/07/15 23:02:56 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.16 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/hash/hashutil.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* btutils.c
44
* Utility code for Postgres btree implementation.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.22 1999/07/19 07:07:17 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/hash/hashutil.c,v 1.23 2000/01/26 05:55:55 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/heap/heapam.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* heapam.c
44
* heap access method code
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.64 2000/01/22 14:20:43 petere Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.65 2000/01/26 05:55:56 momjian Exp $
1112
*
1213
*
1314
* INTERFACE ROUTINES

src/backend/access/heap/hio.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* hio.c
44
* POSTGRES heap access method input/output code.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Id: hio.c,v 1.28 2000/01/15 02:59:20 petere Exp $
11+
* $Id: hio.c,v 1.29 2000/01/26 05:55:56 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/heap/stats.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* stats.c
44
* heap access method debugging statistic collection routines
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.21 1999/07/17 20:16:40 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/heap/Attic/stats.c,v 1.22 2000/01/26 05:55:56 momjian Exp $
1112
*
1213
* NOTES
1314
* initam should be moved someplace else.

src/backend/access/index/genam.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* genam.c
44
* general index access method routines
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.22 1999/12/30 05:04:50 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/index/genam.c,v 1.23 2000/01/26 05:55:57 momjian Exp $
1112
*
1213
* NOTES
1314
* many of the old access method routines have been turned into

src/backend/access/index/indexam.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* indexam.c
44
* general index access method routines
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.39 2000/01/22 23:50:09 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/index/indexam.c,v 1.40 2000/01/26 05:55:57 momjian Exp $
1112
*
1213
* INTERFACE ROUTINES
1314
* index_open - open an index relation by relationId

src/backend/access/index/istrat.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
* index scan strategy manipulation code and index strategy manipulation
55
* operator code.
66
*
7-
* Copyright (c) 1994, Regents of the University of California
7+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8+
* Portions Copyright (c) 1994, Regents of the University of California
89
*
910
*
1011
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.39 2000/01/15 02:59:21 petere Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.40 2000/01/26 05:55:57 momjian Exp $
1213
*
1314
*-------------------------------------------------------------------------
1415
*/

src/backend/access/nbtree/nbtcompare.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* nbtcompare.c
44
* Comparison functions for btree access method.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.30 2000/01/10 17:14:29 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.31 2000/01/26 05:55:58 momjian Exp $
1112
*
1213
* NOTES
1314
* These functions are stored in pg_amproc. For each operator class

src/backend/access/nbtree/nbtinsert.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
* btinsert.c
44
* Item insertion in Lehman and Yao btrees for Postgres.
55
*
6-
* Copyright (c) 1994, Regents of the University of California
6+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
7+
* Portions Copyright (c) 1994, Regents of the University of California
78
*
89
*
910
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.53 2000/01/15 02:59:23 petere Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.54 2000/01/26 05:55:58 momjian Exp $
1112
*
1213
*-------------------------------------------------------------------------
1314
*/

src/backend/access/nbtree/nbtpage.c

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
* BTree-specific page management code for the Postgres btree access
55
* method.
66
*
7-
* Copyright (c) 1994, Regents of the University of California
7+
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
8+
* Portions Copyright (c) 1994, Regents of the University of California
89
*
910
*
1011
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.34 1999/12/01 00:29:53 momjian Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.35 2000/01/26 05:55:58 momjian Exp $
1213
*
1314
* NOTES
1415
* Postgres btree pages look like ordinary relation pages. The opaque

0 commit comments

Comments
 (0)