Re: [COMMITTERS] pgsql: Implement table partitioning.

From: Amit Langote <Langote_Amit_f8(at)lab(dot)ntt(dot)co(dot)jp>
To: Robert Haas <robertmhaas(at)gmail(dot)com>, "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [COMMITTERS] pgsql: Implement table partitioning.
Date: 2016-12-08 02:05:43
Message-ID: 20d84485-7817-c324-4e58-e78f9d4c0db2@lab.ntt.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On 2016/12/08 3:33, Robert Haas wrote:
> On Wed, Dec 7, 2016 at 1:30 PM, Robert Haas <robertmhaas(at)gmail(dot)com> wrote:
>> -- partitioned table cannot partiticipate in regular inheritance
>> CREATE TABLE partitioned2 (
>> a int
>> --- 392,411 ----
>> c text,
>> d text
>> ) PARTITION BY RANGE (a oid_ops, plusone(b), c collate "default", d
>> collate "en_US");
>> + ERROR: collation "en_US" for encoding "SQL_ASCII" does not exist
> ...
>> No idea why yet, but I'll try to figure it out.
>
> And of course that'd be because relying on en_US isn't portable. Sigh.

Should've thought about the non-portability of locales. Thanks for
catching and fixing anyway!

Thanks,
Amit

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2016-12-08 08:20:45 pgsql: Fix accounting of memory needed for merge heap.
Previous Message Robert Haas 2016-12-07 20:21:34 Re: [COMMITTERS] pgsql: Implement table partitioning.

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2016-12-08 02:19:01 Re: Typmod associated with multi-row VALUES constructs
Previous Message Amit Langote 2016-12-08 02:03:54 Re: Declarative partitioning - another take