From: Peter Eisentraut Date: Sun, 17 Jul 2016 13:37:33 +0000 (-0400) Subject: Use correct symbol for minimum int64 value X-Git-Tag: REL9_1_23~33 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=84d67920450717d458cfaad7876fa8279fd7ced0;p=postgresql.git Use correct symbol for minimum int64 value The old code used SEQ_MINVALUE to get the smallest int64 value. This was done as a convenience to avoid having to deal with INT64_IS_BUSTED, but that is obsolete now. Also, it is incorrect because the smallest int64 value is actually SEQ_MINVALUE-1. Fix by writing out the constant the long way, as it is done elsewhere in the code. --- diff --git a/contrib/btree_gin/btree_gin.c b/contrib/btree_gin/btree_gin.c index 5c4f58b8b1f..56ee26519f6 100644 --- a/contrib/btree_gin/btree_gin.c +++ b/contrib/btree_gin/btree_gin.c @@ -214,10 +214,7 @@ GIN_SUPPORT(int4) static Datum leftmostvalue_int8(void) { - /* - * Use sequence's definition to keep compatibility. - */ - return Int64GetDatum(SEQ_MINVALUE); + return Int64GetDatum(-INT64CONST(0x7FFFFFFFFFFFFFFF) - 1); } static TypeInfo TypeInfo_int8 = {false, leftmostvalue_int8, btint8cmp}; @@ -244,10 +241,7 @@ GIN_SUPPORT(float8) static Datum leftmostvalue_money(void) { - /* - * Use sequence's definition to keep compatibility. - */ - return Int64GetDatum(SEQ_MINVALUE); + return Int64GetDatum(-INT64CONST(0x7FFFFFFFFFFFFFFF) - 1); } static TypeInfo TypeInfo_money = {false, leftmostvalue_money, cash_cmp};