Re: [HACKERS] pg_stat_transaction patch

2010-08-09 Thread Joel Jacobson
2010/8/8 Tom Lane t...@sss.pgh.pa.us Itagaki Takahiro itagaki.takah...@gmail.com writes: Accessor functions to get so far collected statistics for the current transaction https://commitfest.postgresql.org/action/patch_view?id=301 The only issue in the patch is too long view and function

Re: [HACKERS] pg_stat_transaction patch

2010-08-08 Thread Tom Lane
Itagaki Takahiro itagaki.takah...@gmail.com writes: Accessor functions to get so far collected statistics for the current transaction https://commitfest.postgresql.org/action/patch_view?id=301 The only issue in the patch is too long view and function names: -

Re: [HACKERS] pg_stat_transaction patch

2010-08-07 Thread Tom Lane
Itagaki Takahiro itagaki.takah...@gmail.com writes: Accessor functions to get so far collected statistics for the current transaction https://commitfest.postgresql.org/action/patch_view?id=301 The latest version of the patch works as expected, and also well-formed. I'll mark the patch to

Re: [HACKERS] pg_stat_transaction patch

2010-07-12 Thread Itagaki Takahiro
Accessor functions to get so far collected statistics for the current transaction https://commitfest.postgresql.org/action/patch_view?id=301 The latest version of the patch works as expected, and also well-formed. I'll mark the patch to Ready for Committer.

Re: [HACKERS] pg_stat_transaction patch

2010-07-12 Thread Magnus Hagander
On Mon, Jul 12, 2010 at 11:36, Itagaki Takahiro itagaki.takah...@gmail.com wrote: Accessor functions to get so far collected statistics for the current transaction https://commitfest.postgresql.org/action/patch_view?id=301 The latest version of the patch works as expected, and also

Re: [HACKERS] pg_stat_transaction patch

2010-06-08 Thread Joel Jacobson
Hi Takahiro, Here is an updated version of the patch. Thanks Magnus H for the help :) 1.4: Ported to head. Updated tests. Removed pg_stat_report. 2010/5/25 Takahiro Itagaki itagaki.takah...@oss.ntt.co.jp Joel Jacobson j...@gluefinance.com wrote: I applied all the changes on 9.0beta

Re: [HACKERS] pg_stat_transaction patch

2010-05-25 Thread Takahiro Itagaki
Joel Jacobson j...@gluefinance.com wrote: I applied all the changes on 9.0beta manually and then it compiled without any assertion failures. I also changed the oids to a different unused range, since the ones I used before had been taken in 9.0beta1. Thanks, but you still need to test

Re: [HACKERS] pg_stat_transaction patch

2010-05-19 Thread Joel Jacobson
Hajimemashite Takahiro, Thanks for your feedback. I applied all the changes on 9.0beta manually and then it compiled without any assertion failures. I also changed the oids to a different unused range, since the ones I used before had been taken in 9.0beta1. There are still some problems

[HACKERS] pg_stat_transaction patch

2010-05-06 Thread Joel Jacobson
Hi, I propose a set of new statistics functions and system views. I need these functions in order to do automated testing of our system, consisting of hundreds of stored procedures in plpgsql. My plan is to develop some additional functions to pgTAP, benefiting from the new system tables I've

Re: [HACKERS] pg_stat_transaction patch

2010-05-06 Thread Alvaro Herrera
Excerpts from Joel Jacobson's message of jue may 06 09:51:41 -0400 2010: Hi, I propose a set of new statistics functions and system views. Hi, Please add your patch to the next commitfest: http://commitfest.postgresql.org Thanks -- -- Sent via pgsql-hackers mailing list

Re: [HACKERS] pg_stat_transaction patch

2010-05-06 Thread Takahiro Itagaki
Joel Jacobson j...@gluefinance.com wrote: I propose a set of new statistics functions and system views. I need these functions in order to do automated testing of our system, consisting of hundreds of stored procedures in plpgsql. My plan is to develop some additional functions to pgTAP,