We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f0ee40 commit 9603608Copy full SHA for 9603608
pl_funcs.c
@@ -352,9 +352,9 @@ check_overlap(PG_FUNCTION_ARGS)
352
ranges = (RangeEntry *) dsm_array_get_pointer(&rangerel->ranges);
353
for (i=0; i<rangerel->ranges.length; i++)
354
{
355
- bool c1 = FunctionCall2(&cmp_func_1, p1,
+ int c1 = FunctionCall2(&cmp_func_1, p1,
356
PATHMAN_GET_DATUM(ranges[i].max, byVal));
357
- bool c2 = FunctionCall2(&cmp_func_2, p2,
+ int c2 = FunctionCall2(&cmp_func_2, p2,
358
PATHMAN_GET_DATUM(ranges[i].min, byVal));
359
360
if (c1 < 0 && c2 > 0)
0 commit comments