Larry Rosenman <[EMAIL PROTECTED]> writes:
> A "make check" fails at createdb with errors in the postmaster logfile:
> LOG: setsockopt(TCP_NODELAY) failed: Protocol not available

This is coming from

        int            on;

#ifdef    TCP_NODELAY
        on = 1;
        if (setsockopt(port->sock, IPPROTO_TCP, TCP_NODELAY,
                       (char *) &on, sizeof(on)) < 0)
        {
            elog(LOG, "setsockopt(TCP_NODELAY) failed: %m");
            return STATUS_ERROR;
        }
#endif

Better ask them what their problem is with that ...

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Reply via email to