How do I enable the PostgreSQL function profiler?

前端 未结 1 982
北海茫月
北海茫月 2021-02-01 09:17

This took me a while to figure out and I found the answer on a foreign-language wiki a number of weeks ago, and it was very helpful, so I thought I would share.

相关标签:
1条回答
  • 2021-02-01 09:33

    On PostgreSQL 8.3 on Win32, the profiling plugin is installed by default, but not loaded. Just execute this SQL:

    LOAD '$libdir/plugins/plugin_profiler.dll';
    SET plpgsql.profiler_tablename = 'bazzybar';
    

    ...and then when you want to profile some code,

    drop table if exists bazzybar; -- reset the profiling stats
    select my_function_here('lala',123);  -- this line and variations as many times as you deem fit
    select * from bazzybar; -- show the time spent on each line of your function
    
    0 讨论(0)
提交回复
热议问题