Re: SetQuerySnapshot() for utility statements

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Mikheev, Vadim" <vmikheev(at)SECTORBASE(dot)COM>
Cc: "'pgsql-hackers(at)hub(dot)org'" <pgsql-hackers(at)hub(dot)org>
Subject: Re: SetQuerySnapshot() for utility statements
Date: 2000-10-19 15:04:54
Message-ID: 9108.971967894@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

"Mikheev, Vadim" <vmikheev(at)SECTORBASE(dot)COM> writes:
>> Seems to me this is very broken. Isn't a query snapshot needed for
>> any utility command that might do database accesses?

> Not needed. We don't support multi-versioning for schema operations.

No? Seems to me we're almost there. Look for instance at that DROP
USER bug I just fixed: it was failing because it wasn't careful to make
sure that during "DROP USER foo,bar", the loop iteration to delete user
bar would see the changes the first loop iteration had made. So even
though we use a lot of table-level locking rather than true MVCC
behavior for schema changes, ISTM that we still have to play by all the
rules when it comes to tuple visibility. In particular I suspect we
ought to be using standard query snapshot behavior...

> More of that, sometimes it would be better to read *dirty* data from
> system tables - so, no snapshot required.

There may be a small number of places like that, but for generic utility
operations like CREATE/DROP USER, I don't see that this is a good idea.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Vince Vielhaber 2000-10-19 15:13:03 Re: Re: pg_dump docs
Previous Message Peter Eisentraut 2000-10-19 14:48:35 Re: Solaris FAQ