Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 997a6a2

Browse files
committed
Remove superfluous curly brace, fixing compilation with OPTIMIZER_DEBUG.
Jan Urbanski
1 parent 1c49959 commit 997a6a2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/backend/optimizer/path/allpaths.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.189 2009/11/15 02:45:35 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.190 2009/11/22 14:54:31 heikki Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -1449,7 +1449,6 @@ print_path(PlannerInfo *root, Path *path, int indent)
14491449
((mp->outersortkeys) ? 1 : 0),
14501450
((mp->innersortkeys) ? 1 : 0),
14511451
((mp->materialize_inner) ? 1 : 0));
1452-
}
14531452
}
14541453

14551454
print_path(root, jp->outerjoinpath, indent + 1);

0 commit comments

Comments
 (0)