broken 'SHOW TABLE'-like query works in 8, not 8.1.1

Поиск
Список
Период
Сортировка
От Sebastian
Тема broken 'SHOW TABLE'-like query works in 8, not 8.1.1
Дата
Msg-id 4e36d31d0512291114p2188065dg1a13e27bee2f6a5a@mail.gmail.com
обсуждение исходный текст
Ответы Re: broken 'SHOW TABLE'-like query works in 8, not 8.1.1  (Michael Fuhr <mike@fuhr.org>)
Список pgsql-hackers
Hi,

I have a query that previously worked fine using pg8 on Fedora. Since
then we've moved to a FreeBSD 6 server running pg8.1.1 and the query
doesn't seem to ever finish.

I have VACUUM ANALYZEd the database. Here is the query:

SELECT column_name, table_schema, table_name, c.data_type,
et.data_type as array_type,
col_description('codes.countries'::regclass,ordinal_position),
c.character_maximum_length                       FROM information_schema.columns c                       LEFT JOIN
information_schema.element_typeset                               ON et.object_schema = table_schema
         AND et.object_name = table_name                               AND et.array_type_identifier = c.dtd_identifier
                    WHERE table_schema='codes' and table_name='countries'                       ORDER BY
ordinal_position

-- replaces 'codes' and 'countries' with a schema and table that exist


One fellow on IRC using FreeBSD 4.11 and pg8.1.1 can reproduce the problem.

Any suggestions?

Thanks in advance,
sebastian


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: localization problem (and solution)
Следующее
От: "Andrew Dunstan"
Дата:
Сообщение: Re: localization problem (and solution)