What the hell is transaction wraparound?

from blog select * from depesz;, | ↗ original
Recently someone asked on Slack about what is transaction wraparound. Full answer is a bit too much for slack reply, but I can try to explain it in here. So, every row in PostgreSQL containst two hidden columns: xmin, and xmax. You can see them: =$ CREATE TABLE wrapit (a int4); CREATE TABLE =$ … Continue reading "What the hell is transaction...