diff options
Diffstat (limited to 'src/backend/optimizer/path/orindxpath.c')
-rw-r--r-- | src/backend/optimizer/path/orindxpath.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/optimizer/path/orindxpath.c b/src/backend/optimizer/path/orindxpath.c index af5ca4407b4..b53fcaf2fa9 100644 --- a/src/backend/optimizer/path/orindxpath.c +++ b/src/backend/optimizer/path/orindxpath.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/orindxpath.c,v 1.17 1999/02/10 03:52:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/orindxpath.c,v 1.18 1999/02/10 21:02:39 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -32,10 +32,10 @@ static void -best_or_subclause_indices(Query *root, RelOptInfo * rel, List *subclauses, +best_or_subclause_indices(Query *root, RelOptInfo *rel, List *subclauses, List *indices, List *examined_indexids, Cost subcost, List *selectivities, List **indexids, Cost *cost, List **selecs); -static void best_or_subclause_index(Query *root, RelOptInfo * rel, Expr *subclause, +static void best_or_subclause_index(Query *root, RelOptInfo *rel, Expr *subclause, List *indices, int *indexid, Cost *cost, Cost *selec); @@ -51,7 +51,7 @@ static void best_or_subclause_index(Query *root, RelOptInfo * rel, Expr *subclau */ List * create_or_index_paths(Query *root, - RelOptInfo * rel, List *clauses) + RelOptInfo *rel, List *clauses) { List *t_list = NIL; List *clist; @@ -163,7 +163,7 @@ create_or_index_paths(Query *root, */ static void best_or_subclause_indices(Query *root, - RelOptInfo * rel, + RelOptInfo *rel, List *subclauses, List *indices, List *examined_indexids, @@ -214,7 +214,7 @@ best_or_subclause_indices(Query *root, */ static void best_or_subclause_index(Query *root, - RelOptInfo * rel, + RelOptInfo *rel, Expr *subclause, List *indices, int *retIndexid, /* return value */ |