pgsql: Remove unnecessary break in pg_logical_replication_slot_advance(

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Remove unnecessary break in pg_logical_replication_slot_advance(
Дата
Msg-id E1qujeV-001tdY-0F@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Remove unnecessary break in pg_logical_replication_slot_advance()

pg_logical_replication_slot_advance() included a break condition to stop
when a targeted LSN is reached, when processing a series of WAL records
with XLogReadRecord().  Since 38a957316d7e, it matched with the check of
its main while loop.  This condition saved from an extra CFI check,
actually pointless, so let's remove this condition and simplify the
code.

In passing, fix an incorrect comment.

Author: Bharath Rupireddy
Reviewed-by: Tom Lane, Gurjeet Singh
Discussion: https://postgr.es/m/CALj2ACWfGDLQ2cy7ZKwxnJqbDkO6Yvqqrqxne5ZN4HYm=PRTGg@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/replication/slotfuncs.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)


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

Предыдущее
От: Michael Paquier
Дата:
Сообщение: pgsql: doc: Fix some grammar and inconsistent tags
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Refactor parse_filename_for_nontemp_relation to parse more.