From: Regina Obe Date: Tue, 24 Jun 2014 20:43:03 +0000 (+0000) Subject: #2753 Add ST_IsPlanar (hmm did I forget to put in this ST_MinkowskiSum) X-Git-Tag: 2.2.0rc1~1068 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98c107c46c5b07b83684fcee5c3df7c5fe0061e4;p=postgis #2753 Add ST_IsPlanar (hmm did I forget to put in this ST_MinkowskiSum) git-svn-id: http://svn.osgeo.org/postgis/trunk@12643 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/sfcgal.sql.in b/postgis/sfcgal.sql.in index 1ff6e0fc0..8011991b8 100644 --- a/postgis/sfcgal.sql.in +++ b/postgis/sfcgal.sql.in @@ -67,4 +67,10 @@ CREATE OR REPLACE FUNCTION ST_StraightSkeleton(geometry) LANGUAGE 'c' IMMUTABLE STRICT COST 100; +CREATE OR REPLACE FUNCTION ST_IsPlanar(geometry) + RETURNS boolean + AS 'MODULE_PATHNAME','sfcgal_is_planar' + LANGUAGE 'c' IMMUTABLE STRICT + COST 100; + COMMIT;