diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-08 04:29:25 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-08 04:29:25 +0000 |
commit | 54e5d256664ece2cb180f4d5a278397906fe5988 (patch) | |
tree | fda8b8114eb76c34c2d5080ac4363cbaad9ac86e /src/backend/optimizer/path/orindxpath.c | |
parent | 07c33ba79e9daf5dfbfc3773b2dbf2a7f270d727 (diff) |
Optimizer cleanup.
Diffstat (limited to 'src/backend/optimizer/path/orindxpath.c')
-rw-r--r-- | src/backend/optimizer/path/orindxpath.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/orindxpath.c b/src/backend/optimizer/path/orindxpath.c index 9ae341d5427..5cfb5e00dd7 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.14 1999/02/03 21:16:28 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/optimizer/path/orindxpath.c,v 1.15 1999/02/08 04:29:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -104,13 +104,13 @@ create_or_index_paths(Query *root, pathnode->path.pathtype = T_IndexScan; pathnode->path.parent = rel; - pathnode->path.p_ordering.ordtype = SORTOP_ORDER; + pathnode->path.path_order.ordtype = SORTOP_ORDER; /* * This is an IndexScan, but it does index lookups based * on the order of the fields specified in the WHERE clause, * not in any order, so the sortop is NULL. */ - pathnode->path.p_ordering.ord.sortop = NULL; + pathnode->path.path_order.ord.sortop = NULL; pathnode->path.keys = NIL; /* not sure about this, bjm 1998/09/21 */ pathnode->indexqual = lcons(clausenode, NIL); |