]> granicus.if.org Git - postgis/commitdiff
Reformat SQL lines with tabs
authorPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 8 Oct 2009 17:04:56 +0000 (17:04 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 8 Oct 2009 17:04:56 +0000 (17:04 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@4625 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/geography.sql.in.c

index 697f3f9b251506f8d09c6c1713ce7a2014ec7036..f1e2bfb29d0dbd4e8189d53faa003cb5c102818f 100644 (file)
@@ -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)