Commit ab4575dc authored by Robert Haas's avatar Robert Haas

Silence compiler warning.

Per report from Stephen Frost.
parent fa0f466d
...@@ -1744,7 +1744,7 @@ partition_rbound_cmp(PartitionKey key, ...@@ -1744,7 +1744,7 @@ partition_rbound_cmp(PartitionKey key,
Datum *datums1, RangeDatumContent *content1, bool lower1, Datum *datums1, RangeDatumContent *content1, bool lower1,
PartitionRangeBound *b2) PartitionRangeBound *b2)
{ {
int32 cmpval; int32 cmpval = 0; /* placate compiler */
int i; int i;
Datum *datums2 = b2->datums; Datum *datums2 = b2->datums;
RangeDatumContent *content2 = b2->content; RangeDatumContent *content2 = b2->content;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment