Win32上のPostgreSQL8.3では、プロファイリングプラグインはデフォルトでインストールされますが、ロードされません。このSQLを実行するだけです:
LOAD '$libdir/plugins/plugin_profiler.dll';
SET plpgsql.profiler_tablename = 'bazzybar';
...そして、コードのプロファイルを作成する場合は、
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