Re: Generate call graphs in run-time - Mailing list pgsql-hackers

From Kevin Grittner
Subject Re: Generate call graphs in run-time
Date
Msg-id 4F0B0BE60200002500044618@gw.wicourts.gov
Whole thread Raw
In response to Generate call graphs in run-time  (Joel Jacobson <joel@gluefinance.com>)
List pgsql-hackers
Joel Jacobson <joel@gluefinance.com> wrote:
> The perl script pg_callgraph.pl replaces the oids with actual
> function names before generating the call graphs using GraphVIz:
Regardless of anything else, I think you need to allow for function
overloading.  You could cover that, I think, by replacing this
literal in your perl script:
"SELECT oid, proname FROM pg_proc"
with this literal:
"SELECT oid, oid::regprocedure::text FROM pg_proc"
-Kevin


pgsql-hackers by date:

Previous
From: Andrew Dunstan
Date:
Subject: intermittent ECPG regression failure on Windows 7
Next
From: Joel Jacobson
Date:
Subject: Generate call graphs in run-time