Re: [COMMITTERS] pgsql: Implement multivariate n-distinct coefficients

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
Cc: "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [COMMITTERS] pgsql: Implement multivariate n-distinct coefficients
Date: 2017-03-24 18:46:02
Message-ID: CA+Tgmobb0_6o2KfY8ezVKozJ0jCadL1DapxLY9PJufc3g5MHcQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On Fri, Mar 24, 2017 at 1:16 PM, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org> wrote:
> Implement multivariate n-distinct coefficients

dromedary and arapaima have failures like this, which seems likely
related to this commit:

EXPLAIN
SELECT COUNT(*) FROM ndistinct GROUP BY a, d;
QUERY PLAN
---------------------------------------------------------------------
! HashAggregate (cost=225.00..235.00 rows=1000 width=16)
Group Key: a, d
! -> Seq Scan on ndistinct (cost=0.00..150.00 rows=10000 width=8)
(3 rows)

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2017-03-24 18:49:39 pgsql: Improve access to parallel query from procedural languages.
Previous Message Alvaro Herrera 2017-03-24 18:43:39 pgsql: Fix use-after-free bug

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2017-03-24 18:49:39 pgsql: Improve access to parallel query from procedural languages.
Previous Message Alvaro Herrera 2017-03-24 18:35:12 Re: multivariate statistics (v25)