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
CreateReplicationSlot() and DropReplicationSlot() were not cleaning upthe query buffer in some cases (mostly error conditions) which meant asmall leak. Not generally an issue as the error case would result in animmediate exit, but not difficult to fix either and reduces the numberof false positives from code analyzers.In passing, also add appropriate PQclear() calls to RunIdentifySystem().Pointed out by Coverity.