Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Fix pgstatindex() to give consistent results for empty indexes.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Aug 2011 03:50:36 +0000 (23:50 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 25 Aug 2011 03:50:36 +0000 (23:50 -0400)
For an empty index, the pgstatindex() function would compute 0.0/0.0 for
its avg_leaf_density and leaf_fragmentation outputs.  On machines that
follow the IEEE float arithmetic standard with any care, that results in
a NaN.  However, per report from Rushabh Lathia, Microsoft couldn't
manage to get this right, so you'd get a bizarre error on Windows.

Fix by forcing the results to be NaN explicitly, rather than relying on
the division operator to give that or the snprintf function to print it
correctly.  I have some doubts that this is really the most useful
definition, but it seems better to remain backward-compatible with
those platforms for which the behavior wasn't completely broken.

Back-patch to 8.2, since the code is like that in all current releases.

contrib/pgstattuple/pgstatindex.c

index c0ac1ae5bfb432136130c13b5dd93d08f9b731ea..509e31f1a850074dbf74cc4dffc5f6043e0aa56d 100644 (file)
@@ -377,9 +377,17 @@ pgstatindex(PG_FUNCTION_ARGS)
        values[j] = palloc(32);
        snprintf(values[j++], 32, "%d", indexStat.deleted_pages);
        values[j] = palloc(32);
-       snprintf(values[j++], 32, "%.2f", 100.0 - (float) indexStat.free_space / (float) indexStat.max_avail * 100.0);
+       if (indexStat.max_avail > 0)
+           snprintf(values[j++], 32, "%.2f",
+                    100.0 - (double) indexStat.free_space / (double) indexStat.max_avail * 100.0);
+       else
+           snprintf(values[j++], 32, "NaN");
        values[j] = palloc(32);
-       snprintf(values[j++], 32, "%.2f", (float) indexStat.fragments / (float) indexStat.leaf_pages * 100.0);
+       if (indexStat.leaf_pages > 0)
+           snprintf(values[j++], 32, "%.2f",
+                    (double) indexStat.fragments / (double) indexStat.leaf_pages * 100.0);
+       else
+           snprintf(values[j++], 32, "NaN");
 
        tuple = BuildTupleFromCStrings(TupleDescGetAttInMetadata(tupleDesc),
                                       values);