Re: BUG #5748: Invalid oidvector data during binary recv

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: BUG #5748: Invalid oidvector data during binary recv
Дата
Msg-id 4CDC1380.2090309@enterprisedb.com
обсуждение исходный текст
Ответ на Re: BUG #5748: Invalid oidvector data during binary recv  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: BUG #5748: Invalid oidvector data during binary recv  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #5748: Invalid oidvector data during binary recv  (Yeb Havinga <yebhavinga@gmail.com>)
Список pgsql-bugs
On 11.11.2010 17:48, Tom Lane wrote:
> "Yeb Havinga"<yebhavinga@gmail.com>  writes:
>> postgres=# create table a as select ''::oidvector;
>> SELECT 1
>> postgres=# copy a to '/tmp/test' with binary;
>> COPY 1
>> postgres=# copy a from '/tmp/test' with binary;
>> ERROR:  invalid oidvector data
>
> The problem seems to be that array_recv passes back a zero-dimensional
> array, *not* a 1-D array, when it observes that the input has no
> elements.  A zero-D array is not part of the subset of possible arrays
> that we allow for oidvector.

Yeah, I just reached that conclusion too..

> I'm less than convinced that this is worth fixing.  oidvector is not
> intended for general-purpose use anyway.  What's the use-case where this
> would come up?

I don't see any use case either, but I guess it would be nice to fix for
the sake of completeness.

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #5748: Invalid oidvector data during binary recv
Следующее
От: Yeb Havinga
Дата:
Сообщение: Re: BUG #5748: Invalid oidvector data during binary recv