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

From: Sebastian <buddhahead(at)gmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: broken 'SHOW TABLE'-like query works in 8, not 8.1.1
Date: 2005-12-29 19:14:59
Message-ID: 4e36d31d0512291114p2188065dg1a13e27bee2f6a5a@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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_types et
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

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Dunstan 2005-12-29 19:44:37 Re: localization problem (and solution)
Previous Message Tom Lane 2005-12-29 18:50:11 Re: localization problem (and solution)