]> granicus.if.org Git - postgresql/commit
Fix bogus return macros in range_overright_internal().
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 16 Aug 2014 17:48:43 +0000 (13:48 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 16 Aug 2014 17:48:43 +0000 (13:48 -0400)
commit364f7cd4b6d2bb89be55c8915fcd08b69b5eb84e
treec1e3f4584d0c290d9168df6f13550e0d57da4b33
parent30c05261ae842e2475fb06c7746de8623bcca731
Fix bogus return macros in range_overright_internal().

PG_RETURN_BOOL() should only be used in functions following the V1 SQL
function API.  This coding accidentally fails to fail since letting the
compiler coerce the Datum representation of bool back to plain bool
does give the right answer; but that doesn't make it a good idea.

Back-patch to older branches just to avoid unnecessary code divergence.
src/backend/utils/adt/rangetypes.c