Re: serializable read only deferrable
Kevin Grittner <kevin.grittner@wicourts.gov>
From: "Kevin Grittner" <Kevin.Grittner@wicourts.gov>
To: "Tom Lane" <tgl@sss.pgh.pa.us>
Cc: <drkp@csail.mit.edu>,<pgsql-hackers@postgresql.org>
Date: 2010-12-08T22:49:07Z
Lists: pgsql-hackers
Attachments
- read-only-3.patch (text/plain) patch
Tom Lane <tgl@sss.pgh.pa.us> wrote:
> GUC_complaint_elevel() can return DEBUGn, and in fact will do so in
> the PGC_S_OVERRIDE case. I'm thinking that the code ought to look
> more like
>
> /* source == PGC_S_OVERRIDE means do it anyway, eg at xact abort
*/
> if (source != PGC_S_OVERRIDE)
> {
> check and report all the complaint-worthy cases;
> }
Done. Version 3 attached. I think I've covered all bases now.
-Kevin