Commit 52f63bd9 authored by Tom Lane's avatar Tom Lane

Fix compiler warning in rangetypes_spgist.c.

On gcc 7.2.0, comparing pointer to (Datum) 0 produces a warning.
Treat it as a simple pointer to avoid that; this is more consistent
with comparable code elsewhere, anyway.

Tomas Vondra

Discussion: https://postgr.es/m/99410021-61ef-9a9a-9bc8-f733ece637ee@2ndquadrant.com
parent 4797f9b5
...@@ -556,7 +556,7 @@ spg_range_quad_inner_consistent(PG_FUNCTION_ARGS) ...@@ -556,7 +556,7 @@ spg_range_quad_inner_consistent(PG_FUNCTION_ARGS)
* for lower or upper bounds to be adjacent. Deserialize * for lower or upper bounds to be adjacent. Deserialize
* previous centroid range if present for checking this. * previous centroid range if present for checking this.
*/ */
if (in->traversalValue != (Datum) 0) if (in->traversalValue)
{ {
prevCentroid = DatumGetRangeTypeP(in->traversalValue); prevCentroid = DatumGetRangeTypeP(in->traversalValue);
range_deserialize(typcache, prevCentroid, range_deserialize(typcache, prevCentroid,
......
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