From a6567bbc690b7f20aef854c7057a80a75d4b79b0 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Wed, 19 Nov 2003 17:50:18 +0000 Subject: [PATCH] missing function definition added (I forgot - sorry) git-svn-id: http://svn.osgeo.org/postgis/trunk@371 b70326c6-7e19-0410-871a-916f4a2858ee --- Attic/postgis_sql_common.sql.in | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Attic/postgis_sql_common.sql.in b/Attic/postgis_sql_common.sql.in index bc2784d2b..3947a9a75 100644 --- a/Attic/postgis_sql_common.sql.in +++ b/Attic/postgis_sql_common.sql.in @@ -12,6 +12,9 @@ -- -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- $Log$ +-- Revision 1.23 2003/11/19 17:50:18 strk +-- missing function definition added (I forgot - sorry) +-- -- Revision 1.22 2003/11/19 15:23:27 strk -- Fixed wrong COMMUTATOR specifications in '<','>','~=','@' operators, -- added new '<=', '>=' operators @@ -1134,16 +1137,31 @@ CREATE FUNCTION geometry_lt(geometry, geometry) AS '@MODULE_FILENAME@' LANGUAGE 'C' WITH (isstrict); +CREATE FUNCTION geometry_le(geometry, geometry) + RETURNS bool + AS '@MODULE_FILENAME@' + LANGUAGE 'C' WITH (isstrict); + CREATE FUNCTION geometry_gt(geometry, geometry) RETURNS bool AS '@MODULE_FILENAME@' LANGUAGE 'C' WITH (isstrict); +CREATE FUNCTION geometry_ge(geometry, geometry) + RETURNS bool + AS '@MODULE_FILENAME@' + LANGUAGE 'C' WITH (isstrict); + CREATE FUNCTION geometry_eq(geometry, geometry) RETURNS bool AS '@MODULE_FILENAME@' LANGUAGE 'C' WITH (isstrict); +CREATE FUNCTION geometry_cmp(geometry, geometry) + RETURNS integer + AS '@MODULE_FILENAME@' + LANGUAGE 'C' WITH (isstrict); + -- -- Two dimensional to three dimensional forces -- -- 2.40.0