From: | Etsuro Fujita <etsuro(dot)fujita(at)gmail(dot)com> |
---|---|
To: | hisanori(dot)kobayashi(dot)bp(at)nttdata(dot)com, PostgreSQL mailing lists <pgsql-bugs(at)lists(dot)postgresql(dot)org> |
Subject: | Re: BUG #16500: SQL Abend. select multi_key_columns_range_partition_table |
Date: | 2020-06-18 13:05:12 |
Message-ID: | CAPmGK17+aP+3tXnjLVVxEfiv0WxEJ-YQGKb_AE3dFWOMu2vg1g@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
On Thu, Jun 18, 2020 at 6:49 PM PG Bug reporting form
<noreply(at)postgresql(dot)org> wrote:
> I will send a reproduction script.
> drop table if exists pt_test01 ;
> create table pt_test01
> ( kbn smallint not null
> , nen char(4) not null
> , mm char(2) not null
> , cd char(3) not null
> , val00 numeric(15, 3)
> , usr varchar(10)
> )
> partition by range(kbn, nen) with (oids=false)
> ;
> create table pt_test01_1_2019 partition of pt_test01 for values from (1,
> '2019') to (1, '2020') ;
> create table pt_test01_1_2020 partition of pt_test01 for values from (1,
> '2020') to (1, '2021') ;
> create table pt_test01_2_2019 partition of pt_test01 for values from (2,
> '2019') to (2, '2020') ;
> create table pt_test01_2_2020 partition of pt_test01 for values from (2,
> '2020') to (2, '2021') ;
> select * from pt_test01 where kbn <= 1 and nen = '2020' ;
This caused a server crash in my environment as well. Maybe I'm
missing something, but ISTM that it's odd to allow partitions with
empty range bounds. I'll dig into this (and another one Kobayashi-san
reported).
Best regards,
Etsuro Fujita
From | Date | Subject | |
---|---|---|---|
Next Message | Ram Pratap Maurya | 2020-06-18 13:32:37 | RE: BUG #16497: old and new pg_controldata WAL segment sizes are invalid or do not match |
Previous Message | PG Bug reporting form | 2020-06-18 09:41:44 | BUG #16501: Incorrect result. select multi_key_columns_range_partition_table |