diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-12 05:57:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-12 05:57:08 +0000 |
commit | 3fdb9bb9c74afa79f574438cbbf5178d30463bb6 (patch) | |
tree | 1cdf6169a3d610b3f1addab3d1e0bf2355b63c53 /src/backend/nodes/outfuncs.c | |
parent | 55d0465009b99d340c643dafae8a6a0846e45de1 (diff) | |
download | postgresql-3fdb9bb9c74afa79f574438cbbf5178d30463bb6.tar.gz postgresql-3fdb9bb9c74afa79f574438cbbf5178d30463bb6.zip |
Fix optimizer and make faster.
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r-- | src/backend/nodes/outfuncs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index eb15c4e66b9..15b39c7faf9 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.69 1999/02/11 14:58:49 momjian Exp $ + * $Id: outfuncs.c,v 1.70 1999/02/12 05:56:46 momjian Exp $ * * NOTES * Every (plan) node in POSTGRES has an associated "out" routine which @@ -879,8 +879,7 @@ _outRelOptInfo(StringInfo str, RelOptInfo *node) */ appendStringInfo(str, - " :unorderedpath @ 0x%x :cheapestpath @ 0x%x :pruneable %s :restrictinfo ", - (int) node->unorderedpath, + " :cheapestpath @ 0x%x :pruneable %s :restrictinfo ", (int) node->cheapestpath, node->pruneable ? "true" : "false"); _outNode(str, node->restrictinfo); |