Re: pgsql: Add TIDStore, to store sets of TIDs (ItemPointerData) efficientl

Поиск
Список
Период
Сортировка
От David Rowley
Тема Re: pgsql: Add TIDStore, to store sets of TIDs (ItemPointerData) efficientl
Дата
Msg-id CAApHDvojg82NDaDEpj1WEZSbVTafj=DRmW+FrkBdW8ScL4OFxA@mail.gmail.com
обсуждение исходный текст
Ответ на pgsql: Add TIDStore, to store sets of TIDs (ItemPointerData) efficientl  (Masahiko Sawada <msawada@postgresql.org>)
Ответы Re: pgsql: Add TIDStore, to store sets of TIDs (ItemPointerData) efficientl
Список pgsql-committers
On Thu, 21 Mar 2024 at 14:10, Masahiko Sawada <msawada@postgresql.org> wrote:
>
> Add TIDStore, to store sets of TIDs (ItemPointerData) efficiently.

> src/backend/access/common/tidstore.c               | 463 +++++++++++++++++++++

I was looking at this code and I saw the following:

/* choose the maxBlockSize to be no larger than 1/16 of max_bytes */
while (16 * maxBlockSize > max_bytes * 1024L)
    maxBlockSize >>= 1;

I saw the "* 1024L" and was confused by it.  "max_bytes * 1024L"
converts the number of bytes into "millibytes" ([1]), which I don't
think is correct.

Either "max_bytes" is a bad name for this variable or the * 1024L
should be removed.

David

[1] https://www.convertunits.com/info/millibyte



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Refactor predicate_{implied,refuted}_by_simple_clause.
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: pgsql: make dist uses git archive