[COMMITTERS] pgsql: Refactor bitmap heap scan estimation of heap pages fetched.

Поиск
Список
Период
Сортировка
От Robert Haas
Тема [COMMITTERS] pgsql: Refactor bitmap heap scan estimation of heap pages fetched.
Дата
Msg-id E1cXE6Y-0000ok-56@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Refactor bitmap heap scan estimation of heap pages fetched.

Currently, we only need this logic in order to cost a Bitmap Heap
Scan.  But a pending patch for Parallel Bitmap Heap Scan also uses
it to help figure out how many workers to use for the scan, which
has to be determined prior to costing.  So, move the logic to
a separate function to make that easier.

Dilip Kumar.  The patch series of which this is a part has been
reviewed by Andres Freund, Amit Khendekar, Tushar Ahuja, Rafia
Sabih, Haribabu Kommi, and me; it is not clear from the email
discussion which of those people have looked specifically at this
part.

Discussion: http://postgr.es/m/CAFiTN-v3QYNJEZnnmKCeATuLbN-h9tMVfeEF0+BrouYDqjXgwg@mail.gmail.com

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/da08a659897347859fdfe258c67e9d2bf680d4dd

Modified Files
--------------
src/backend/optimizer/path/costsize.c | 111 +++++++++++++++++++++-------------
src/include/optimizer/cost.h          |   2 +
2 files changed, 72 insertions(+), 41 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: [COMMITTERS] pgsql: Restructure hba.c to replace 3 parallel lists with single listo
Следующее
От: Robert Haas
Дата:
Сообщение: [COMMITTERS] pgsql: Fix typo in comment.