diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-15 05:21:12 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-15 05:21:12 +0000 |
commit | c5449d53549282f1317d6780f1f22c9f93848624 (patch) | |
tree | 37a7255ccce44c2366871a239dd25c424c84649d /src/backend/nodes/outfuncs.c | |
parent | 82682ff31f5618911ea708646fc48015244ec7bb (diff) |
otherrels is now unjoined_rels
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r-- | src/backend/nodes/outfuncs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index c39d4c6672c..8d168e88915 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.73 1999/02/15 03:21:59 momjian Exp $ + * $Id: outfuncs.c,v 1.74 1999/02/15 05:21:02 momjian Exp $ * * NOTES * Every (plan) node in POSTGRES has an associated "out" routine which @@ -1198,8 +1198,8 @@ _outHashInfo(StringInfo str, HashInfo *node) static void _outJoinInfo(StringInfo str, JoinInfo *node) { - appendStringInfo(str, " JINFO :otherrels "); - _outIntList(str, node->otherrels); + appendStringInfo(str, " JINFO :unjoined_rels "); + _outIntList(str, node->unjoined_rels); appendStringInfo(str, " :jinfo_restrictinfo "); _outNode(str, node->jinfo_restrictinfo); |