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)