"Kevin Grittner" <kevin.gritt...@wicourts.gov> writes:
> Would it be too weird to do something like this for each?:
 
> -       write(fileno(stderr), line, len);
> +       rc = write(fileno(stderr), line, len);
> +       if (rc >= 0 && rc != len)
> +       {
> +           Assert(false);
> +           return;
> +       }

I don't think the assert is a good idea.  If it ever did happen, that
would promote the problem from "corrupted data in the log" to "database
crash".

                        regards, tom lane

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to