From: Heikki Linnakangas Date: Sun, 22 Nov 2009 14:54:31 +0000 (+0000) Subject: Remove superfluous curly brace, fixing compilation with OPTIMIZER_DEBUG. X-Git-Tag: REL8_5_ALPHA3~109 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=997a6a278f6d2e0b64edae2b9a7313f2d6602cd7;p=postgresql Remove superfluous curly brace, fixing compilation with OPTIMIZER_DEBUG. Jan Urbanski --- diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index c225d7e288..bdc77662bf 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.189 2009/11/15 02:45:35 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.190 2009/11/22 14:54:31 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -1449,7 +1449,6 @@ print_path(PlannerInfo *root, Path *path, int indent) ((mp->outersortkeys) ? 1 : 0), ((mp->innersortkeys) ? 1 : 0), ((mp->materialize_inner) ? 1 : 0)); - } } print_path(root, jp->outerjoinpath, indent + 1);