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/outfuncs.c | |
parent | 318e593f03c4e8b8b52bc6792403c0a4909f3213 (diff) |
Rename Path.keys to Path.pathkeys. Too many 'keys' used for other things.
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r-- | src/backend/nodes/outfuncs.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index 854a2011cb3..28b13a75b1c 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -5,7 +5,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: outfuncs.c,v 1.67 1999/02/09 17:02:49 momjian Exp $ + * $Id: outfuncs.c,v 1.68 1999/02/10 03:52:35 momjian Exp $ * * NOTES * Every (plan) node in POSTGRES has an associated "out" routine which @@ -959,10 +959,10 @@ _outPathOrder(StringInfo str, PathOrder *node) static void _outPath(StringInfo str, Path *node) { - appendStringInfo(str, " PATH :pathtype %d :cost %f :keys ", + appendStringInfo(str, " PATH :pathtype %d :cost %f :pathkeys ", node->pathtype, node->path_cost); - _outNode(str, node->keys); + _outNode(str, node->pathkeys); appendStringInfo(str, " :path_order "); _outNode(str, node->path_order); @@ -975,10 +975,10 @@ static void _outIndexPath(StringInfo str, IndexPath *node) { appendStringInfo(str, - " INDEXPATH :pathtype %d :cost %f :keys ", + " INDEXPATH :pathtype %d :cost %f :pathkeys ", node->path.pathtype, node->path.path_cost); - _outNode(str, node->path.keys); + _outNode(str, node->path.pathkeys); appendStringInfo(str, " :path_order "); _outNode(str, node->path.path_order); @@ -997,10 +997,10 @@ static void _outJoinPath(StringInfo str, JoinPath *node) { appendStringInfo(str, - " JOINPATH :pathtype %d :cost %f :keys ", + " JOINPATH :pathtype %d :cost %f :pathkeys ", node->path.pathtype, node->path.path_cost); - _outNode(str, node->path.keys); + _outNode(str, node->path.pathkeys); appendStringInfo(str, " :path_order "); _outNode(str, node->path.path_order); @@ -1028,10 +1028,10 @@ static void _outMergePath(StringInfo str, MergePath *node) { appendStringInfo(str, - " MERGEPATH :pathtype %d :cost %f :keys ", + " MERGEPATH :pathtype %d :cost %f :pathkeys ", node->jpath.path.pathtype, node->jpath.path.path_cost); - _outNode(str, node->jpath.path.keys); + _outNode(str, node->jpath.path.pathkeys); appendStringInfo(str, " :path_order "); _outNode(str, node->jpath.path.path_order); @@ -1068,10 +1068,10 @@ static void _outHashPath(StringInfo str, HashPath *node) { appendStringInfo(str, - " HASHPATH :pathtype %d :cost %f :keys ", + " HASHPATH :pathtype %d :cost %f :pathkeys ", node->jpath.path.pathtype, node->jpath.path.path_cost); - _outNode(str, node->jpath.path.keys); + _outNode(str, node->jpath.path.pathkeys); appendStringInfo(str, " :path_order "); _outNode(str, node->jpath.path.path_order); |