Sean Chittenden <sean@chittenden.org> writes:
> -typedef void (*PQnoticeProcessor) (void *arg, const char *message);
> +typedef void (*PQnoticeProcessor) (void *arg, const char *message, ...);
This isn't going to happen. It would break every existing application
that uses a notice processor, since they are not expecting to have to
treat the message as a format string (quite aside from your unportable
assumption that this doesn't change the function's ABI).
regards, tom lane