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/nodes/readfuncs.c | |
parent | 318e593f03c4e8b8b52bc6792403c0a4909f3213 (diff) | |
download | postgresql-f859c81c18669d05ac53f2c1e0163c6b804fddd5.tar.gz postgresql-f859c81c18669d05ac53f2c1e0163c6b804fddd5.zip |
Rename Path.keys to Path.pathkeys. Too many 'keys' used for other things.
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 02e7547ab1d..1a220c05d65 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.52 1999/02/09 17:02:50 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.53 1999/02/10 03:52:36 momjian Exp $ * * NOTES * Most of the read functions for plan nodes are tested. (In fact, they @@ -1525,8 +1525,8 @@ _readPath() token = lsptok(NULL, &length); /* get :path_order */ local_node->path_order = nodeRead(true); /* now read it */ - token = lsptok(NULL, &length); /* get :keys */ - local_node->keys = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :pathkeys */ + local_node->pathkeys = nodeRead(true); /* now read it */ return local_node; } @@ -1557,8 +1557,8 @@ _readIndexPath() token = lsptok(NULL, &length); /* get :path_order */ local_node->path.path_order = nodeRead(true); /* now read it */ - token = lsptok(NULL, &length); /* get :keys */ - local_node->path.keys = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :pathkeys */ + local_node->path.pathkeys = nodeRead(true); /* now read it */ token = lsptok(NULL, &length); /* get :indexid */ local_node->indexid = toIntList(nodeRead(true)); @@ -1596,8 +1596,8 @@ _readJoinPath() token = lsptok(NULL, &length); /* get :path_order */ local_node->path.path_order = nodeRead(true); /* now read it */ - token = lsptok(NULL, &length); /* get :keys */ - local_node->path.keys = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :pathkeys */ + local_node->path.pathkeys = nodeRead(true); /* now read it */ token = lsptok(NULL, &length); /* get :pathinfo */ local_node->pathinfo = nodeRead(true); /* now read it */ @@ -1661,8 +1661,8 @@ _readMergePath() token = lsptok(NULL, &length); /* get :path_order */ local_node->jpath.path.path_order = nodeRead(true); /* now read it */ - token = lsptok(NULL, &length); /* get :keys */ - local_node->jpath.path.keys = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :pathkeys */ + local_node->jpath.path.pathkeys = nodeRead(true); /* now read it */ token = lsptok(NULL, &length); /* get :pathinfo */ local_node->jpath.pathinfo = nodeRead(true); /* now read it */ @@ -1735,8 +1735,8 @@ _readHashPath() token = lsptok(NULL, &length); /* get :path_order */ local_node->jpath.path.path_order = nodeRead(true); /* now read it */ - token = lsptok(NULL, &length); /* get :keys */ - local_node->jpath.path.keys = nodeRead(true); /* now read it */ + token = lsptok(NULL, &length); /* get :pathkeys */ + local_node->jpath.path.pathkeys = nodeRead(true); /* now read it */ token = lsptok(NULL, &length); /* get :pathinfo */ local_node->jpath.pathinfo = nodeRead(true); /* now read it */ |