Re: BUG #16500: SQL Abend. select multi_key_columns_range_partition_table

Поиск
Список
Период
Сортировка
От Etsuro Fujita
Тема Re: BUG #16500: SQL Abend. select multi_key_columns_range_partition_table
Дата
Msg-id CAPmGK17+aP+3tXnjLVVxEfiv0WxEJ-YQGKb_AE3dFWOMu2vg1g@mail.gmail.com
обсуждение исходный текст
Ответ на BUG #16500: SQL Abend. select multi_key_columns_range_partition_table  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #16500: SQL Abend. selectmulti_key_columns_range_partition_table  (Dmitry Dolgov <9erthalion6@gmail.com>)
Список pgsql-bugs
On Thu, Jun 18, 2020 at 6:49 PM PG Bug reporting form
<noreply@postgresql.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



В списке pgsql-bugs по дате отправления:

Предыдущее
От: PG Bug reporting form
Дата:
Сообщение: BUG #16501: Incorrect result. select multi_key_columns_range_partition_table
Следующее
От: Ram Pratap Maurya
Дата:
Сообщение: RE: BUG #16497: old and new pg_controldata WAL segment sizes areinvalid or do not match