PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ geometry_estimated_extent()

Datum geometry_estimated_extent ( PG_FUNCTION_ARGS  )

Definition at line 2342 of file gserialized_estimate.c.

References gserialized_estimated_extent().

Referenced by gserialized_estimated_extent().

2343 {
2344  if ( PG_NARGS() == 3 )
2345  {
2346  PG_RETURN_DATUM(
2347  DirectFunctionCall3(gserialized_estimated_extent,
2348  PG_GETARG_DATUM(0),
2349  PG_GETARG_DATUM(1),
2350  PG_GETARG_DATUM(2)));
2351  }
2352  else if ( PG_NARGS() == 2 )
2353  {
2354  PG_RETURN_DATUM(
2355  DirectFunctionCall2(gserialized_estimated_extent,
2356  PG_GETARG_DATUM(0),
2357  PG_GETARG_DATUM(1)));
2358  }
2359 
2360  elog(ERROR, "geometry_estimated_extent() called with wrong number of arguments");
2361  PG_RETURN_NULL();
2362 }
Datum gserialized_estimated_extent(PG_FUNCTION_ARGS)
Here is the call graph for this function:
Here is the caller graph for this function: