Skip to content

Commit

Permalink
test: revert 296871a
Browse files Browse the repository at this point in the history
  • Loading branch information
smellman committed Mar 30, 2019
1 parent b9aa5f9 commit 7e2cbaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgis/gserialized_estimate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1632,7 +1632,7 @@ compute_gserialized_stats_mode(VacAttrStats *stats, AnalyzeAttrFetchFunc fetchfu
histo_cells_new = 1;
for ( d = 0; d < ndims; d++ )
{
histo_size[d] = 1 + (int)pow((double)histo_cells_target, 1/(double)ndims);
histo_size[d] = (int)pow((double)histo_cells_target, 1/(double)ndims);
POSTGIS_DEBUGF(3, " histo_size[d]: %d", histo_size[d]);
histo_cells_new *= histo_size[d];
}
Expand Down

0 comments on commit 7e2cbaf

Please sign in to comment.