PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ geography_typmod_in()

Datum geography_typmod_in ( PG_FUNCTION_ARGS  )

Definition at line 299 of file gserialized_typmod.c.

References geometry_typmod_in(), gserialized_typmod_in(), LW_TRUE, PG_FUNCTION_INFO_V1(), and TYPMOD_GET_SRID.

Referenced by gserialized_typmod_in().

300 {
301  ArrayType *arr = (ArrayType *) DatumGetPointer(PG_GETARG_DATUM(0));
302  uint32 typmod = gserialized_typmod_in(arr, LW_TRUE);
303  int srid = TYPMOD_GET_SRID(typmod);
304  /* Check the SRID is legal (geographic coordinates) */
305  srid_is_latlong(fcinfo, srid);
306 
307  PG_RETURN_INT32(typmod);
308 }
static uint32 gserialized_typmod_in(ArrayType *arr, int is_geography)
#define TYPMOD_GET_SRID(typmod)
Macros for manipulating the 'typemod' int.
Definition: liblwgeom.h:165
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
Here is the call graph for this function:
Here is the caller graph for this function: