Re: bugs or my fault - Mailing list pgsql-bugs

From Yudianto Prasetyo
Subject Re: bugs or my fault
Date
Msg-id CAN7WH3JUyw1QWX3w+capEJ4v2w3szSnv3SqVD_1c-y-NF=7Lvg@mail.gmail.com
Whole thread Raw
In response to bugs or my fault  (Yudianto Prasetyo <mr.yudianto@gmail.com>)
Responses Re: bugs or my fault  (Peter Smith <smithpb2250@gmail.com>)
List pgsql-bugs
sorry I miss the query

select * from myschema.cust0;

On Wed, Sep 15, 2021 at 1:28 PM Yudianto Prasetyo <mr.yudianto@gmail.com> wrote:
Hello,

can you explain if this is a bug or my fault ?

I'm making a simple example of hash partition

CREATE TABLE myschema.customers(
id int,
status text,
arr numeric
) PARTITION BY HASH(id);

CREATE TABLE myschema.cust0 PARTITION OF myschema.customers
FOR VALUES WITH (modulus 3, remainder 0);

CREATE TABLE myschema.cust1 PARTITION OF myschema.customers
FOR VALUES WITH (modulus 3, remainder 1);

CREATE TABLE myschema.cust2 PARTITION OF myschema.customers
FOR VALUES WITH (modulus 3, remainder 2);

INSERT INTO myschema.customers VALUES (1,'ACTIVE',100), (2,'RECURRING',20), (3,'EXPIRED',38), (4,'REACTIVATED',144);

when I run the query, the result is:

2 "RECURRING" 20
4 "REACTIVATED" 144

shouldn't be

3 "EXPIRED" 38

i run this in version

PostgreSQL 13.4, compiled by Visual C++ build 1914, 64-bit

Please help me

pgsql-bugs by date:

Previous
From: Yudianto Prasetyo
Date:
Subject: bugs or my fault
Next
From: Peter Smith
Date:
Subject: Re: bugs or my fault