Silence compiler warning.

Per report from Stephen Frost.
This commit is contained in:
Robert Haas 2016-12-08 14:55:47 -05:00
parent fa0f466d53
commit ab4575dcf1
1 changed files with 1 additions and 1 deletions

View File

@ -1744,7 +1744,7 @@ partition_rbound_cmp(PartitionKey key,
Datum *datums1, RangeDatumContent *content1, bool lower1,
PartitionRangeBound *b2)
{
int32 cmpval;
int32 cmpval = 0; /* placate compiler */
int i;
Datum *datums2 = b2->datums;
RangeDatumContent *content2 = b2->content;