diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-02-15 03:22:37 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-02-15 03:22:37 +0000 |
commit | ba2883b264d7bc392604bc9f76abfc30de89f5f8 (patch) | |
tree | 67aaa53cf2b12967f12b8fabaad7088ffcddb550 /src/backend/nodes/outfuncs.c | |
parent | 944d3c395e292c213c1a2be617af1b8473299b1b (diff) | |
download | postgresql-ba2883b264d7bc392604bc9f76abfc30de89f5f8.tar.gz postgresql-ba2883b264d7bc392604bc9f76abfc30de89f5f8.zip |
Remove duplicate geqo functions, and more optimizer cleanup
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r-- | src/backend/nodes/outfuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index dda46b1f054..c39d4c6672c 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.72 1999/02/13 23:15:59 momjian Exp $ + * $Id: outfuncs.c,v 1.73 1999/02/15 03:21:59 momjian Exp $ * * NOTES * Every (plan) node in POSTGRES has an associated "out" routine which @@ -1196,7 +1196,7 @@ _outHashInfo(StringInfo str, HashInfo *node) * JoinInfo is a subclass of Node. */ static void -_outJoinInfo(StringInfo str, JoinInfo * node) +_outJoinInfo(StringInfo str, JoinInfo *node) { appendStringInfo(str, " JINFO :otherrels "); _outIntList(str, node->otherrels); |