From: Bo Peng Date: Mon, 20 May 2024 05:11:36 +0000 (+0900) Subject: Delete unnecessary if branch. X-Git-Tag: V4_6_0_BETA1~92 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=d34d808bbebb132f1f9e7595c72ee253eef5462f;p=pgpool2.git Delete unnecessary if branch. https://github.com/pgpool/pgpool2/issues/52 --- diff --git a/src/parser/outfuncs.c b/src/parser/outfuncs.c index c150c0798..1a0efecd6 100644 --- a/src/parser/outfuncs.c +++ b/src/parser/outfuncs.c @@ -777,8 +777,6 @@ _outJoinExpr(StringInfo str, JoinExpr *node) else appendStringInfoString(str, " JOIN "); } - else if (node->jointype == JOIN_INNER) - appendStringInfoString(str, " JOIN "); else if (node->jointype == JOIN_LEFT) appendStringInfoString(str, " LEFT OUTER JOIN "); else if (node->jointype == JOIN_FULL)