Re: Add SPLIT PARTITION/MERGE PARTITIONS commands

From: Alexander Korotkov <aekorotkov(at)gmail(dot)com>
To: Kirill Reshke <reshkekirill(at)gmail(dot)com>
Cc: zengman <zengman(at)halodbtech(dot)com>, pgsql-hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Add SPLIT PARTITION/MERGE PARTITIONS commands
Date: 2025-12-20 10:41:39
Message-ID: CAPpHfdudzb96AOCPsyWAJnMdj-QU3xCt52PHzLbz4scbzio7sQ@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi Kirill!

On Sat, Dec 20, 2025 at 10:58 AM Kirill Reshke <reshkekirill(at)gmail(dot)com> wrote:
> I have been looking though git log, noticed this commit, and did small tests.
>
> This is what I found:
>
> ```
> reshke=# create table z(i int) partition by range(i);
> CREATE TABLE
> reshke=# create table z_1 partition of z for values from (0)to(1);
> CREATE TABLE
> reshke=# create table z_2 partition of z for values from (1)to(2);
> CREATE TABLE
> reshke=# alter table only z merge partitions (z_1,z_2) into z_12;
> ALTER TABLE
> reshke=#
>
> ```
>
> IMO "alter table only ... merge partitions" does not make perfect
> sense and should be rejected rather than executed. WDYT?

Could you, please, clarify your point? I didn't quite get it. It
looks like pretty basic example of merging two adjacent partitions.

------
Regards,
Alexander Korotkov
Supabase

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message zengman 2025-12-20 10:53:17 Re: Inline non-SQL SRFs using SupportRequestSimplify
Previous Message Kirill Reshke 2025-12-20 10:32:34 Re: Additional message in pg_terminate_backend