raster_columns and raster_overviews
- #2532, Add missing raster/geometry commutator operators
- #2540, Change GUC name for GDAL_DATA to postgis.gdal_datapath
+ - #2543, invalid join selectivity error from simple query
- #2552, Fix handling of NULL raster in ST_AsTIFF, ST_AsPNG
and ST_AsJPEG
- #2555, Fix parsing issue of range arguments of ST_Reclass
* number of rows that can be returned.
*/
selectivity = val / ntuples_max;
+
+ /* Guard against over-estimates :) */
+ if ( selectivity > 1.0 )
+ selectivity = 1.0;
return selectivity;
}