diff options
| author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-02-23 07:36:31 +0000 |
|---|---|---|
| committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1999-02-23 07:36:31 +0000 |
| commit | 25cccc05aabfc731dcf99c5dc7db8f1aa0dee27d (patch) | |
| tree | f70d7883dda0ecfc732c858cf9cf06dced49b093 /src/include/executor | |
| parent | 6d73a8c0cb9247297fb3e8fb21a357983d2c128e (diff) | |
| download | postgresql-25cccc05aabfc731dcf99c5dc7db8f1aa0dee27d.tar.gz | |
Fix typos in comments.
Diffstat (limited to 'src/include/executor')
| -rw-r--r-- | src/include/executor/tuptable.h | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/include/executor/tuptable.h b/src/include/executor/tuptable.h index 6441b066b0..8ca01ef8e6 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 */ |
