pgsql: Fix correctness issue with computation of FPI size in WAL stats

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Fix correctness issue with computation of FPI size in WAL stats
Дата
Msg-id E1vDtpK-003zyI-1a@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix correctness issue with computation of FPI size in WAL stats

XLogRecordAssemble() may be called multiple times before inserting a
record in XLogInsertRecord(), and the amount of FPIs generated inside
a record whose insertion is attempted multiple times may vary.

The logic added in f9a09aa29520 touched directly pgWalUsage in
XLogRecordAssemble(), meaning that it could be possible for pgWalUsage
to be incremented multiple times for a single record.  This commit
changes the code to use the same logic as the number of FPIs added to a
record, where XLogRecordAssemble() returns this information and feeds it
to XLogInsertRecord(), updating pgWalUsage only when a record is
inserted.

Reported-by: Shinya Kato <shinya11.kato@gmail.com>
Discussion: https://postgr.es/m/CAOzEurSiSr+rusd0GzVy8Bt30QwLTK=ugVMnF6=5WhsSrukvvw@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d3111cb753e81a64c1a4417ed6de98a90a04432a

Modified Files
--------------
src/backend/access/transam/xlog.c       |  2 ++
src/backend/access/transam/xloginsert.c | 13 ++++++++-----
src/include/access/xlog.h               |  1 +
3 files changed, 11 insertions(+), 5 deletions(-)


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