PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_from_bytea()

Datum LWGEOM_from_bytea ( PG_FUNCTION_ARGS  )

Definition at line 821 of file lwgeom_inout.c.

822 {
823  GSERIALIZED *result;
824 
825  POSTGIS_DEBUG(2, "LWGEOM_from_bytea start");
826 
827  result = (GSERIALIZED *)DatumGetPointer(DirectFunctionCall1(
828  LWGEOMFromEWKB, PG_GETARG_DATUM(0)));
829 
830  PG_RETURN_POINTER(result);
831 }
Datum LWGEOMFromEWKB(PG_FUNCTION_ARGS)
Definition: lwgeom_inout.c:370

References LWGEOMFromEWKB().

Here is the call graph for this function: