Re: Choosing values for multivariate MCV lists
Dean Rasheed <dean.a.rasheed@gmail.com>
From: Dean Rasheed <dean.a.rasheed@gmail.com>
To: Tomas Vondra <tomas.vondra@2ndquadrant.com>
Cc: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2019-06-23T19:48:26Z
Lists: pgsql-hackers
On Sat, 22 Jun 2019 at 15:10, Tomas Vondra <tomas.vondra@2ndquadrant.com> wrote: > One annoying thing I noticed is that the base_frequency tends to end up > being 0, most likely due to getting too small. It's a bit strange, though, > because with statistic target set to 10k the smallest frequency for a > single column is 1/3e6, so for 2 columns it'd be ~1/9e12 (which I think is > something the float8 can represent). > Yeah, it should be impossible for the base frequency to underflow to 0. However, it looks like the problem is with mcv_list_items()'s use of %f to convert to text, which is pretty ugly. Regards, Dean
Commits
-
Fix pg_mcv_list_items() to produce text[]
- cc052b423ad7 12.0 landed
- 4d66285adc6b 13.0 landed
-
Speed-up build of MCV lists with many distinct values
- 57f459cf6c48 12.0 landed
- e365a581c246 13.0 landed