Re: droped out precise time calculations in src/interfaces/libpq/fe-connect.c - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: droped out precise time calculations in src/interfaces/libpq/fe-connect.c
Date
Msg-id 200210140548.g9E5mf826940@candle.pha.pa.us
Whole thread Raw
In response to Re: droped out precise time calculations in src/interfaces/libpq/fe-connect.c  (Joe Conway <mail@joeconway.com>)
List pgsql-hackers
Joe Conway wrote:
> Bruce Momjian wrote:
> > So, this is what needs to be dealt with to get it working.
> > 
> 
> More to the point, why is sub-second precision needed in this function? 
> Connection timeout is given to us in whole seconds (1.205 code, i.e. prior to 
> the patch in question):
> 
>       remains.tv_sec = atoi(conn->connect_timeout);
>       if (!remains.tv_sec)
>       {
>           conn->status = CONNECTION_BAD;
>           return 0;
>       }
>       remains.tv_usec = 0;
>       rp = &remains;
> 
> So there is no way to bail out prior to one second. Once you accept that the 
> timeout is >= 1 second, and in whole second increments, why does it need 
> sub-second resolution?

It could be argued that our seconds are not as exact as they could be
with subsecond timing.  Not sure it is worth it, but I can see the
point.  I would like to remove the tv_usec test because it suggests we
are doing something with microseconds when we are not.  Also, should we
switch to a simple time() call, rather than gettimeofday()?

--  Bruce Momjian                        |  http://candle.pha.pa.us pgman@candle.pha.pa.us               |  (610)
359-1001+  If your life is a hard drive,     |  13 Roberts Road +  Christ can be your backup.        |  Newtown Square,
Pennsylvania19073
 


pgsql-hackers by date:

Previous
From: Joe Conway
Date:
Subject: Re: droped out precise time calculations in src/interfaces/libpq/fe-connect.c
Next
From: Anuradha Ratnaweera
Date:
Subject: Re: Peer to peer replication of Postgresql databases