Thread: pgsql: Fix bug in temporary file management with subtransactions.

pgsql: Fix bug in temporary file management with subtransactions.

From
heikki@postgresql.org (Heikki Linnakangas)
Date:
Log Message:
-----------
Fix bug in temporary file management with subtransactions. A cursor opened
in a subtransaction stays open even if the subtransaction is aborted, so
any temporary files related to it must stay alive as well. With the patch,
we use ResourceOwners to track open temporary files and don't automatically
close them at subtransaction end (though in the normal case temporary files
are registered with the subtransaction resource owner and will therefore be
closed).

At end of top transaction, we still check that there's no temporary files
marked as close-at-end-of-transaction open, but that's now just a debugging
cross-check as the resource owner cleanup should've closed them already.

Tags:
----
REL8_2_STABLE

Modified Files:
--------------
    pgsql/src/backend/storage/file:
        fd.c (r1.131 -> r1.131.2.1)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/file/fd.c?r1=1.131&r2=1.131.2.1)
    pgsql/src/backend/utils/resowner:
        resowner.c (r1.22 -> r1.22.2.1)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/resowner/resowner.c?r1=1.22&r2=1.22.2.1)
    pgsql/src/include/utils:
        resowner.h (r1.9 -> r1.9.2.1)
        (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/utils/resowner.h?r1=1.9&r2=1.9.2.1)