Re: After upgrading libpq, the same function(PQftype) call returns a different OID - Mailing list pgsql-general

From Tom Lane
Subject Re: After upgrading libpq, the same function(PQftype) call returns a different OID
Date
Msg-id 3498256.1742065328@sss.pgh.pa.us
Whole thread Raw
In response to After upgrading libpq, the same function(PQftype) call returns a different OID  (M Tarkeshwar Rao <m.tarkeshwar.rao@ericsson.com>)
Responses Re: After upgrading libpq, the same function(PQftype) call returns a different OID
List 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 by date:

Previous
From: M Tarkeshwar Rao
Date:
Subject: After upgrading libpq, the same function(PQftype) call returns a different OID
Next
From: Sebastien Flaesch
Date:
Subject: Re: After upgrading libpq, the same function(PQftype) call returns a different OID