Re: [COMMITTERS] pgsql: Implement table partitioning.

From: Robert Haas <robertmhaas(at)gmail(dot)com>
To: "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [COMMITTERS] pgsql: Implement table partitioning.
Date: 2016-12-07 18:33:09
Message-ID: CA+TgmoYSX6OPwySBYkcaUyh_HpsFD00kiNzJ3RO7zSFiSAU=_Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

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.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2016-12-07 18:39:30 pgsql: Replace references to COLLATE "en_US" with COLLATE "C".
Previous Message Robert Haas 2016-12-07 18:30:48 Re: [COMMITTERS] pgsql: Implement table partitioning.

Browse pgsql-hackers by date

  From Date Subject
Next Message Robert Haas 2016-12-07 18:53:34 Re: Back-patch use of unnamed POSIX semaphores for Linux?
Previous Message Robert Haas 2016-12-07 18:30:48 Re: [COMMITTERS] pgsql: Implement table partitioning.