From: Sandro Santilli Date: Mon, 16 Jan 2012 08:25:00 +0000 (+0000) Subject: Comment out expensive DEBUG lines X-Git-Tag: 2.0.0alpha1~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74a1d2bf64a9e5a195f7ab2070fe3e9c35d59070;p=postgis Comment out expensive DEBUG lines git-svn-id: http://svn.osgeo.org/postgis/trunk@8824 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/topology/sql/topogeometry/totopogeom.sql.in.c b/topology/sql/topogeometry/totopogeom.sql.in.c index c9f9e95e6..57e695939 100644 --- a/topology/sql/topogeometry/totopogeom.sql.in.c +++ b/topology/sql/topogeometry/totopogeom.sql.in.c @@ -124,7 +124,7 @@ BEGIN || quote_literal(atopology) || ', ' || quote_literal(rec.geom::text) || '::geometry, ' || atolerance || ');'; - RAISE DEBUG '%', sql; + --RAISE DEBUG '%', sql; EXECUTE sql; ELSIF ST_Dimension(rec.geom) = 1 THEN sql := 'INSERT INTO ' || quote_ident(atopology) @@ -133,7 +133,7 @@ BEGIN || quote_literal(atopology) || ', ' || quote_literal(rec.geom::text) || '::geometry, ' || atolerance || ');'; - RAISE DEBUG '%', sql; + --RAISE DEBUG '%', sql; EXECUTE sql; ELSIF ST_Dimension(rec.geom) = 2 THEN sql := 'INSERT INTO ' || quote_ident(atopology) @@ -142,7 +142,7 @@ BEGIN || quote_literal(atopology) || ', ' || quote_literal(rec.geom::text) || '::geometry, ' || atolerance || ');'; - RAISE DEBUG '%', sql; + --RAISE DEBUG '%', sql; EXECUTE sql; ELSE RAISE EXCEPTION 'Unexpected dimension % for component %', ST_Dimension(rec.geom), ST_AsText(rec.geom);