Trying to profile my function, but...

From: Ericson Smith <eric(at)briefme(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Trying to profile my function, but...
Date: 2003-05-14 17:43:33
Message-ID: 1052934212.11784.15.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi,

I'm trying to figure out how long my function is taking to run, but it
keeps returning identical start and stop times. Here's a segment...

seg := date_part(''second'', now())::float;

FOR rec IN SELECT qcounter FROM tlogs_queue LOOP
blah, blah, blah
END LOOP;

secs := date_part(''second'', now())::float;

RAISE NOTICE ''Start %'', seg;
RAISE NOTICE ''End %'', secs;

seg and secs are the exact same number. Any pointers would be much
appreciated.

- Ericson Smith
eric(at)did-it(dot)com
http://www.did-it.com

--
Ericson Smith <eric(at)briefme(dot)com>

Browse pgsql-admin by date

  From Date Subject
Next Message Andrew Sullivan 2003-05-14 17:46:06 Re: database running slow
Previous Message Bruno Wolff III 2003-05-14 17:35:35 Re: Grant Question