aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1999-02-23 07:36:31 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1999-02-23 07:36:31 +0000
commit25cccc05aabfc731dcf99c5dc7db8f1aa0dee27d (patch)
treef70d7883dda0ecfc732c858cf9cf06dced49b093 /src
parent6d73a8c0cb9247297fb3e8fb21a357983d2c128e (diff)
downloadpostgresql-25cccc05aabfc731dcf99c5dc7db8f1aa0dee27d.tar.gz
postgresql-25cccc05aabfc731dcf99c5dc7db8f1aa0dee27d.zip
Fix typos in comments.
Diffstat (limited to 'src')
-rw-r--r--src/backend/executor/execQual.c6
-rw-r--r--src/include/executor/tuptable.h18
2 files changed, 11 insertions, 13 deletions
diff --git a/src/backend/executor/execQual.c b/src/backend/executor/execQual.c
index 76dcd41baa2..b1d29f3d8e5 100644
--- a/src/backend/executor/execQual.c
+++ b/src/backend/executor/execQual.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.45 1999/02/22 19:40:09 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.46 1999/02/23 07:33:44 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1454,7 +1454,7 @@ ExecTargetList(List *targetlist,
EV_printf("\n");
/*
- * Return a dummy tuple if the targetlist is empty .
+ * Return a dummy tuple if the targetlist is empty.
* the dummy tuple is necessary to differentiate
* between passing and failing the qualification.
*/
@@ -1462,7 +1462,7 @@ ExecTargetList(List *targetlist,
{
/*
* I now think that the only time this makes
- * any sence is when we run a delete query. Then
+ * any sense is when we run a delete query. Then
* we need to return something other than nil
* so we know to delete the tuple associated
* with the saved tupleid.. see what ExecutePlan
diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h
index 6441b066b06..8ca01ef8e64 100644
--- a/src/include/executor/tuptable.h
+++ b/src/include/executor/tuptable.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: tuptable.h,v 1.10 1999/02/13 23:21:29 momjian Exp $
+ * $Id: tuptable.h,v 1.11 1999/02/23 07:36:31 thomas Exp $
*
* NOTES
* The tuple table interface is getting pretty ugly.
@@ -22,8 +22,8 @@
#include <access/htup.h>
/* ----------------
- * Note: the executor tuple table is managed and manipulated by special
- * code and macros in executor/execTuples.c and tupTable.h
+ * The executor tuple table is managed and manipulated by special
+ * code in executor/execTuples.c and tupTable.h
*
* TupleTableSlot information
*
@@ -42,6 +42,11 @@
* "retrieve (EMP.hobbies.all)", a single scan may return tuples
* of many types, so now we return pointers to tuple descriptors
* along with tuples returned via the tuple table. -cim 1/18/90
+ *
+ * Tuple table macros are all excised from the system now.
+ * See executor.h for decls of functions defined in execTuples.c
+ * -jolly
+ *
* ----------------
*/
typedef struct TupleTableSlot
@@ -68,11 +73,4 @@ typedef struct TupleTableData
typedef TupleTableData *TupleTable;
-/*
- tuple table macros are all excised from the system now
- see executor.h for decls of functions defined in execTuples.c
-
- - jolly
-*/
-
#endif /* TUPTABLE_H */