Re: 7.4.2 Regression tests: test stats loops indefinately... - Mailing list pgsql-general

From Manfred Koizar
Subject Re: 7.4.2 Regression tests: test stats loops indefinately...
Date
Msg-id 64fd90tqsoue4mljbug4og6k5kksguq608@email.aon.at
Whole thread Raw
In response to 7.4.2 Regression tests: test stats loops indefinately...  (Vikram Kulkarni <vkulkarn@brownforces.org>)
Responses Re: 7.4.2 Regression tests: test stats loops indefinately...  (Vikram Kulkarni <vkulkarn@brownforces.org>)
List pgsql-general
On Mon, 3 May 2004 14:17:11 -0400, Vikram Kulkarni
<vkulkarn@brownforces.org> wrote:
>the end of results/stats.out is:
>-- let stats collector catch up
>SELECT sleep('0:0:2'::interval);
>
>everything up till and including that matches expected/stats.out... but
>the test simply stalls there. Unless I manuall kill the process, the
>postmaster simply keeps soaking up CPU time indefinately.

Please try this interactively in a psql session:

CREATE FUNCTION sleep(interval) RETURNS integer AS '
DECLARE
  endtime timestamp;
BEGIN
  endtime := timeofday()::timestamp + $1;
  WHILE timeofday()::timestamp < endtime LOOP
  END LOOP;
  RETURN 0;
END;
' LANGUAGE 'plpgsql';

SELECT timeofday();
SELECT timeofday()::timestamp;
-- wait a few seconds ...
SELECT timeofday()::timestamp;
SELECT timeofday()::timestamp + '0:0:2'::interval;

SELECT sleep('0:0:2'::interval);

... and tell us what happens.


pgsql-general by date:

Previous
From: Ericson Smith
Date:
Subject: Re: XID Data Types
Next
From: Marvin McNett
Date:
Subject: insert through function only