PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ MVT_PARSE_INT_VALUE

#define MVT_PARSE_INT_VALUE (   value)
Value:
{ \
if (value >= 0) { \
uint64_t cvalue = value; \
MVT_PARSE_VALUE(cvalue, mvt_kv_uint_value, \
uint_values_hash, uint_value, \
sizeof(uint64_t)) \
} else { \
int64_t cvalue = value; \
MVT_PARSE_VALUE(cvalue, mvt_kv_sint_value, \
sint_values_hash, sint_value, \
sizeof(int64_t)) \
} \
}
int value
Definition: genraster.py:61

Definition at line 430 of file mvt.c.

Referenced by parse_jsonb().