我无法在pgAdmin4中启用调试。我执行了以下操作: 1.检查$ libdir 2.检查plugin_debugger.dll的locatin 3.更改了postgresql.conf 并且数据库不会重新启动。
有什么建议我做错了吗?
答案 0 :(得分:1)
1) Download Postgres installer from EnterpriseDB website, they bundle debugger plugin.
2) Make an entry in the postgresql.conf
file,
On Unix like systems,
shared_preload_libraries = '$libdir/plugin_debugger.so'
On Windows systems,
shared_preload_libraries = '$libdir/plugin_debugger.dll'
3) Restart your Postgres instance.
4) You have to create pldbgapi
Extension in your maintenance database.
Refer given steps,
Click on Save
button.
5) Goto your plpgsql
function and right click on it, you will see "Debug" option.