PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ LWGEOM_mem_size()

Datum LWGEOM_mem_size ( PG_FUNCTION_ARGS  )

Definition at line 133 of file lwgeom_functions_basic.c.

134{
135 GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
136 size_t size = VARSIZE(geom);
137 PG_FREE_IF_COPY(geom, 0);
138 PG_RETURN_INT32(size);
139}