Re: Extending SQL in C using VARIABLE length type

Поиск
Список
Период
Сортировка
От Carsten Kropf
Тема Re: Extending SQL in C using VARIABLE length type
Дата
Msg-id 6FA09450-E1EB-431A-AA59-7AD4272D0E40@fh-hof.de
обсуждение исходный текст
Ответ на Re: Extending SQL in C using VARIABLE length type  (Yeb Havinga <yebhavinga@gmail.com>)
Ответы Re: Extending SQL in C using VARIABLE length type
Список pgsql-general
Oh, I see, does the VARSIZE length field have to be the total number of bytes occupied (including VARHDRSZ and the size
ofthe structure) or only the size that is used by "my" datatype? Then it would become pretty much obvious, why this is
notsupposed to work. 
I'll try it out then.

regards
    Carsten Kropf
Am 10.02.2010 um 12:04 schrieb Yeb Havinga:

> Carsten Kropf wrote:
>> Actually, I thought, I did this using the int32 variable called "dimension" which should be exactly this field.
> yes.
>> in = (PointND *) palloc(sizeof(float8) * dimensions + VARHDRSZ);
>> SET_VARSIZE(in, dimensions);
> What about
>
> len = sizeof(float8) * dimensions + VARHDRSZ;
> in = (PointND *) palloc0(len);
> SET_VARSIZE(in, len);
>
>
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general


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

Предыдущее
От: Yeb Havinga
Дата:
Сообщение: Re: Extending SQL in C using VARIABLE length type
Следующее
От: Greg Stark
Дата:
Сообщение: Re: 8.5devel: unexpected and illogical error during transaction, but transaction don't rolled back