diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-10 03:52:54 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-10 03:52:54 +0000 |
commit | f859c81c18669d05ac53f2c1e0163c6b804fddd5 (patch) | |
tree | 0999719e856f47a5c8d84c7a29be3a488a5b3d8a /src/backend/optimizer/path/indxpath.c | |
parent | 318e593f03c4e8b8b52bc6792403c0a4909f3213 (diff) |
Rename Path.keys to Path.pathkeys. Too many 'keys' used for other things.
Diffstat (limited to 'src/backend/optimizer/path/indxpath.c')
-rw-r--r-- | src/backend/optimizer/path/indxpath.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/indxpath.c b/src/backend/optimizer/path/indxpath.c index 770614eec04..f8590f9473b 100644 --- a/src/backend/optimizer/path/indxpath.c +++ b/src/backend/optimizer/path/indxpath.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.40 1999/02/09 03:51:17 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.41 1999/02/10 03:52:39 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -144,7 +144,7 @@ find_index_paths(Query *root, * restriction clauses, then create pathnodes corresponding to * each group of usable clauses. */ - scanclausegroups = group_clauses_by_indexkey(rel, + scanclausegroups = group_clauses_by_indexkey(rel, index, index->indexkeys, index->classlist, @@ -1293,7 +1293,7 @@ index_innerjoin(Query *root, RelOptInfo * rel, List *clausegroup_list, pathnode->path.path_order = makeNode(PathOrder); pathnode->path.path_order->ordtype = SORTOP_ORDER; pathnode->path.path_order->ord.sortop = index->ordering; - pathnode->path.keys = NIL; /* not sure about this, bjm 1998/09/21 */ + pathnode->path.pathkeys = NIL; pathnode->indexid = index->relids; pathnode->indexkeys = index->indexkeys; |