aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-02-13 23:22:53 +0000
committerBruce Momjian <bruce@momjian.us>1999-02-13 23:22:53 +0000
commit6724a5078748946b8150700125571b6ea62feca8 (patch)
treea7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/include/executor
parent8c3fff7337b6389b00e8dda03a079605ee102f1b (diff)
downloadpostgresql-6724a5078748946b8150700125571b6ea62feca8.tar.gz
postgresql-6724a5078748946b8150700125571b6ea62feca8.zip
Change my-function-name-- to my_function_name, and optimizer renames.
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/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/nodeSort.h4
-rw-r--r--src/include/executor/nodeSubplan.h2
-rw-r--r--src/include/executor/nodeTee.h4
-rw-r--r--src/include/executor/nodeUnique.h4
-rw-r--r--src/include/executor/spi.h2
-rw-r--r--src/include/executor/spi_priv.h4
-rw-r--r--src/include/executor/tuptable.h4
25 files changed, 48 insertions, 48 deletions
diff --git a/src/include/executor/execFlatten.h b/src/include/executor/execFlatten.h
index 36f434804f7..be72695412a 100644
--- a/src/include/executor/execFlatten.h
+++ b/src/include/executor/execFlatten.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * execFlatten.h--
+ * execFlatten.h
* prototypes for execFlatten.c.
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execFlatten.h,v 1.7 1998/09/01 04:35:44 momjian Exp $
+ * $Id: execFlatten.h,v 1.8 1999/02/13 23:21:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/execdebug.h b/src/include/executor/execdebug.h
index 40ffd4a1d4f..da4927db0be 100644
--- a/src/include/executor/execdebug.h
+++ b/src/include/executor/execdebug.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * execdebug.h--
+ * execdebug.h
* #defines governing debugging behaviour in the executor
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execdebug.h,v 1.6 1998/09/01 04:35:46 momjian Exp $
+ * $Id: execdebug.h,v 1.7 1999/02/13 23:21:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/execdefs.h b/src/include/executor/execdefs.h
index 330801e2f9a..0e5e7f4e3a4 100644
--- a/src/include/executor/execdefs.h
+++ b/src/include/executor/execdefs.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * execdefs.h--
+ * execdefs.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execdefs.h,v 1.3 1998/09/01 04:35:47 momjian Exp $
+ * $Id: execdefs.h,v 1.4 1999/02/13 23:21:22 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h
index 258ff39fae8..0dba8ccabd1 100644
--- a/src/include/executor/execdesc.h
+++ b/src/include/executor/execdesc.h
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * execdesc.h--
+ * execdesc.h
* plan and query descriptor accessor macros used by the executor
* and related modules.
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: execdesc.h,v 1.9 1998/09/01 04:35:48 momjian Exp $
+ * $Id: execdesc.h,v 1.10 1999/02/13 23:21:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h
index 2b015f4c8b6..2bb8109ecfb 100644
--- a/src/include/executor/executor.h
+++ b/src/include/executor/executor.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * executor.h--
+ * executor.h
* support for the POSTGRES executor module
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: executor.h,v 1.30 1999/02/08 14:14:18 wieck Exp $
+ * $Id: executor.h,v 1.31 1999/02/13 23:21:23 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/functions.h b/src/include/executor/functions.h
index c521b9efd61..48a3d63fe3d 100644
--- a/src/include/executor/functions.h
+++ b/src/include/executor/functions.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * functions.h--
+ * functions.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: functions.h,v 1.8 1998/09/01 04:35:51 momjian Exp $
+ * $Id: functions.h,v 1.9 1999/02/13 23:21:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/hashjoin.h b/src/include/executor/hashjoin.h
index 3dceec85f34..66e88a09157 100644
--- a/src/include/executor/hashjoin.h
+++ b/src/include/executor/hashjoin.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * hashjoin.h--
+ * hashjoin.h
* internal structures for hash table and buckets
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: hashjoin.h,v 1.7 1998/09/01 04:35:52 momjian Exp $
+ * $Id: hashjoin.h,v 1.8 1999/02/13 23:21:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeAgg.h b/src/include/executor/nodeAgg.h
index 7c3ee010e87..5462f31c64d 100644
--- a/src/include/executor/nodeAgg.h
+++ b/src/include/executor/nodeAgg.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeAgg.h--
+ * nodeAgg.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeAgg.h,v 1.8 1998/09/01 04:35:53 momjian Exp $
+ * $Id: nodeAgg.h,v 1.9 1999/02/13 23:21:24 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeAppend.h b/src/include/executor/nodeAppend.h
index 10549fbaca8..6bc60806544 100644
--- a/src/include/executor/nodeAppend.h
+++ b/src/include/executor/nodeAppend.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeAppend.h--
+ * nodeAppend.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeAppend.h,v 1.9 1998/09/01 04:35:54 momjian Exp $
+ * $Id: nodeAppend.h,v 1.10 1999/02/13 23:21:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeGroup.h b/src/include/executor/nodeGroup.h
index e56995fecdf..8239b865e1f 100644
--- a/src/include/executor/nodeGroup.h
+++ b/src/include/executor/nodeGroup.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeGroup.h--
+ * nodeGroup.h
* prototypes for nodeGroup.c
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeGroup.h,v 1.8 1999/01/18 00:10:02 momjian Exp $
+ * $Id: nodeGroup.h,v 1.9 1999/02/13 23:21:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeHash.h b/src/include/executor/nodeHash.h
index 27ae5f80d3f..c062e93a0ab 100644
--- a/src/include/executor/nodeHash.h
+++ b/src/include/executor/nodeHash.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeHash.h--
+ * nodeHash.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeHash.h,v 1.10 1998/09/01 04:35:57 momjian Exp $
+ * $Id: nodeHash.h,v 1.11 1999/02/13 23:21:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeHashjoin.h b/src/include/executor/nodeHashjoin.h
index 8699e593362..cb917c73e91 100644
--- a/src/include/executor/nodeHashjoin.h
+++ b/src/include/executor/nodeHashjoin.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeHashjoin.h--
+ * nodeHashjoin.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeHashjoin.h,v 1.10 1998/09/01 04:35:58 momjian Exp $
+ * $Id: nodeHashjoin.h,v 1.11 1999/02/13 23:21:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeIndexscan.h b/src/include/executor/nodeIndexscan.h
index 2990e75b480..2d959a8ca84 100644
--- a/src/include/executor/nodeIndexscan.h
+++ b/src/include/executor/nodeIndexscan.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeIndexscan.h--
+ * nodeIndexscan.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeIndexscan.h,v 1.7 1998/09/01 04:35:59 momjian Exp $
+ * $Id: nodeIndexscan.h,v 1.8 1999/02/13 23:21:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeMaterial.h b/src/include/executor/nodeMaterial.h
index dbd755bae8c..26078fc1b06 100644
--- a/src/include/executor/nodeMaterial.h
+++ b/src/include/executor/nodeMaterial.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeMaterial.h--
+ * nodeMaterial.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeMaterial.h,v 1.8 1998/09/01 04:36:01 momjian Exp $
+ * $Id: nodeMaterial.h,v 1.9 1999/02/13 23:21:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeMergejoin.h b/src/include/executor/nodeMergejoin.h
index 1095315978c..779408df65e 100644
--- a/src/include/executor/nodeMergejoin.h
+++ b/src/include/executor/nodeMergejoin.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeMergejoin.h--
+ * nodeMergejoin.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeMergejoin.h,v 1.9 1998/09/01 04:36:02 momjian Exp $
+ * $Id: nodeMergejoin.h,v 1.10 1999/02/13 23:21:26 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeNestloop.h b/src/include/executor/nodeNestloop.h
index 21cf4078382..82f9e793725 100644
--- a/src/include/executor/nodeNestloop.h
+++ b/src/include/executor/nodeNestloop.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeNestloop.h--
+ * nodeNestloop.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeNestloop.h,v 1.8 1999/02/12 17:24:55 momjian Exp $
+ * $Id: nodeNestloop.h,v 1.9 1999/02/13 23:21:27 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeResult.h b/src/include/executor/nodeResult.h
index f966ab0dc90..c5ad4ea715c 100644
--- a/src/include/executor/nodeResult.h
+++ b/src/include/executor/nodeResult.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeResult.h--
+ * nodeResult.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeResult.h,v 1.7 1998/09/01 04:36:04 momjian Exp $
+ * $Id: nodeResult.h,v 1.8 1999/02/13 23:21:27 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeSeqscan.h b/src/include/executor/nodeSeqscan.h
index 1064b02b97a..d8586784716 100644
--- a/src/include/executor/nodeSeqscan.h
+++ b/src/include/executor/nodeSeqscan.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeSeqscan.h--
+ * nodeSeqscan.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeSeqscan.h,v 1.7 1998/09/01 04:36:05 momjian Exp $
+ * $Id: nodeSeqscan.h,v 1.8 1999/02/13 23:21:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeSort.h b/src/include/executor/nodeSort.h
index 5d405fcc003..590f49dfd28 100644
--- a/src/include/executor/nodeSort.h
+++ b/src/include/executor/nodeSort.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeSort.h--
+ * nodeSort.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeSort.h,v 1.7 1998/09/01 04:36:07 momjian Exp $
+ * $Id: nodeSort.h,v 1.8 1999/02/13 23:21:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeSubplan.h b/src/include/executor/nodeSubplan.h
index a28cd2c4852..b74fbc00af8 100644
--- a/src/include/executor/nodeSubplan.h
+++ b/src/include/executor/nodeSubplan.h
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * nodeSubplan.h--
+ * nodeSubplan.h
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeTee.h b/src/include/executor/nodeTee.h
index 797b3cbad0e..817228e4cdc 100644
--- a/src/include/executor/nodeTee.h
+++ b/src/include/executor/nodeTee.h
@@ -1,11 +1,11 @@
/*-------------------------------------------------------------------------
*
- * nodeTee.h--
+ * nodeTee.h
* support functions for a Tee executor node
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeTee.h,v 1.7 1998/10/08 18:30:31 momjian Exp $
+ * $Id: nodeTee.h,v 1.8 1999/02/13 23:21:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/nodeUnique.h b/src/include/executor/nodeUnique.h
index f414b7b6598..cece9f3f936 100644
--- a/src/include/executor/nodeUnique.h
+++ b/src/include/executor/nodeUnique.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * nodeUnique.h--
+ * nodeUnique.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodeUnique.h,v 1.7 1998/09/01 04:36:11 momjian Exp $
+ * $Id: nodeUnique.h,v 1.8 1999/02/13 23:21:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/spi.h b/src/include/executor/spi.h
index cc0ac6c4b7d..cc72cddc903 100644
--- a/src/include/executor/spi.h
+++ b/src/include/executor/spi.h
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
- * spi.h--
+ * spi.h
*
*
*-------------------------------------------------------------------------
diff --git a/src/include/executor/spi_priv.h b/src/include/executor/spi_priv.h
index c0e44921f1c..0ed47bf1e1d 100644
--- a/src/include/executor/spi_priv.h
+++ b/src/include/executor/spi_priv.h
@@ -1,9 +1,9 @@
/*-------------------------------------------------------------------------
*
- * spi.c--
+ * spi.c
* Server Programming Interface private declarations
*
- * $Header: /cvsroot/pgsql/src/include/executor/spi_priv.h,v 1.1 1999/01/27 16:15:21 wieck Exp $
+ * $Header: /cvsroot/pgsql/src/include/executor/spi_priv.h,v 1.2 1999/02/13 23:21:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h
index 82a5651a299..6441b066b06 100644
--- a/src/include/executor/tuptable.h
+++ b/src/include/executor/tuptable.h
@@ -1,12 +1,12 @@
/*-------------------------------------------------------------------------
*
- * tuptable.h--
+ * tuptable.h
* tuple table support stuff
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: tuptable.h,v 1.9 1998/11/27 19:33:33 vadim Exp $
+ * $Id: tuptable.h,v 1.10 1999/02/13 23:21:29 momjian Exp $
*
* NOTES
* The tuple table interface is getting pretty ugly.