mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Consistently use PG_INT(16|32|64)_(MIN|MAX).
Per buildfarm animal woodlouse.
This commit is contained in:
@ -6226,7 +6226,7 @@ numericvar_to_int64(const NumericVar *var, int64 *result)
|
||||
|
||||
if (!neg)
|
||||
{
|
||||
if (unlikely(val == INT64_MIN))
|
||||
if (unlikely(val == PG_INT64_MIN))
|
||||
return false;
|
||||
val = -val;
|
||||
}
|
||||
|
Reference in New Issue
Block a user