You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Add option to control snapshot export to CREATE_REPLICATION_SLOT
We used to export snapshots unconditionally in CREATE_REPLICATION_SLOTin the replication protocol, but several upcoming patches want morecontrol over what happens.Suppress snapshot export in pg_recvlogical, which neither needs nor canuse the exported snapshot. Since snapshot exporting can fail thisimproves reliability.This also paves the way for allowing the creation of replication slotson standbys, which cannot export snapshots because they cannot allocatenew XIDs.Author: Petr Jelinek <petr.jelinek@2ndquadrant.com>