On Wed, Aug 9, 2017 at 8:18 AM, Rajkumar Raghuwanshi <rajkumar.raghuwanshi@enterprisedb.com> wrote: > --difference in the description of default partition in case of list vs > range > > create table lp (a int) partition by list(a); > create table lp_d partition of lp DEFAULT; > postgres=# \d+ lp_d > Table "public.lp_d" > Column | Type | Collation | Nullable | Default | Storage | Stats target > | Description > --------+---------+-----------+----------+---------+---------+--------------+------------- > a | integer | | | | plain | > | > Partition of: lp DEFAULT > Partition constraint: > > create table rp (a int) partition by range(a); > create table rp_d partition of rp DEFAULT; > postgres=# \d+ rp_d > Table "public.rp_d" > Column | Type | Collation | Nullable | Default | Storage | Stats target > | Description > --------+---------+-----------+----------+---------+---------+--------------+------------- > a | integer | | | | plain | > | > Partition of: rp DEFAULT > Partition constraint: trueThis looks like a problem with the default list partitioning patch. I think "true" is what we expect to see here in both cases.
pgsql-hackers by date:
Соглашаюсь с условиями обработки персональных данных