Re: regresssion script hole

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Stefan Kaltenbrunner <stefan(at)kaltenbrunner(dot)cc>, Martijn van Oosterhout <kleptog(at)svana(dot)org>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: regresssion script hole
Date: 2006-06-19 14:16:08
Message-ID: 4496B1A8.6090205@dunslane.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tom Lane wrote:
> Oh, I think I see the problem:
>
> 8.0 pg_regress:
>
> if [ "$unix_sockets" = no ]; then
> postmaster_options="$postmaster_options -c listen_addresses=$hostname"
> else
> postmaster_options="$postmaster_options -c listen_addresses=''"
> fi
>
> 8.1 pg_regress:
>
> if [ "$unix_sockets" = no ]; then
> postmaster_options="$postmaster_options -c listen_addresses=$hostname"
> else
> postmaster_options="$postmaster_options -c listen_addresses="
> fi
>
>
>

Good catch! I'm impressed! This is surely the heart of the problem.

That change (from rev 1.56) clearly needs to be backported to 8.0.

cheers

andrew

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2006-06-19 14:16:18 Re: regresssion script hole
Previous Message Andrew Dunstan 2006-06-19 13:59:08 Re: regresssion script hole