From: Sandro Santilli Date: Tue, 14 Sep 2004 08:39:24 +0000 (+0000) Subject: fixed a typo in the geometry_send function definition X-Git-Tag: pgis_1_0_0RC1~451 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=645d76c39f590e83a4270d2db2254d0a06cfa83b;p=postgis fixed a typo in the geometry_send function definition git-svn-id: http://svn.osgeo.org/postgis/trunk@818 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwpostgis.sql.in b/lwgeom/lwpostgis.sql.in index 6efe2b4a3..06ab72bf0 100644 --- a/lwgeom/lwpostgis.sql.in +++ b/lwgeom/lwpostgis.sql.in @@ -105,8 +105,8 @@ CREATEFUNCTION geometry_recv(internal) AS '@MODULE_FILENAME@','LWGEOM_recv' LANGUAGE 'C' WITH (isstrict); -CREATEFUNCTION geometry_send(internal) - RETURNS geometry +CREATEFUNCTION geometry_send(geometry) + RETURNS bytea AS '@MODULE_FILENAME@','WKBFromLWGEOM' LANGUAGE 'C' WITH (isstrict); #endif