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/nodes/readfuncs.c | |
parent | 07c33ba79e9daf5dfbfc3773b2dbf2a7f270d727 (diff) |
Optimizer cleanup.
Diffstat (limited to 'src/backend/nodes/readfuncs.c')
-rw-r--r-- | src/backend/nodes/readfuncs.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c index 43c71c6a81d..bfbd9436d3a 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.49 1999/02/05 19:59:25 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.50 1999/02/08 04:29:04 momjian Exp $ * * NOTES * Most of the read functions for plan nodes are tested. (In fact, they @@ -1474,8 +1474,8 @@ _readPath() local_node->path_cost = (Cost) atof(token); #if 0 - token = lsptok(NULL, &length); /* get :p_ordering */ - local_node->p_ordering = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :path_order */ + local_node->path_order = nodeRead(true); /* now read it */ #endif token = lsptok(NULL, &length); /* get :keys */ @@ -1508,8 +1508,8 @@ _readIndexPath() local_node->path.path_cost = (Cost) atof(token); #if 0 - token = lsptok(NULL, &length); /* get :p_ordering */ - local_node->path.p_ordering = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :path_order */ + local_node->path.path_order = nodeRead(true); /* now read it */ #endif token = lsptok(NULL, &length); /* get :keys */ @@ -1549,8 +1549,8 @@ _readJoinPath() local_node->path.path_cost = (Cost) atof(token); #if 0 - token = lsptok(NULL, &length); /* get :p_ordering */ - local_node->path.p_ordering = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :path_order */ + local_node->path.path_order = nodeRead(true); /* now read it */ #endif token = lsptok(NULL, &length); /* get :keys */ @@ -1616,8 +1616,8 @@ _readMergePath() local_node->jpath.path.path_cost = (Cost) atof(token); #if 0 - token = lsptok(NULL, &length); /* get :p_ordering */ - local_node->jpath.path.p_ordering = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :path_order */ + local_node->jpath.path.path_order = nodeRead(true); /* now read it */ #endif token = lsptok(NULL, &length); /* get :keys */ @@ -1692,8 +1692,8 @@ _readHashPath() local_node->jpath.path.path_cost = (Cost) atof(token); #if 0 - token = lsptok(NULL, &length); /* get :p_ordering */ - local_node->jpath.path.p_ordering = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :path_order */ + local_node->jpath.path.path_order = nodeRead(true); /* now read it */ #endif token = lsptok(NULL, &length); /* get :keys */ |