PostGIS 3.6.2dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ geometry_estimated_extent()

Datum geometry_estimated_extent ( PG_FUNCTION_ARGS  )

Definition at line 2564 of file gserialized_estimate.c.

2565{
2566 if ( PG_NARGS() == 3 )
2567 {
2568 PG_RETURN_DATUM(
2569 DirectFunctionCall3(gserialized_estimated_extent,
2570 PG_GETARG_DATUM(0),
2571 PG_GETARG_DATUM(1),
2572 PG_GETARG_DATUM(2)));
2573 }
2574 else if ( PG_NARGS() == 2 )
2575 {
2576 PG_RETURN_DATUM(
2577 DirectFunctionCall2(gserialized_estimated_extent,
2578 PG_GETARG_DATUM(0),
2579 PG_GETARG_DATUM(1)));
2580 }
2581
2582 elog(ERROR, "geometry_estimated_extent() called with wrong number of arguments");
2583 PG_RETURN_NULL();
2584}
Datum gserialized_estimated_extent(PG_FUNCTION_ARGS)

References gserialized_estimated_extent().

Here is the call graph for this function: