From: | ITAGAKI Takahiro <itagaki(dot)takahiro(at)oss(dot)ntt(dot)co(dot)jp> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Simon Riggs <simon(at)2ndquadrant(dot)com>, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: [PATCHES] WIP: executor_hook for pg_stat_statements |
Date: | 2008-07-16 02:49:13 |
Message-ID: | 20080716104154.7860.52131E4D@oss.ntt.co.jp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-patches |
Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> >> That raises the question of whether we should have ExecutorStart() and
> >> ExecutorEnd() hooks as well, to round things off.
> > Yeah, and also ExecutorRewind() hook.
>
> I'm happy to put in hooks that there's a demonstrated need for,
Hmm, ok. I just want to hook ExecutorRun, so I'll just propose to
add ExecutorRun_hook now.
The attached patch is the proposal. It adds two global symbols:
* ExecutorRun_hook - replacing behavior of ExecutorRun()
* standard_ExecutorRun() - default behavior of ExecutorRun()
And also modifies one funtion:
* ExecuteQuery() - It passes prepared query's text to portal so that
the prepared query's text is available at the executor level.
This change is almost free because it copys only string pointer,
not the string buffer.
The attached archive pg_stat_statements.tar.gz is a demonstration of
ExecutorRun_hook. It collect per-statement statistics of number of planned
and executed, plan cost, execution time, and buffer gets/reads/writes.
I'll happy if the addin will be accepted as contrib module, but if it is
not suitable, I'm willing to move it to pgFoundry.
Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center
Attachment | Content-Type | Size |
---|---|---|
ExecutorRun_hook.patch | application/octet-stream | 2.4 KB |
pg_stat_statements.tar.gz | application/octet-stream | 7.6 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Decibel! | 2008-07-16 02:53:44 | Re: Lookup penalty for VARIADIC patch |
Previous Message | David Fetter | 2008-07-16 01:57:38 | Re: [PATCHES] WITH RECURSIVE updated to CVS TIP |
From | Date | Subject | |
---|---|---|---|
Next Message | Tatsuo Ishii | 2008-07-16 04:57:04 | Re: [PATCHES] WITH RECURSIVE updated to CVS TIP |
Previous Message | David Fetter | 2008-07-16 01:57:38 | Re: [PATCHES] WITH RECURSIVE updated to CVS TIP |