Re: Copying large object in a stored procedure

Поиск
Список
Период
Сортировка
От Csaba Nagy
Тема Re: Copying large object in a stored procedure
Дата
Msg-id 1208262388.8259.337.camel@PCD12478
обсуждение исходный текст
Ответ на Re: Copying large object in a stored procedure  (Csaba Nagy <nagy@ecircle-ag.com>)
Список pgsql-general
[snip]
> DECLARE
>     v_NewOID BIGINT;
                           ^^^^^^
small correction: v_NewOID should be of type OID:

DECLARE
    v_NewOID OID;

BIGINT would of course work too as long as there is implicit cast from
it to/from OID, which seems to be the case on 8.2.

Cheers,
Csaba.



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

Предыдущее
От: Csaba Nagy
Дата:
Сообщение: Re: Copying large object in a stored procedure
Следующее
От: Karsten Hilbert
Дата:
Сообщение: Re: Storage sizes for dates/times (documentation bug?)