summaryrefslogtreecommitdiff
path: root/src/backend/optimizer/path/orindxpath.c
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/backend/optimizer/path/orindxpath.c
parent8c3fff7337b6389b00e8dda03a079605ee102f1b (diff)
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/backend/optimizer/path/orindxpath.c')
-rw-r--r--src/backend/optimizer/path/orindxpath.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/backend/optimizer/path/orindxpath.c b/src/backend/optimizer/path/orindxpath.c
index 70dc789111c..cc14716dc98 100644
--- a/src/backend/optimizer/path/orindxpath.c
+++ b/src/backend/optimizer/path/orindxpath.c
@@ -1,13 +1,13 @@
/*-------------------------------------------------------------------------
*
- * orindxpath.c--
+ * orindxpath.c
* Routines to find index paths that match a set of 'or' clauses
*
* Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/path/orindxpath.c,v 1.19 1999/02/11 14:58:53 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/path/orindxpath.c,v 1.20 1999/02/13 23:16:21 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -40,7 +40,7 @@ static void best_or_subclause_index(Query *root, RelOptInfo *rel, Expr *subclaus
/*
- * create-or-index-paths--
+ * create_or_index_paths
* Creates index paths for indices that match 'or' clauses.
*
* 'rel' is the relation entry for which the paths are to be defined on
@@ -142,7 +142,7 @@ create_or_index_paths(Query *root,
}
/*
- * best-or-subclause-indices--
+ * best_or_subclause_indices
* Determines the best index to be used in conjunction with each subclause
* of an 'or' clause and the cost of scanning a relation using these
* indices. The cost is the sum of the individual index costs.
@@ -151,9 +151,9 @@ create_or_index_paths(Query *root,
* 'subclauses' are the subclauses of the 'or' clause
* 'indices' are those index nodes that matched subclauses of the 'or'
* clause
- * 'examined-indexids' is a list of those index ids to be used with
+ * 'examined_indexids' is a list of those index ids to be used with
* subclauses that have already been examined
- * 'subcost' is the cost of using the indices in 'examined-indexids'
+ * 'subcost' is the cost of using the indices in 'examined_indexids'
* 'selectivities' is a list of the selectivities of subclauses that
* have already been examined
*
@@ -199,7 +199,7 @@ best_or_subclause_indices(Query *root,
}
/*
- * best-or-subclause-index--
+ * best_or_subclause_index
* Determines which is the best index to be used with a subclause of
* an 'or' clause by estimating the cost of using each index and selecting
* the least expensive.
@@ -208,7 +208,7 @@ best_or_subclause_indices(Query *root,
* 'subclause' is the subclause
* 'indices' is a list of index nodes that match the subclause
*
- * Returns a list (index-id index-subcost index-selectivity)
+ * Returns a list (index_id index_subcost index_selectivity)
* (a fixnum, a fixnum, and a flonum respectively).
*
*/