Re: sleep? - Mailing list pgsql-admin

From Michael Fuhr
Subject Re: sleep?
Date
Msg-id 20050821224133.GB31904@winnie.fuhr.org
Whole thread Raw
In response to sleep?  (Don Drake <dondrake@gmail.com>)
List pgsql-admin
On Sun, Aug 21, 2005 at 02:22:25PM -0500, Don Drake wrote:
> Is there a sleep function in plpgsql? I need to wait a period time (60
> seconds) in a while loop.

SELECT oid::regprocedure
FROM pg_proc
WHERE proname ILIKE '%sleep%' OR prosrc ILIKE '%sleep%';
 oid
-----
(0 rows)

When I need a sleep function on the server side I write one in C,
PL/Perl, PL/Tcl, PL/Python, etc.  PostgreSQL 8.0 and later have an
internal pg_usleep() function but it's not exposed to the user.  I
asked about exposing it recently but didn't see any replies (it was
in response to a message in pgsql-committers; I suppose I should
have asked in pgsql-hackers instead).

--
Michael Fuhr

pgsql-admin by date:

Previous
From: Guido Barosio
Date:
Subject: Re: sleep?
Next
From: "Greg Sabino Mullane"
Date:
Subject: Re: sleep?