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
Awhile back I added some code to StartupCLOG() to forcibly zero out
the remainder of the current clog page during system startup. Whilethis was a good idea, it turns out the code fails if nextXid isexactly at a page boundary, because we won't have created the "current"clog page yet in that case. Since the page will be correctly zeroedwhen we execute the first transaction on it, the solution is just todo nothing when exactly at a page boundary. Per trouble report fromDave Hartwig.