pgsql: Remove wrongly backpatched piece of code in cube.c

From: Teodor Sigaev <teodor(at)sigaev(dot)ru>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove wrongly backpatched piece of code in cube.c
Date: 2018-04-10 11:59:09
Message-ID: E1f5rvZ-0005FL-0G@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove wrongly backpatched piece of code in cube.c

Due to sloppy division of changes between f50c80dbb (which was not
back-patched) and 563a053bd, this piece of code was wrongly backpatched to
REL_10_STABLE and REL9_6_STABLE. This code never causes real error because
its condition is never satisfied, but it's a dead code, which needs to be
removed.

Alexander Korotkov per gripe from Tom Lane

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/29ab1567e7ea4dccac75b60db3840db6f8859e40

Modified Files
--------------
contrib/cube/cube.c | 5 -----
1 file changed, 5 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Teodor Sigaev 2018-04-10 11:59:40 pgsql: Remove wrongly backpatched piece of code in cube.c
Previous Message Teodor Sigaev 2018-04-10 11:51:47 Re: pgsql: Fix behavior of ~> (cube, int) operator