Re: [PATCH] GROUP BY ALL

From: Chao Li <li(dot)evan(dot)chao(at)gmail(dot)com>
To: David Christensen <david(at)pgguru(dot)net>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Peter Eisentraut <peter(at)eisentraut(dot)org>, Andrey Borodin <x4mmm(at)yandex-team(dot)ru>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>, Jelte Fennema-Nio <postgres(at)jeltef(dot)nl>
Subject: Re: [PATCH] GROUP BY ALL
Date: 2025-09-29 23:46:25
Message-ID: B3B8C634-769E-4C44-9614-13BE5B02B336@gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> On Sep 29, 2025, at 04:34, David Christensen <david(at)pgguru(dot)net> wrote:
>
> On Sun, Sep 28, 2025 at 2:18 PM David Christensen <david(at)pgguru(dot)net <mailto:david(at)pgguru(dot)net>> wrote:
>>
>> On Sat, Sep 27, 2025 at 5:23 PM Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>>>
>>> Here's a v6 that's rebased up to HEAD and contains fixes for the
>>> semantic issues we discussed. It still lacks documentation, but
>>> otherwise I think it's about ready to go.
>>
>> Here is v7 with a stab at docs; fairly minimal at this point, but
>> touching the two areas that are likely to need adjusting. When
>> adjusting the docs for sql-select, I noticed that the grammar also
>> supports `GROUP BY ALL <grouping_elements>`, so I also added a test to
>> ensure that this syntax is explicitly supported. (It seems like it
>> works as-is without further grammar adjustments, but I was a little
>> worried when I first saw that fact... :D) Not sure that
>> aggregates.sql is still the right place for all of these bits, but it
>> does seem like having all things `GROUP BY ALL`-related tested in the
>> same place is a nice property, so leaving there for now.
>
> This time with attachment!
> <v7-0001-Add-GROUP-BY-ALL.patch>

A nit comment for the doc:

```
+ not contain either an aggregate function or a window function in their
+ expression list. This can greatly simplify ad-hoc exploration of data.
+ </para>
```

“In their expression list” => “in the <literal>SELECT</literal> list"

Best regards,
--
Chao Li (Evan)
HighGo Software Co., Ltd.
https://www.highgo.com/

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2025-09-30 00:08:32 Re: Fix locking issue with fixed-size stats template in injection_points
Previous Message Michael Paquier 2025-09-29 23:39:56 Re: [PATCH] Add tests for Bitmapset