Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)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