Re: [HACKERS] pg_stat_transaction patch

2010-08-09 Thread Joel Jacobson
2010/8/8 Tom Lane > Itagaki Takahiro 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: > > - pg_stat_transacti

Re: [HACKERS] pg_stat_transaction patch

2010-08-08 Thread Tom Lane
Itagaki Takahiro 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: > - pg_stat_transaction_user_tables (31 chars) > - p

Re: [HACKERS] pg_stat_transaction patch

2010-08-07 Thread Tom Lane
Itagaki Takahiro 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 "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 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 well-formed. > I'll mark the p

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". http://archives.postgresql.org/messa

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 > > Joel Jacobson wrote: > > > I applied all the changes on 9.0beta manually and then it compiled > without > > any as

Re: [HACKERS] pg_stat_transaction patch

2010-05-25 Thread Takahiro Itagaki
Joel Jacobson 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 your patch: - You

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 though

Re: [HACKERS] pg_stat_transaction patch

2010-05-06 Thread Takahiro Itagaki
Joel Jacobson 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, benefiting from >

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 (pgsql-hackers@

[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 add