]> granicus.if.org Git - postgis/commitdiff
Comment out expensive DEBUG lines
authorSandro Santilli <strk@keybit.net>
Mon, 16 Jan 2012 08:25:00 +0000 (08:25 +0000)
committerSandro Santilli <strk@keybit.net>
Mon, 16 Jan 2012 08:25:00 +0000 (08:25 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8824 b70326c6-7e19-0410-871a-916f4a2858ee

topology/sql/topogeometry/totopogeom.sql.in.c

index c9f9e95e66506e54d4bf98c547af61ba75b760f1..57e69593922755e97de221f2a4cdfb832b63f8ed 100644 (file)
@@ -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);