PostGIS  3.1.6dev-r@@SVN_REVISION@@

◆ postgis_typmod_srid()

Datum postgis_typmod_srid ( PG_FUNCTION_ARGS  )

Definition at line 439 of file gserialized_typmod.c.

440 {
441  int32 typmod = PG_GETARG_INT32(0);
442  if ( typmod < 0 )
443  PG_RETURN_INT32(0);
444  PG_RETURN_INT32(TYPMOD_GET_SRID(typmod));
445 }
#define TYPMOD_GET_SRID(typmod)
Macros for manipulating the 'typemod' int.
Definition: liblwgeom.h:206
unsigned int int32
Definition: shpopen.c:54

References TYPMOD_GET_SRID.