Tom Lane <[EMAIL PROTECTED]> writes: > Rod Taylor <[EMAIL PROTECTED]> writes: > > If when we have partitions, that'll be good enough. If partitions aren't > > available this would be quite painful to anyone with large tables -- > > much as the days of old used to be painful for ANALYZE. > > Yeah ... I am very un-enthused about these suggestions to make ANALYZE > go back to doing a full scan ...
Well one option would be to sample only a small number of records, but add the data found from those records to the existing statistics. This would make sense for a steady-state situation, but make it hard to recover from a drastic change in data distribution. I think in the case of n_distinct it would also bias the results towards underestimating n_distinct but perhaps that could be corrected for. But I'm unclear for what situation this is a concern. For most use cases users have to run vacuum occasionally. In those cases "vacuum analyze" would be no worse than a straight normal vacuum. Note that this algorithm doesn't require storing more data because of the large scan or performing large sorts per column. It's purely O(n) time and O(1) space. On the other hand, if you have tables you aren't vacuuming that means you perform zero updates or deletes. In which case some sort of incremental statistics updating would be a good solution. A better solution even than sampling. -- greg ---------------------------(end of broadcast)--------------------------- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match