Re: Refactoring on DROP/ALTER SET SCHEMA/ALTER RENAME TO statement

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Refactoring on DROP/ALTER SET SCHEMA/ALTER RENAME TO statement
Дата
Msg-id 1321565111-sup-4853@alvh.no-ip.org
обсуждение исходный текст
Ответ на Re: Refactoring on DROP/ALTER SET SCHEMA/ALTER RENAME TO statement  (Robert Haas <robertmhaas@gmail.com>)
Ответы Re: Refactoring on DROP/ALTER SET SCHEMA/ALTER RENAME TO statement  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
Excerpts from Robert Haas's message of jue nov 17 16:25:03 -0300 2011:
> On Thu, Nov 17, 2011 at 1:00 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> > Robert Haas <robertmhaas@gmail.com> writes:

> >> - For some reason, we have code that causes procedural language names
> >> to be downcased before use.
> >
> > I think this is a hangover from the fact that CREATE FUNCTION's LANGUAGE
> > clause used to insist on the language name being a string literal, and
> > of course the lexer didn't case-fold it then.  That's been deprecated
> > for long enough that we probably don't need to have the extra case-fold
> > step anymore.
>
> OK, great.

So the buildfarm broke due to this change, because citext does

--
-- Aggregates.
--

CREATE FUNCTION citext_smaller(citext, citext)
RETURNS citext
AS 'MODULE_PATHNAME'
LANGUAGE 'C' IMMUTABLE STRICT;

CREATE FUNCTION citext_larger(citext, citext)
RETURNS citext
AS 'MODULE_PATHNAME'
LANGUAGE 'C' IMMUTABLE STRICT;


--
Álvaro Herrera <alvherre@commandprompt.com>
The PostgreSQL Company - Command Prompt, Inc.
PostgreSQL Replication, Consulting, Custom Development, 24x7 support


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: Re: RangeVarGetRelid()
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Are range_before and range_after commutator operators?