Commit 56ba337e authored by Tom Lane's avatar Tom Lane

Suppress possibly-uninitialized-variable warning.

parent c04b9c1f
...@@ -426,8 +426,7 @@ spg_range_quad_inner_consistent(PG_FUNCTION_ARGS) ...@@ -426,8 +426,7 @@ spg_range_quad_inner_consistent(PG_FUNCTION_ARGS)
RangeBound lower, RangeBound lower,
upper; upper;
bool empty; bool empty;
RangeType *range; RangeType *range = NULL;
/* Restrictions on range bounds according to scan strategy */ /* Restrictions on range bounds according to scan strategy */
RangeBound *minLower = NULL, RangeBound *minLower = NULL,
*maxLower = NULL, *maxLower = NULL,
......
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