Skip to content

Commit

Permalink
ST_ApproximateMedialAxis: cast WKT to geometry on plpgqsl empty
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/postgis/trunk@13681 b70326c6-7e19-0410-871a-916f4a2858ee
  • Loading branch information
Sandro Santilli committed Jun 18, 2015
1 parent c0cb56e commit c530ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgis/sfcgal.sql.in
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ CREATE OR REPLACE FUNCTION ST_ApproximateMedialAxis(geometry)
WHERE NOT ST_Touches(geom, ST_Boundary(poly))
)
SELECT
COALESCE(g, ST_SetSRID('MULTILINESTRING EMPTY', ST_Srid(poly)))
COALESCE(g, ST_SetSRID('MULTILINESTRING EMPTY'::geometry, ST_Srid(poly)))
INTO ret
FROM filtered;
RETURN ret;
Expand Down

0 comments on commit c530ee4

Please sign in to comment.