summaryrefslogtreecommitdiff
path: root/src/backend/optimizer/prep/preptlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/optimizer/prep/preptlist.c')
-rw-r--r--src/backend/optimizer/prep/preptlist.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/optimizer/prep/preptlist.c b/src/backend/optimizer/prep/preptlist.c
index 5b31b2f578..084809c9d9 100644
--- a/src/backend/optimizer/prep/preptlist.c
+++ b/src/backend/optimizer/prep/preptlist.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * preptlist.c--
+ * preptlist.c
* Routines to preprocess the parse tree target list
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.17 1999/02/03 21:16:45 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.18 1999/02/13 23:16:38 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -43,7 +43,7 @@ static List *new_relation_targetlist(Oid relid, Index rt_index,
/*
- * preprocess-targetlist--
+ * preprocess_targetlist
* Driver for preprocessing the parse tree targetlist.
*
* 1. Deal with appends and replaces by filling missing attributes
@@ -124,7 +124,7 @@ preprocess_targetlist(List *tlist,
*****************************************************************************/
/*
- * expand-targetlist--
+ * expand_targetlist
* Given a target list as generated by the parser and a result relation,
* add targetlist entries for the attributes which have not been used.
*
@@ -235,9 +235,9 @@ replace_matching_resname(List *new_tlist, List *old_tlist)
}
/*
- * new-relation-targetlist--
+ * new_relation_targetlist
* Generate a targetlist for the relation with relation OID 'relid'
- * and rangetable index 'rt-index'.
+ * and rangetable index 'rt_index'.
*
* Returns the new targetlist.
*/