]> granicus.if.org Git - postgis/commitdiff
move args to same line as func so extensions unpackaged adds them correctly will...
authorRegina Obe <lr@pcorp.us>
Wed, 21 Sep 2011 03:29:39 +0000 (03:29 +0000)
committerRegina Obe <lr@pcorp.us>
Wed, 21 Sep 2011 03:29:39 +0000 (03:29 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@7877 b70326c6-7e19-0410-871a-916f4a2858ee

topology/sql/gml.sql
topology/sql/manage/CopyTopology.sql

index 032cdcbddf7d3d3680f33c48b300c402077aacc9..153a5ccad04019287fa88589627beb205c58980d 100644 (file)
@@ -269,9 +269,7 @@ LANGUAGE 'plpgsql' VOLATILE; -- writes into visited table
 -- text AsGML(TopoGeometry, nsprefix, precision, options, visitedTable, idprefix, gmlver)
 --
 -- }{
-CREATE OR REPLACE FUNCTION topology.AsGML(tg topology.TopoGeometry,
-    nsprefix_in text, precision_in int, options_in int, visitedTable regclass,
-    idprefix text, gmlver int)
+CREATE OR REPLACE FUNCTION topology.AsGML(tg topology.TopoGeometry, nsprefix_in text, precision_in int, options_in int, visitedTable regclass, idprefix text, gmlver int)
   RETURNS text
 AS
 $$
@@ -485,8 +483,7 @@ LANGUAGE 'sql' VOLATILE; -- writes into visited table
 -- text AsGML(TopoGeometry, nsprefix, precision, options, visitedTable)
 --
 -- }{
-CREATE OR REPLACE FUNCTION topology.AsGML(tg topology.TopoGeometry,
-    nsprefix text, prec int, options int, vis regclass)
+CREATE OR REPLACE FUNCTION topology.AsGML(tg topology.TopoGeometry, nsprefix text, prec int, options int, vis regclass)
   RETURNS text AS
 $$
  SELECT topology.AsGML($1, $2, $3, $4, $5, '');
index a44ec675a2952b428e26b1cdf8231af439ea35f8..39733e14b34a6336135d76bf24237049c52ad630 100644 (file)
@@ -16,8 +16,7 @@
 -- Makes a copy of a topology (primitives + topogeometry collections) .
 -- Returns the new topology id.
 --
-CREATE OR REPLACE FUNCTION topology.CopyTopology(atopology varchar,
-                                                 newtopo varchar)
+CREATE OR REPLACE FUNCTION topology.CopyTopology(atopology varchar, newtopo varchar)
 RETURNS int
 AS
 $$