On Thu, Aug 16, 2018 at 12:46 AM Pavel Stehule
wrote:
> čt 16. 8. 2018 v 5:52 odesílatel Mathias Brossard
> napsal:
>
>> I do have a feedback on the implementation. The code tries to support
>> older PostgreSQL server versions when declarative partitions were not
>>
he upside would be that the query building would be simpler. I can
make patch implementing that suggestion if you want.
Sincerely,
-- Mathias Brossard
CREATE TABLE partition (
part int not null,
value int not null
) PARTITION BY RANGE (part);
CREATE TABLE partition_0 PARTITION OF parti