Re: [DOCS] Int32 type unclear about signedness

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема Re: [DOCS] Int32 type unclear about signedness
Дата
Msg-id bcd2c5e2-7ce0-ee5e-28ab-6a9981795c2d@2ndquadrant.com
обсуждение исходный текст
Ответ на [DOCS] Int32 type unclear about signedness  (rsto@paranoia.at)
Список pgsql-docs
On 8/23/17 14:45, rsto@paranoia.at wrote:
> Both its C-like name and its use for negative values in several protocol 3
> messages make assuming signedness only reasonable. Yet, when used for
> message lengths, the libpq code seems unclear:
>
> The libpq frontend reads message lengths from the backend as 4 bytes into a
> signed int (see [2]). It checks if the length exceeds 30000 and allows
> excessive message lengths only for some messages.

That doesn't contradict anything about the value being signed.

> Yet, the related backend code uses a uint32_t to transmit the length value
> of a size_t (see [3]). This suggests that UINT32_MAX lengths would
> theoretically be possible and driver implementations would need to handle
> it.

That's because it calls ntonl() on the value, which requires an unsigned
argument.  It doesn't mean the original value is meant to be unsigned.

--
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: [DOCS] pg_replication_slots page links
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: [DOCS] Errors in documentation