PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ LWGEOM_from_bytea()

Datum LWGEOM_from_bytea ( PG_FUNCTION_ARGS  )

Definition at line 828 of file lwgeom_inout.c.

829 {
830  GSERIALIZED *result;
831 
832  POSTGIS_DEBUG(2, "LWGEOM_from_bytea start");
833 
834  result = (GSERIALIZED *)DatumGetPointer(DirectFunctionCall1(
835  LWGEOMFromEWKB, PG_GETARG_DATUM(0)));
836 
837  PG_RETURN_POINTER(result);
838 }
Datum LWGEOMFromEWKB(PG_FUNCTION_ARGS)
Definition: lwgeom_inout.c:376

References LWGEOMFromEWKB().

Here is the call graph for this function: