Re: ERROR: ORDER/GROUP BY expression not found in targetlist

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Robert Haas <robertmhaas(at)gmail(dot)com>
Cc: Amit Kapila <amit(dot)kapila(at)enterprisedb(dot)com>, David Rowley <david(dot)rowley(at)2ndquadrant(dot)com>, Thomas Munro <thomas(dot)munro(at)enterprisedb(dot)com>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: ERROR: ORDER/GROUP BY expression not found in targetlist
Date: 2016-06-13 19:42:49
Message-ID: 1597.1465846969@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

I wrote:
> ... there was also an unexplainable plan change:

> *** /home/postgres/pgsql/src/test/regress/expected/aggregates.out Thu Apr 7 21:13:14 2016
> --- /home/postgres/pgsql/src/test/regress/results/aggregates.out Mon Jun 13 11:54:01 2016
> ***************
> *** 577,590 ****

> explain (costs off)
> select max(unique1) from tenk1 where unique1 > 42000;
> ! QUERY PLAN
> ! ---------------------------------------------------------------------------
> ! Result
> ! InitPlan 1 (returns $0)
> ! -> Limit
> ! -> Index Only Scan Backward using tenk1_unique1 on tenk1
> ! Index Cond: ((unique1 IS NOT NULL) AND (unique1 > 42000))
> ! (5 rows)

> select max(unique1) from tenk1 where unique1 > 42000;
> max
> --- 577,588 ----

> explain (costs off)
> select max(unique1) from tenk1 where unique1 > 42000;
> ! QUERY PLAN
> ! ----------------------------------------------------
> ! Aggregate
> ! -> Index Only Scan using tenk1_unique1 on tenk1
> ! Index Cond: (unique1 > 42000)
> ! (3 rows)

> select max(unique1) from tenk1 where unique1 > 42000;
> max

> I would not be surprised at a change to a parallel-query plan, but there's
> no parallelism here, so what happened? This looks like a bug to me.
> (Also, doing this query without COSTS OFF shows that the newly selected
> plan actually has a greater estimated cost than the expected plan, which
> makes it definitely a bug.)

I looked into this and found that the costs are considered fuzzily the
same, and then add_path prefers the slightly-worse path on the grounds
that it is marked parallel_safe while the MinMaxAgg path is not. It seems
to me that there is some fuzzy thinking going on there. On exactly what
grounds is a path to be preferred merely because it is parallel safe, and
not actually parallelized? Or perhaps the question to ask is whether a
MinMaxAgg path can be marked parallel-safe.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2016-06-13 19:51:16 Re: New design for FK-based join selectivity estimation
Previous Message 'bruce@momjian.us' 2016-06-13 19:40:08 Re: Prepared statements and generic plans