]> granicus.if.org Git - postgresql/commit
Ensure all files created for a single BufFile have the same resource owner.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 1 Nov 2013 20:09:48 +0000 (16:09 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 1 Nov 2013 20:09:48 +0000 (16:09 -0400)
commitbffd1ce92cb4e3e44c3c0ff8cdd4a5a2a8be5e3c
tree5cfa6ade21fff2f9762ee9d9f9eb96c7cac43283
parent45f64f1bbf19283795762df6a54f9aa74fee05f7
Ensure all files created for a single BufFile have the same resource owner.

Callers expect that they only have to set the right resource owner when
creating a BufFile, not during subsequent operations on it.  While we could
insist this be fixed at the caller level, it seems more sensible for the
BufFile to take care of it.  Without this, some temp files belonging to
a BufFile can go away too soon, eg at the end of a subtransaction,
leading to errors or crashes.

Reported and fixed by Andres Freund.  Back-patch to all active branches.
src/backend/storage/file/buffile.c