]> granicus.if.org Git - postgresql/commit
Try to acquire relation locks in RangeVarGetRelid.
authorRobert Haas <rhaas@postgresql.org>
Sat, 9 Jul 2011 02:19:30 +0000 (22:19 -0400)
committerRobert Haas <rhaas@postgresql.org>
Sat, 9 Jul 2011 02:19:30 +0000 (22:19 -0400)
commit4240e429d0c2d889d0cda23c618f94e12c13ade7
tree306e1fac6085c29b55287f383ce8831d947e1312
parent9d522cb35d8b4f266abadd0d019f68eb8802ae05
Try to acquire relation locks in RangeVarGetRelid.

In the previous coding, we would look up a relation in RangeVarGetRelid,
lock the resulting OID, and then AcceptInvalidationMessages().  While
this was sufficient to ensure that we noticed any changes to the
relation definition before building the relcache entry, it didn't
handle the possibility that the name we looked up no longer referenced
the same OID.  This was particularly problematic in the case where a
table had been dropped and recreated: we'd latch on to the entry for
the old relation and fail later on.  Now, we acquire the relation lock
inside RangeVarGetRelid, and retry the name lookup if we notice that
invalidation messages have been processed meanwhile.  Many operations
that would previously have failed with an error in the presence of
concurrent DDL will now succeed.

There is a good deal of work remaining to be done here: many callers
of RangeVarGetRelid still pass NoLock for one reason or another.  In
addition, nothing in this patch guards against the possibility that
the meaning of an unqualified name might change due to the creation
of a relation in a schema earlier in the user's search path than the
one where it was previously found.  Furthermore, there's nothing at
all here to guard against similar race conditions for non-relations.
For all that, it's a start.

Noah Misch and Robert Haas
26 files changed:
src/backend/access/heap/heapam.c
src/backend/catalog/aclchk.c
src/backend/catalog/index.c
src/backend/catalog/namespace.c
src/backend/commands/alter.c
src/backend/commands/indexcmds.c
src/backend/commands/lockcmds.c
src/backend/commands/sequence.c
src/backend/commands/tablecmds.c
src/backend/commands/trigger.c
src/backend/commands/vacuum.c
src/backend/parser/parse_relation.c
src/backend/parser/parse_type.c
src/backend/rewrite/rewriteDefine.c
src/backend/rewrite/rewriteRemove.c
src/backend/storage/ipc/sinval.c
src/backend/storage/lmgr/lmgr.c
src/backend/tcop/utility.c
src/backend/utils/adt/acl.c
src/backend/utils/adt/regproc.c
src/backend/utils/adt/ruleutils.c
src/include/catalog/namespace.h
src/include/commands/trigger.h
src/include/rewrite/rewriteRemove.h
src/include/storage/sinval.h
src/pl/plpgsql/src/pl_comp.c