]> granicus.if.org Git - postgresql/commit
Fix Assert failure when a fastpath function call is attempted inside an
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 11 Jun 2006 15:49:46 +0000 (15:49 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 11 Jun 2006 15:49:46 +0000 (15:49 +0000)
commite2d201ecdb7f21055786753f892c75195addc5fd
tree834cd4b88cc9f26e5095acc114229dda25415323
parent3066e8ab03ed594d0fa30c0080839adbcb4620d6
Fix Assert failure when a fastpath function call is attempted inside an
already-aborted transaction block.  GetSnapshotData throws an Assert if
not in a valid transaction; hence we mustn't attempt to set a snapshot
for the function until after checking for aborted transaction.  This is
harmless AFAICT if Asserts aren't enabled (GetSnapshotData will compute
a bogus snapshot, but it doesn't matter since HandleFunctionRequest will
throw an error shortly anywy).  Hence, not a major bug.

Along the way, add some ability to log fastpath calls when statement
logging is turned on.  This could probably stand to be improved further,
but not logging anything is clearly undesirable.

Backpatched as far as 8.0; bug doesn't exist before that.
src/backend/tcop/fastpath.c
src/backend/tcop/postgres.c