PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ ST_CoverageClean()

Datum ST_CoverageClean ( PG_FUNCTION_ARGS  )

Definition at line 864 of file lwgeom_window.c.

865 {
866 #if POSTGIS_GEOS_VERSION < 31400
867 
868  lwpgerror("The GEOS version this PostGIS binary "
869  "was compiled against (%d) not include "
870  "'GEOSCoverageClean' function (3.14 or greater required)",
872  PG_RETURN_NULL();
873 
874 #else /* POSTGIS_GEOS_VERSION >= 31400 */
875 
876  return coverage_window_calculation(fcinfo, COVERAGE_CLEAN);
877 
878 #endif
879 }
static Datum coverage_window_calculation(PG_FUNCTION_ARGS, int mode)
#define POSTGIS_GEOS_VERSION
Definition: sqldefines.h:11

References coverage_window_calculation(), and POSTGIS_GEOS_VERSION.

Here is the call graph for this function: