Re: BUG #17071: ORDER BY gets ignored when result set has only one row, but another one gets added by rollup()

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: tobias(dot)wendorff(at)tu-dortmund(dot)de
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #17071: ORDER BY gets ignored when result set has only one row, but another one gets added by rollup()
Date: 2021-06-23 19:20:08
Message-ID: 2350897.1624476008@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> SELECT
> '2021-01-01'::date AS month
> GROUP BY
> rollup(month)
> ORDER BY
> month NULLS FIRST;
> [ produces unsorted output ]

Hm, that's certainly a bug, but so far as I can tell it's specific to the
case of a constant value being used as the GROUP BY/ORDER BY target.
Which doesn't seem very likely to be interesting in practice. Do you have
a non-toy example where things go wrong?

The issue here is that ORDER BY a constant is normally deemed to be a
no-op. Our parse representation fails to make it clear that in this
situation, the "constant" column isn't so constant after the GROUP BY has
been applied. There's been some discussion of changing that, but it's a
large task and isn't likely to happen overnight (much less be a plausible
candidate for back-patching). So I'm wondering if this was reduced from
a more realistic example that we might be able to fix in some other way.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tobias Wendorff 2021-06-23 19:40:26 Re: BUG #17071: ORDER BY gets ignored when result set has only one row, but another one gets added by rollup()
Previous Message Tom Lane 2021-06-23 18:03:50 Re: Found a buffer-overflow defect in asynchronous database connection API PQconnectPoll