Re: After upgrading libpq, the same function(PQftype) call returns a different OID

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: After upgrading libpq, the same function(PQftype) call returns a different OID
Дата
Msg-id 3498256.1742065328@sss.pgh.pa.us
обсуждение исходный текст
Ответ на After upgrading libpq, the same function(PQftype) call returns a different OID  (M Tarkeshwar Rao <m.tarkeshwar.rao@ericsson.com>)
Ответы Re: After upgrading libpq, the same function(PQftype) call returns a different OID
Список pgsql-general
M Tarkeshwar Rao <m.tarkeshwar.rao@ericsson.com> writes:
> We are using PostgreSQL libpq in our application. The code worked fine for the past four years, but after upgrading
thelibrary, the function PQftype is returning unexpected values for some columns. 
> Specifically, the issue occurs with a column of type timestamp(3) without time zone.

The OID of type timestamp has not changed.  Perhaps you are now
querying some other table.  I'd suggest looking into pg_type to
find out what type is represented by the OID you're now getting,
and then searching pg_attribute to see what's using that.

select typname from pg_type where oid = 123456;

select attrelid::regclass, attname from pg_attribute where atttypid = 123456;

Also, if you really do mean that you changed only libpq and
nothing about the server side, I'd have to guess that you're
connecting to some other database than before.  That would be
surprising, but with zero details it's hard to debug.

            regards, tom lane



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