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

◆ postgis_typmod_srid()

Datum postgis_typmod_srid ( PG_FUNCTION_ARGS  )

Definition at line 407 of file gserialized_typmod.c.

408{
409 int32 typmod = PG_GETARG_INT32(0);
410 if ( typmod < 0 )
411 PG_RETURN_INT32(0);
412 PG_RETURN_INT32(TYPMOD_GET_SRID(typmod));
413}
#define TYPMOD_GET_SRID(typmod)
Macros for manipulating the 'typemod' int.
Definition liblwgeom.h:206
unsigned int int32
Definition shpopen.c:273

References TYPMOD_GET_SRID.