summaryrefslogtreecommitdiff
path: root/src/include/executor
diff options
context:
space:
mode:
authorBruce Momjian2001-01-24 19:43:33 +0000
committerBruce Momjian2001-01-24 19:43:33 +0000
commit623bf843d201438db1590906b4c39faf9d2e1c2a (patch)
tree8372b993d8b8c75e2bd3da7fabe822b82c6675f6 /src/include/executor
parentae22682f2abcb47ee4d4f124daa0a3ecd685b6f2 (diff)
Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.
Diffstat (limited to 'src/include/executor')
-rw-r--r--src/include/executor/execFlatten.h4
-rw-r--r--src/include/executor/execdebug.h4
-rw-r--r--src/include/executor/execdefs.h4
-rw-r--r--src/include/executor/execdesc.h4
-rw-r--r--src/include/executor/executor.h4
-rw-r--r--src/include/executor/functions.h4
-rw-r--r--src/include/executor/hashjoin.h4
-rw-r--r--src/include/executor/nodeAgg.h4
-rw-r--r--src/include/executor/nodeAppend.h4
-rw-r--r--src/include/executor/nodeGroup.h4
-rw-r--r--src/include/executor/nodeHash.h4
-rw-r--r--src/include/executor/nodeHashjoin.h4
-rw-r--r--src/include/executor/nodeIndexscan.h4
-rw-r--r--src/include/executor/nodeLimit.h4
-rw-r--r--src/include/executor/nodeMaterial.h4
-rw-r--r--src/include/executor/nodeMergejoin.h4
-rw-r--r--src/include/executor/nodeNestloop.h4
-rw-r--r--src/include/executor/nodeResult.h4
-rw-r--r--src/include/executor/nodeSeqscan.h4
-rw-r--r--src/include/executor/nodeSetOp.h4
-rw-r--r--src/include/executor/nodeSort.h4
-rw-r--r--src/include/executor/nodeSubqueryscan.h4
-rw-r--r--src/include/executor/nodeTidscan.h4
-rw-r--r--src/include/executor/nodeUnique.h4
-rw-r--r--src/include/executor/tuptable.h4
25 files changed, 50 insertions, 50 deletions
diff --git a/src/include/executor/execFlatten.h b/src/include/executor/execFlatten.h
index 3fa3673b201..ede31af1df1 100644
--- a/src/include/executor/execFlatten.h
+++ b/src/include/executor/execFlatten.h
@@ -4,10 +4,10 @@
* prototypes for execFlatten.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: execFlatten.h,v 1.12 2000/08/24 03:29:10 tgl Exp $
+ * $Id: execFlatten.h,v 1.13 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index c4ba3d1f5b6..67f6ca7b4cc 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -4,10 +4,10 @@
* #defines governing debugging behaviour in the executor
*
*
- * 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: execdebug.h,v 1.14 2000/09/12 21:07:09 tgl Exp $
+ * $Id: execdebug.h,v 1.15 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/execdefs.h b/src/include/executor/execdefs.h
index 6b9457969b1..5254102457a 100644
--- a/src/include/executor/execdefs.h
+++ b/src/include/executor/execdefs.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: execdefs.h,v 1.7 2000/09/12 21:07:09 tgl Exp $
+ * $Id: execdefs.h,v 1.8 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h
index e75292370ab..4ee4299a891 100644
--- a/src/include/executor/execdesc.h
+++ b/src/include/executor/execdesc.h
@@ -5,10 +5,10 @@
* and related modules.
*
*
- * 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: execdesc.h,v 1.13 2000/01/26 05:58:05 momjian Exp $
+ * $Id: execdesc.h,v 1.14 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index 8e7f4a48630..0282e7e7140 100644
--- a/src/include/executor/executor.h
+++ b/src/include/executor/executor.h
@@ -4,10 +4,10 @@
* support for the POSTGRES executor module
*
*
- * 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: executor.h,v 1.54 2001/01/22 00:50:07 tgl Exp $
+ * $Id: executor.h,v 1.55 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/functions.h b/src/include/executor/functions.h
index 649e38e142f..676a63e94f9 100644
--- a/src/include/executor/functions.h
+++ b/src/include/executor/functions.h
@@ -4,10 +4,10 @@
* Declarations for execution of SQL-language functions.
*
*
- * 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: functions.h,v 1.14 2000/08/24 03:29:10 tgl Exp $
+ * $Id: functions.h,v 1.15 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/hashjoin.h b/src/include/executor/hashjoin.h
index 28581ad425a..0c09516b743 100644
--- a/src/include/executor/hashjoin.h
+++ b/src/include/executor/hashjoin.h
@@ -4,10 +4,10 @@
* internal structures for hash joins
*
*
- * 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: hashjoin.h,v 1.20 2000/11/16 22:30:43 tgl Exp $
+ * $Id: hashjoin.h,v 1.21 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeAgg.h b/src/include/executor/nodeAgg.h
index 57b10aafb53..e6762642993 100644
--- a/src/include/executor/nodeAgg.h
+++ b/src/include/executor/nodeAgg.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: nodeAgg.h,v 1.11 2000/01/26 05:58:05 momjian Exp $
+ * $Id: nodeAgg.h,v 1.12 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeAppend.h b/src/include/executor/nodeAppend.h
index 2064c614269..bb5fea8c1a2 100644
--- a/src/include/executor/nodeAppend.h
+++ b/src/include/executor/nodeAppend.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: nodeAppend.h,v 1.12 2000/01/26 05:58:05 momjian Exp $
+ * $Id: nodeAppend.h,v 1.13 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h
index 71bd3b52ff5..2fadbf6dcbb 100644
--- a/src/include/executor/nodeGroup.h
+++ b/src/include/executor/nodeGroup.h
@@ -4,10 +4,10 @@
* prototypes for nodeGroup.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: nodeGroup.h,v 1.17 2000/07/12 02:37:30 tgl Exp $
+ * $Id: nodeGroup.h,v 1.18 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeHash.h b/src/include/executor/nodeHash.h
index 5fabe7d253a..71c97470227 100644
--- a/src/include/executor/nodeHash.h
+++ b/src/include/executor/nodeHash.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: nodeHash.h,v 1.17 2000/07/12 02:37:30 tgl Exp $
+ * $Id: nodeHash.h,v 1.18 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeHashjoin.h b/src/include/executor/nodeHashjoin.h
index 33936b2d41c..893e9d014ed 100644
--- a/src/include/executor/nodeHashjoin.h
+++ b/src/include/executor/nodeHashjoin.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: nodeHashjoin.h,v 1.18 2000/06/15 03:32:36 momjian Exp $
+ * $Id: nodeHashjoin.h,v 1.19 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeIndexscan.h b/src/include/executor/nodeIndexscan.h
index 0e33ba8be97..91f8abd6fcc 100644
--- a/src/include/executor/nodeIndexscan.h
+++ b/src/include/executor/nodeIndexscan.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: nodeIndexscan.h,v 1.10 2000/01/26 05:58:05 momjian Exp $
+ * $Id: nodeIndexscan.h,v 1.11 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeLimit.h b/src/include/executor/nodeLimit.h
index 4ed16545fcf..3bfcd76d77e 100644
--- a/src/include/executor/nodeLimit.h
+++ b/src/include/executor/nodeLimit.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: nodeLimit.h,v 1.1 2000/10/26 21:38:03 tgl Exp $
+ * $Id: nodeLimit.h,v 1.2 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeMaterial.h b/src/include/executor/nodeMaterial.h
index b99d54b78d8..ce5a8b172f5 100644
--- a/src/include/executor/nodeMaterial.h
+++ b/src/include/executor/nodeMaterial.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: nodeMaterial.h,v 1.13 2000/06/18 22:44:28 tgl Exp $
+ * $Id: nodeMaterial.h,v 1.14 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeMergejoin.h b/src/include/executor/nodeMergejoin.h
index 4c378b7a597..7850bbc6731 100644
--- a/src/include/executor/nodeMergejoin.h
+++ b/src/include/executor/nodeMergejoin.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: nodeMergejoin.h,v 1.12 2000/01/26 05:58:05 momjian Exp $
+ * $Id: nodeMergejoin.h,v 1.13 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeNestloop.h b/src/include/executor/nodeNestloop.h
index 42e3fae8335..cd27030e992 100644
--- a/src/include/executor/nodeNestloop.h
+++ b/src/include/executor/nodeNestloop.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: nodeNestloop.h,v 1.13 2000/08/13 02:50:20 tgl Exp $
+ * $Id: nodeNestloop.h,v 1.14 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeResult.h b/src/include/executor/nodeResult.h
index f944137b60a..39f15a385a2 100644
--- a/src/include/executor/nodeResult.h
+++ b/src/include/executor/nodeResult.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: nodeResult.h,v 1.10 2000/01/26 05:58:05 momjian Exp $
+ * $Id: nodeResult.h,v 1.11 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeSeqscan.h b/src/include/executor/nodeSeqscan.h
index 503c597eb92..8f425740999 100644
--- a/src/include/executor/nodeSeqscan.h
+++ b/src/include/executor/nodeSeqscan.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: nodeSeqscan.h,v 1.10 2000/01/26 05:58:05 momjian Exp $
+ * $Id: nodeSeqscan.h,v 1.11 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeSetOp.h b/src/include/executor/nodeSetOp.h
index 0414cc46ef0..81805afe134 100644
--- a/src/include/executor/nodeSetOp.h
+++ b/src/include/executor/nodeSetOp.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: nodeSetOp.h,v 1.1 2000/10/05 19:11:36 tgl Exp $
+ * $Id: nodeSetOp.h,v 1.2 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeSort.h b/src/include/executor/nodeSort.h
index 28ec0c20429..2b3a26398a5 100644
--- a/src/include/executor/nodeSort.h
+++ b/src/include/executor/nodeSort.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: nodeSort.h,v 1.10 2000/01/26 05:58:05 momjian Exp $
+ * $Id: nodeSort.h,v 1.11 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeSubqueryscan.h b/src/include/executor/nodeSubqueryscan.h
index c582384b8c3..d58e80c4586 100644
--- a/src/include/executor/nodeSubqueryscan.h
+++ b/src/include/executor/nodeSubqueryscan.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: nodeSubqueryscan.h,v 1.1 2000/09/29 18:21:38 tgl Exp $
+ * $Id: nodeSubqueryscan.h,v 1.2 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeTidscan.h b/src/include/executor/nodeTidscan.h
index 5cefac6666f..f49255c7cdb 100644
--- a/src/include/executor/nodeTidscan.h
+++ b/src/include/executor/nodeTidscan.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: nodeTidscan.h,v 1.4 2000/06/08 22:37:44 momjian Exp $
+ * $Id: nodeTidscan.h,v 1.5 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeUnique.h b/src/include/executor/nodeUnique.h
index f8fca52331f..d3fc08dcec2 100644
--- a/src/include/executor/nodeUnique.h
+++ b/src/include/executor/nodeUnique.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: nodeUnique.h,v 1.10 2000/01/26 05:58:06 momjian Exp $
+ * $Id: nodeUnique.h,v 1.11 2001/01/24 19:43:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h
index 8aa0ba39ecd..47018666a78 100644
--- a/src/include/executor/tuptable.h
+++ b/src/include/executor/tuptable.h
@@ -4,10 +4,10 @@
* tuple table support stuff
*
*
- * 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: tuptable.h,v 1.16 2000/11/12 00:37:01 tgl Exp $
+ * $Id: tuptable.h,v 1.17 2001/01/24 19:43:23 momjian Exp $
*
* NOTES
* The tuple table interface is getting pretty ugly.