Changeset: 6bba03960bba for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/6bba03960bba Modified Files: geom/sql/40_geom.sql Branch: geo-update-dev Log Message:
Removed return type from filter function declaration. diffs (12 lines): diff --git a/geom/sql/40_geom.sql b/geom/sql/40_geom.sql --- a/geom/sql/40_geom.sql +++ b/geom/sql/40_geom.sql @@ -22,7 +22,7 @@ CREATE FILTER FUNCTION ST_Intersects(geo CREATE FILTER FUNCTION ST_Intersects_NoIndex(geom1 Geometry, geom2 Geometry) EXTERNAL NAME geom."Intersects_noindex"; CREATE FILTER FUNCTION ST_DWithin(geom1 Geometry, geom2 Geometry, distance double) EXTERNAL NAME rtree."DWithin"; -CREATE FILTER FUNCTION ST_DWithin_NoIndex(geom1 Geometry, geom2 Geometry, distance double) RETURNS boolean EXTERNAL NAME geom."DWithin_noindex"; +CREATE FILTER FUNCTION ST_DWithin_NoIndex(geom1 Geometry, geom2 Geometry, distance double) EXTERNAL NAME geom."DWithin_noindex"; ------------------------------------------------------------------------- ------------------------- Old Geom functions ---------------------------- _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
