]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix stale COPY progress during logical replication table sync
authorFujii Masao <fujii@postgresql.org>
Wed, 13 May 2026 02:44:31 +0000 (11:44 +0900)
committerFujii Masao <fujii@postgresql.org>
Wed, 13 May 2026 02:46:17 +0000 (11:46 +0900)
commitd140237dab87557ff0079ab576e1d77d886578c9
treeada5d12b114e11e034f9ff27b1e74d273c36df73
parente95e6e153e7021f9db09459a9b706e3026642b3d
Fix stale COPY progress during logical replication table sync

Previously, pg_stat_progress_copy in the subscriber could continue to show
the initial COPY operation for logical replication table synchronization as
active even after the data copy had finished. The stale progress entry
remained visible until synchronization caught up with the publisher.

This happened because the table synchronization code called BeginCopyFrom()
and CopyFrom(), but failed to call EndCopyFrom() afterward.

This commit fixes the issue by adding the missing EndCopyFrom() call so that
the COPY progress state in the subscriber is cleared as soon as the initial
data copy completes.

Backpatch to all supported branches.

Author: Shinya Kato <shinya11.kato@gmail.com>
Reviewed-by: Fujii Masao <masao.fujii@gmail.com>
Reviewed-by: ChangAo Chen <cca5507@qq.com>
Reviewed-by: Chao Li <li.evan.chao@gmail.com>
Discussion: https://postgr.es/m/CAOzEurQKuy3RiPkd=25PEwEzaqHuGvEOf=X7vaVzhgNjaukYzA@mail.gmail.com
Backpatch-through: 14
src/backend/replication/logical/tablesync.c