diff options
| author | Bruce Momjian <bruce@momjian.us> | 1999-02-13 23:22:53 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1999-02-13 23:22:53 +0000 |
| commit | 6724a5078748946b8150700125571b6ea62feca8 (patch) | |
| tree | a7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/backend/optimizer/geqo/geqo_paths.c | |
| parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) | |
| download | postgresql-6724a5078748946b8150700125571b6ea62feca8.tar.gz | |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/backend/optimizer/geqo/geqo_paths.c')
| -rw-r--r-- | src/backend/optimizer/geqo/geqo_paths.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/optimizer/geqo/geqo_paths.c b/src/backend/optimizer/geqo/geqo_paths.c index af8e683b32..a39aa21728 100644 --- a/src/backend/optimizer/geqo/geqo_paths.c +++ b/src/backend/optimizer/geqo/geqo_paths.c @@ -1,11 +1,11 @@ /*------------------------------------------------------------------------- * - * geqo_paths.c-- + * geqo_paths.c * Routines to process redundant paths and relations * * Copyright (c) 1994, Regents of the University of California * - * $Id: geqo_paths.c,v 1.19 1999/02/12 17:24:47 momjian Exp $ + * $Id: geqo_paths.c,v 1.20 1999/02/13 23:16:11 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -31,9 +31,9 @@ static List *geqo_prune_rel(RelOptInfo *rel, List *other_rels); /* - * geqo-prune-rels-- + * geqo_prune_rels * Removes any redundant relation entries from a list of rel nodes - * 'rel-list'. + * 'rel_list'. * * Returns the resulting list. * @@ -53,8 +53,8 @@ geqo_prune_rels(List *rel_list) } /* - * geqo-prune-rel-- - * Prunes those relations from 'other-rels' that are redundant with + * geqo_prune_rel + * Prunes those relations from 'other_rels' that are redundant with * 'rel'. A relation is redundant if it is built up of the same * relations as 'rel'. Paths for the redundant relation are merged into * the pathlist of 'rel'. @@ -91,7 +91,7 @@ geqo_prune_rel(RelOptInfo *rel, List *other_rels) } /* - * geqo-set-cheapest-- + * geqo_set_cheapest * For a relation 'rel' (which corresponds to a join * relation), set pointers to the cheapest path */ |
