summaryrefslogtreecommitdiff
path: root/src/include/access
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-01-24 19:43:33 +0000
committerBruce Momjian <bruce@momjian.us>2001-01-24 19:43:33 +0000
commit623bf843d201438db1590906b4c39faf9d2e1c2a (patch)
tree8372b993d8b8c75e2bd3da7fabe822b82c6675f6 /src/include/access
parentae22682f2abcb47ee4d4f124daa0a3ecd685b6f2 (diff)
downloadpostgresql-623bf843d201438db1590906b4c39faf9d2e1c2a.tar.gz
Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.
Diffstat (limited to 'src/include/access')
-rw-r--r--src/include/access/attnum.h4
-rw-r--r--src/include/access/genam.h4
-rw-r--r--src/include/access/hash.h4
-rw-r--r--src/include/access/heapam.h4
-rw-r--r--src/include/access/hio.h4
-rw-r--r--src/include/access/htup.h4
-rw-r--r--src/include/access/ibit.h4
-rw-r--r--src/include/access/iqual.h4
-rw-r--r--src/include/access/istrat.h4
-rw-r--r--src/include/access/itup.h4
-rw-r--r--src/include/access/nbtree.h4
-rw-r--r--src/include/access/printtup.h4
-rw-r--r--src/include/access/relscan.h4
-rw-r--r--src/include/access/rtree.h4
-rw-r--r--src/include/access/rtscan.h4
-rw-r--r--src/include/access/rtstrat.h4
-rw-r--r--src/include/access/sdir.h4
-rw-r--r--src/include/access/skey.h4
-rw-r--r--src/include/access/strat.h4
-rw-r--r--src/include/access/transam.h4
-rw-r--r--src/include/access/tupdesc.h4
-rw-r--r--src/include/access/tupmacs.h4
-rw-r--r--src/include/access/valid.h4
-rw-r--r--src/include/access/xact.h4
24 files changed, 48 insertions, 48 deletions
diff --git a/src/include/access/attnum.h b/src/include/access/attnum.h
index 7fc65f3faa..babfa0b20e 100644
--- a/src/include/access/attnum.h
+++ b/src/include/access/attnum.h
@@ -4,10 +4,10 @@
* POSTGRES attribute number definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: attnum.h,v 1.11 2000/01/26 05:57:49 momjian Exp $
+ * $Id: attnum.h,v 1.12 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/genam.h b/src/include/access/genam.h
index b62a979f05..0102d8c7e4 100644
--- a/src/include/access/genam.h
+++ b/src/include/access/genam.h
@@ -4,10 +4,10 @@
* POSTGRES general access method definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: genam.h,v 1.24 2000/07/14 22:17:53 tgl Exp $
+ * $Id: genam.h,v 1.25 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/hash.h b/src/include/access/hash.h
index de74ca4f92..5cab47fa0b 100644
--- a/src/include/access/hash.h
+++ b/src/include/access/hash.h
@@ -4,10 +4,10 @@
* header file for postgres hash access method implementation
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: hash.h,v 1.36 2000/11/21 21:16:05 petere Exp $
+ * $Id: hash.h,v 1.37 2001/01/24 19:43:19 momjian Exp $
*
* NOTES
* modeled after Margo Seltzer's hash implementation for unix.
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h
index 461599cee1..5ab8a69474 100644
--- a/src/include/access/heapam.h
+++ b/src/include/access/heapam.h
@@ -4,10 +4,10 @@
* POSTGRES heap access method definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: heapam.h,v 1.61 2001/01/23 04:32:23 tgl Exp $
+ * $Id: heapam.h,v 1.62 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/hio.h b/src/include/access/hio.h
index df39aed6cb..4147645134 100644
--- a/src/include/access/hio.h
+++ b/src/include/access/hio.h
@@ -4,10 +4,10 @@
* POSTGRES heap access method input/output definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: hio.h,v 1.16 2000/09/07 09:58:35 vadim Exp $
+ * $Id: hio.h,v 1.17 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/htup.h b/src/include/access/htup.h
index c01d680659..ce7b4a2d87 100644
--- a/src/include/access/htup.h
+++ b/src/include/access/htup.h
@@ -4,10 +4,10 @@
* POSTGRES heap tuple definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: htup.h,v 1.44 2000/12/30 15:19:56 vadim Exp $
+ * $Id: htup.h,v 1.45 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/ibit.h b/src/include/access/ibit.h
index 3a8099e778..15b45a8b12 100644
--- a/src/include/access/ibit.h
+++ b/src/include/access/ibit.h
@@ -4,10 +4,10 @@
* POSTGRES index valid attribute bit map definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: ibit.h,v 1.14 2000/06/15 03:32:31 momjian Exp $
+ * $Id: ibit.h,v 1.15 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/iqual.h b/src/include/access/iqual.h
index e46bc5aff0..4a3768a7d3 100644
--- a/src/include/access/iqual.h
+++ b/src/include/access/iqual.h
@@ -4,10 +4,10 @@
* Index scan key qualification definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: iqual.h,v 1.14 2000/01/26 05:57:50 momjian Exp $
+ * $Id: iqual.h,v 1.15 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/istrat.h b/src/include/access/istrat.h
index 9178f8c410..f525f41922 100644
--- a/src/include/access/istrat.h
+++ b/src/include/access/istrat.h
@@ -4,10 +4,10 @@
* POSTGRES index strategy definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: istrat.h,v 1.18 2000/07/14 22:17:53 tgl Exp $
+ * $Id: istrat.h,v 1.19 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/itup.h b/src/include/access/itup.h
index f840ead4cb..717bcd68ae 100644
--- a/src/include/access/itup.h
+++ b/src/include/access/itup.h
@@ -4,10 +4,10 @@
* POSTGRES index tuple definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: itup.h,v 1.27 2000/12/27 23:59:13 tgl Exp $
+ * $Id: itup.h,v 1.28 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/nbtree.h b/src/include/access/nbtree.h
index 08d8daaea4..ed35f7b1f0 100644
--- a/src/include/access/nbtree.h
+++ b/src/include/access/nbtree.h
@@ -4,10 +4,10 @@
* header file for postgres btree access method implementation.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: nbtree.h,v 1.49 2000/12/28 13:00:25 vadim Exp $
+ * $Id: nbtree.h,v 1.50 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/printtup.h b/src/include/access/printtup.h
index a70a9c35e9..f6a4f237c3 100644
--- a/src/include/access/printtup.h
+++ b/src/include/access/printtup.h
@@ -4,10 +4,10 @@
*
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: printtup.h,v 1.13 2000/12/01 22:10:30 tgl Exp $
+ * $Id: printtup.h,v 1.14 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/relscan.h b/src/include/access/relscan.h
index 19e4e28631..b97b52979e 100644
--- a/src/include/access/relscan.h
+++ b/src/include/access/relscan.h
@@ -4,10 +4,10 @@
* POSTGRES internal relation scan descriptor definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: relscan.h,v 1.19 2000/03/14 23:52:00 tgl Exp $
+ * $Id: relscan.h,v 1.20 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/rtree.h b/src/include/access/rtree.h
index 50879ce841..0226e6327e 100644
--- a/src/include/access/rtree.h
+++ b/src/include/access/rtree.h
@@ -4,10 +4,10 @@
* common declarations for the rtree access method code.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: rtree.h,v 1.20 2000/11/21 21:16:05 petere Exp $
+ * $Id: rtree.h,v 1.21 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/rtscan.h b/src/include/access/rtscan.h
index e9c4c21e79..efdf44f072 100644
--- a/src/include/access/rtscan.h
+++ b/src/include/access/rtscan.h
@@ -4,10 +4,10 @@
* routines defined in access/rtree/rtscan.c
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: rtscan.h,v 1.9 2000/01/26 05:57:51 momjian Exp $
+ * $Id: rtscan.h,v 1.10 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/rtstrat.h b/src/include/access/rtstrat.h
index c253c4aa65..a840eacc5d 100644
--- a/src/include/access/rtstrat.h
+++ b/src/include/access/rtstrat.h
@@ -4,10 +4,10 @@
* routines defined in access/rtree/rtstrat.c
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: rtstrat.h,v 1.12 2000/01/26 05:57:51 momjian Exp $
+ * $Id: rtstrat.h,v 1.13 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/sdir.h b/src/include/access/sdir.h
index 87f00685f0..a9229c89c3 100644
--- a/src/include/access/sdir.h
+++ b/src/include/access/sdir.h
@@ -4,10 +4,10 @@
* POSTGRES scan direction definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: sdir.h,v 1.8 2000/11/02 23:11:03 tgl Exp $
+ * $Id: sdir.h,v 1.9 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/skey.h b/src/include/access/skey.h
index d88bc0c6bd..0cb9dc5d68 100644
--- a/src/include/access/skey.h
+++ b/src/include/access/skey.h
@@ -4,10 +4,10 @@
* POSTGRES scan key definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: skey.h,v 1.13 2000/01/26 05:57:51 momjian Exp $
+ * $Id: skey.h,v 1.14 2001/01/24 19:43:19 momjian Exp $
*
*
* Note:
diff --git a/src/include/access/strat.h b/src/include/access/strat.h
index 9406b88ac3..445e1e871e 100644
--- a/src/include/access/strat.h
+++ b/src/include/access/strat.h
@@ -5,10 +5,10 @@
* (separated out from original istrat.h to avoid circular refs)
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: strat.h,v 1.18 2000/04/12 17:16:26 momjian Exp $
+ * $Id: strat.h,v 1.19 2001/01/24 19:43:19 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/transam.h b/src/include/access/transam.h
index 0e6212eed7..620f6e5910 100644
--- a/src/include/access/transam.h
+++ b/src/include/access/transam.h
@@ -4,10 +4,10 @@
* postgres transaction access method support code header
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: transam.h,v 1.28 2000/11/30 08:46:25 vadim Exp $
+ * $Id: transam.h,v 1.29 2001/01/24 19:43:19 momjian Exp $
*
* NOTES
* Transaction System Version 101 now support proper oid
diff --git a/src/include/access/tupdesc.h b/src/include/access/tupdesc.h
index 662842cf45..644fe201f9 100644
--- a/src/include/access/tupdesc.h
+++ b/src/include/access/tupdesc.h
@@ -4,10 +4,10 @@
* POSTGRES tuple descriptor definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: tupdesc.h,v 1.29 2000/05/22 02:34:23 momjian Exp $
+ * $Id: tupdesc.h,v 1.30 2001/01/24 19:43:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/tupmacs.h b/src/include/access/tupmacs.h
index eb977189e1..9b12407e39 100644
--- a/src/include/access/tupmacs.h
+++ b/src/include/access/tupmacs.h
@@ -4,10 +4,10 @@
* Tuple macros used by both index tuples and heap tuples.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: tupmacs.h,v 1.15 2000/12/27 23:59:13 tgl Exp $
+ * $Id: tupmacs.h,v 1.16 2001/01/24 19:43:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/valid.h b/src/include/access/valid.h
index d89b3fce18..d1e7f14173 100644
--- a/src/include/access/valid.h
+++ b/src/include/access/valid.h
@@ -4,10 +4,10 @@
* POSTGRES tuple qualification validity definitions.
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: valid.h,v 1.22 2000/05/30 04:24:55 tgl Exp $
+ * $Id: valid.h,v 1.23 2001/01/24 19:43:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/access/xact.h b/src/include/access/xact.h
index 6736942e05..2196aa84b2 100644
--- a/src/include/access/xact.h
+++ b/src/include/access/xact.h
@@ -4,10 +4,10 @@
* postgres transaction system definitions
*
*
- * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
+ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: xact.h,v 1.31 2000/11/30 08:46:25 vadim Exp $
+ * $Id: xact.h,v 1.32 2001/01/24 19:43:20 momjian Exp $
*
*-------------------------------------------------------------------------
*/