Fading Coder

One Final Commit for the Last Sprint

Inspecting PostgreSQL Logical Replication Subscription Progress

Subscriber-side visibility Table-level progress: pg_subscription_rel Table synchronization state for each subscription is exposed through pg_subscription_rel. Joining with pg_subscription and pg_class makes the output easier to read. SELECT s.subname, c.relname AS table_name, r.srsubstate, r.srsubls...