]> granicus.if.org Git - postgresql/commit
Fix Assert failure in PushOverrideSearchPath when trying to restore a search
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 13 Aug 2010 16:27:18 +0000 (16:27 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 13 Aug 2010 16:27:18 +0000 (16:27 +0000)
commitd2945deefb9a491cd2d015aeb893f24beb5e97cb
treefbd912fa3bece79c859743f2480adfdb0dd7f846
parent361cadb224ffdd99ade5b9c4c21c042c3cd24059
Fix Assert failure in PushOverrideSearchPath when trying to restore a search
path that specifies useTemp, but there is no active temp schema in the
current session.  (This can happen if the path was saved during a transaction
that created a temp schema and was later rolled back.)  For existing callers
it's sufficient to ignore the useTemp flag in this case, though we might
later want to offer an option to create a fresh temp schema.  So far as I can
tell this is just an Assert failure: in a non-assert build, the code would
push a zero onto the new search path, which is useless but not very harmful.
Per bug report from Heikki.

Back-patch to 8.3; prior versions don't have this code.
src/backend/catalog/namespace.c
src/backend/utils/cache/plancache.c