From: Paul Ramsey Date: Thu, 8 Oct 2009 17:04:56 +0000 (+0000) Subject: Reformat SQL lines with tabs X-Git-Tag: 1.5.0b1~390 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a407132d7f36a6df819420706c5a7e2a2b97bebc;p=postgis Reformat SQL lines with tabs git-svn-id: http://svn.osgeo.org/postgis/trunk@4625 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/geography.sql.in.c b/postgis/geography.sql.in.c index 697f3f9b2..f1e2bfb29 100644 --- a/postgis/geography.sql.in.c +++ b/postgis/geography.sql.in.c @@ -96,9 +96,9 @@ CREATE OR REPLACE FUNCTION ST_AsText(geography) -- Availability: 1.5.0 - this is just a hack to prevent unknown from causing ambiguous name because of geography CREATE OR REPLACE FUNCTION ST_AsText(text) - RETURNS text AS -$$ SELECT ST_AsText($1::geometry); $$ - LANGUAGE 'sql' IMMUTABLE STRICT; + RETURNS text AS + $$ SELECT ST_AsText($1::geometry); $$ + LANGUAGE 'sql' IMMUTABLE STRICT; -- Availability: 1.5.0 CREATE OR REPLACE FUNCTION ST_GeographyFromText(text) @@ -114,9 +114,9 @@ CREATE OR REPLACE FUNCTION ST_AsBinary(geography) -- Availability: 1.5.0 - this is just a hack to prevent unknown from causing ambiguous name because of geography CREATE OR REPLACE FUNCTION ST_AsBinary(text) - RETURNS bytea AS -$$ SELECT ST_AsBinary($1::geometry); $$ - LANGUAGE 'sql' IMMUTABLE STRICT; + RETURNS bytea AS + $$ SELECT ST_AsBinary($1::geometry); $$ + LANGUAGE 'sql' IMMUTABLE STRICT; -- Availability: 1.5.0 CREATE OR REPLACE FUNCTION ST_GeographyFromBinary(bytea)