]> granicus.if.org Git - postgis/commitdiff
Commented out debug call to non-existant function nd_stats_to_grid().
authorBborie Park <bkpark at ucdavis.edu>
Tue, 7 May 2013 23:04:22 +0000 (23:04 +0000)
committerBborie Park <bkpark at ucdavis.edu>
Tue, 7 May 2013 23:04:22 +0000 (23:04 +0000)
Ticket #2282

git-svn-id: http://svn.osgeo.org/postgis/trunk@11381 b70326c6-7e19-0410-871a-916f4a2858ee

NEWS
postgis/gserialized_estimate.c

diff --git a/NEWS b/NEWS
index 0e55bf37ee4bfaaa32184f274b80c1787131d6f1..6971e8fbfabf94f18f9fa5527c087a35e61f8743 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -182,6 +182,7 @@ PostGIS 2.1.0
   - #2133, Fix performance regression in expression variant of ST_MapAlgebra
   - #2257, GBOX variables not initialized when testing with empty geometries
   - #2271, Prevent parallel make of raster
+  - #2282, Fix call to undefined function nd_stats_to_grid()
 
 PostGIS 2.0.3
 2013/03/01
index 6b57cebb73ca4ee2ce52bd5923f35b3bb2aca116..cfe7efff49f9f8fa670a37c9ac2cf2862b832256 100644 (file)
@@ -1651,7 +1651,9 @@ compute_gserialized_stats_mode(VacAttrStats *stats, AnalyzeAttrFetchFunc fetchfu
        POSTGIS_DEBUGF(3, " out: average width: %d bytes", stats->stawidth);
        POSTGIS_DEBUG (3, " out: distinct values: all (no check done)");
        POSTGIS_DEBUGF(3, " out: %s", nd_stats_to_json(nd_stats));
+       /*
        POSTGIS_DEBUGF(3, " out histogram:\n%s", nd_stats_to_grid(nd_stats));
+       */
 
        return;
 }