Re: Declarative partitioning

From: Amit Langote <amitlangote09(at)gmail(dot)com>
To: Thom Brown <thom(at)linux(dot)com>
Cc: Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp>, Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Declarative partitioning
Date: 2015-08-18 11:23:45
Message-ID: CA+HiwqFLNTBwCcxLVHa4sc+uA_raBHiUiPFc1NBB-DDVfhPKiA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi Thom,

On Tue, Aug 18, 2015 at 8:02 PM, Thom Brown <thom(at)linux(dot)com> wrote:
>
>
> Wow, didn't expect to see that email this morning.
>
> A very quick test:
>
> CREATE TABLE purchases (purchase_id serial, purchase_time timestamp, item
> text) partition by range on ((extract(year from
> purchase_time)),(extract(month from purchase_time)));
> ERROR: referenced relation "purchases" is not a table or foreign table
>

Thanks for the quick test.

Damn, I somehow missed adding the new relkind to a check in
process_owned_by(). Will fix this and look for any such oversights.

Thanks,
Amit

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Masahiko Sawada 2015-08-18 11:27:24 Re: Freeze avoidance of very large table.
Previous Message Thom Brown 2015-08-18 11:02:01 Re: Declarative partitioning