Re: Partitioning WIP patch (was: Partitioning: issues/ideas) - Mailing list pgsql-hackers

From Amit Langote
Subject Re: Partitioning WIP patch (was: Partitioning: issues/ideas)
Date
Msg-id 54EC5842.8050709@lab.ntt.co.jp
Whole thread Raw
In response to Partitioning WIP patch (was: Partitioning: issues/ideas)  (Amit Langote <Langote_Amit_f8@lab.ntt.co.jp>)
Responses Re: Partitioning WIP patch (was: Partitioning: issues/ideas)  (Corey Huinker <corey.huinker@gmail.com>)
List pgsql-hackers
On 24-02-2015 PM 05:13, Amit Langote wrote:
> Additionally, a partition can itself be further partitioned (though I
> have not worked on the implementation details of multilevel partitioning
> yet):
> 
> CREATE TABLE table_name PARTITION OF parent_name PARTITION BY
> {RANGE|LIST} ON(key_columns) FOR VALUES values_clause;

One more blunder, supposed to be:

CREATE TABLE table_name PARTITION OF parent_name FOR VALUES
values_clause PARTITION BY {RANGE|LIST} ON(key_columns);

Thanks,
Amit




pgsql-hackers by date:

Previous
From: Kyotaro HORIGUCHI
Date:
Subject: A typo in backend/replication/README
Next
From: Jeevan Chalke
Date:
Subject: Re: How about to have relnamespace and relrole?