Re: BUG #3015: libpq: PQftype() on a lo type result column returns Oid of type oid instead of Oid of type lo.

Поиск
Список
Период
Сортировка
От Unmesh Churi
Тема Re: BUG #3015: libpq: PQftype() on a lo type result column returns Oid of type oid instead of Oid of type lo.
Дата
Msg-id D730FF7CEDDCA64483F9E99D999A158BD34D41@qxvcexch01.ad.quovadx.com
обсуждение исходный текст
Ответ на BUG #3015: libpq: PQftype() on a lo type result column returns Oid of type oid instead of Oid of type lo.  ("" <churi@roguewave.com>)
Ответы Re: BUG #3015: libpq: PQftype() on a lo type result column returns Oid of type oid instead of Oid of type lo.  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #3015: libpq: PQftype() on a lo type result column returns Oid of type oid instead of Oid of type lo.  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Thanks Tom. I used to rely on the PQftype() to determine if the OIDs
stored in that result field are pointing to large objects or not. If
they are large objects, I used to fetch them using lo_* API.
Now since PQftype() returns type oid for type lo columns, how will I
identify if a result column contains large objects or not? One way I can
think of is to use PQftable() and PQftablecol() and then query the type
of the table column from pg_attribute. Would this be the correct way? Is
there a better and easier way to identify the data to be lo?

Thanking you in advance.
Unmesh


-----Original Message-----
From: Tom Lane [mailto:tgl@sss.pgh.pa.us]=20
Sent: Thursday, February 15, 2007 12:55 PM
To: Unmesh Churi
Cc: pgsql-bugs@postgresql.org
Subject: Re: [BUGS] BUG #3015: libpq: PQftype() on a lo type result
column returns Oid of type oid instead of Oid of type lo.=20

"" <churi@roguewave.com> writes:
> Description:        libpq: PQftype() on a lo type result column
returns Oid
> of type oid instead of Oid of type lo.

This is an expected change: type "lo" isn't an independent datatype
anymore, just a domain over OID.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #3015: libpq: PQftype() on a lo type result column returns Oid of type oid instead of Oid of type lo.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #3012: Wrong JOIN order when a JOIN depends on result from a LEFT JOIN.