This is included in the EnterpriseDB distribution. You can download it at pgFoundry. here's the link
Git repo is also available.
git clone git://git.postgresql.org/git/pldebugger.git cd pldebugger export USE_PGXS=1 make make install
Edit postgresql.conf
vim /path/to/postgresql.conf
add:
shared_preload_libraries = 'plugin_debugger'
Restart postgres, connect to db and call:
CREATE EXTENSION pldbgapi;
I use it in postgreql 9.5, works well.
shcherbak Feb 04 '17 at 21:45 2017-02-04 21:45
source share