←back to thread

366 points virtualwhys | 1 comments | | HN request time: 0.201s | source
Show context
derefr ◴[] No.41897751[source]
Question: is storing full new row-tuple versions something fundamental to Postgres as a whole, or is it just a property of the default storage engine / “table access method”?
replies(2): >>41897917 #>>41898523 #
1. paulddraper ◴[] No.41897917[source]
You could store partial tuples without disrupting the interface.

Though full tuples is pretty fundamental to the underlying implementation....MVCC, VACUUM, etc. It'd be a massive change to say the least.