Re: Bug? Concurrent COMMENT ON and DROP object

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Bug? Concurrent COMMENT ON and DROP object
Дата
Msg-id 1278471501-sup-7989@alvh.no-ip.org
обсуждение исходный текст
Ответ на Re: Bug? Concurrent COMMENT ON and DROP object  (Robert Haas <robertmhaas@gmail.com>)
Ответы Re: Bug? Concurrent COMMENT ON and DROP object  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
Excerpts from Robert Haas's message of mar jul 06 22:31:40 -0400 2010:
> On Tue, Jul 6, 2010 at 10:18 PM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> > Robert Haas <robertmhaas@gmail.com> writes:
> >> Obviously not.  We don't need to acquire an AccessExclusiveLock to
> >> comment on an object - just something that will CONFLICT WITH an
> >> AccessExclusiveLock.  So, use the same locking rules, perhaps, but
> >> take a much weaker lock, like AccessShareLock.
> >
> > Well, it probably needs to be a self-conflicting lock type, so that
> > two COMMENTs on the same object can't run concurrently.  But I agree
> > AccessExclusiveLock is too strong: that implies locking out read-only
> > examination of the object, which we don't want.
> 
> Hmm... so, maybe ShareUpdateExclusiveLock?

So COMMENT ON will conflict with (auto)vacuum?  Seems a bit weird ...


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: Bug? Concurrent COMMENT ON and DROP object
Следующее
От: Takahiro Itagaki
Дата:
Сообщение: Re: Does mbutils.c really need to use L'\0' ?