You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(28) |
Jun
(12) |
Jul
(11) |
Aug
(12) |
Sep
(5) |
Oct
(19) |
Nov
(14) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(18) |
Feb
(30) |
Mar
(115) |
Apr
(89) |
May
(50) |
Jun
(44) |
Jul
(22) |
Aug
(13) |
Sep
(11) |
Oct
(30) |
Nov
(28) |
Dec
(39) |
2012 |
Jan
(38) |
Feb
(18) |
Mar
(43) |
Apr
(91) |
May
(108) |
Jun
(46) |
Jul
(37) |
Aug
(44) |
Sep
(33) |
Oct
(29) |
Nov
(36) |
Dec
(15) |
2013 |
Jan
(35) |
Feb
(611) |
Mar
(5) |
Apr
(55) |
May
(30) |
Jun
(28) |
Jul
(458) |
Aug
(34) |
Sep
(9) |
Oct
(39) |
Nov
(22) |
Dec
(32) |
2014 |
Jan
(16) |
Feb
(16) |
Mar
(42) |
Apr
(179) |
May
(7) |
Jun
(6) |
Jul
(9) |
Aug
|
Sep
(4) |
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
(1) |
2
|
3
|
4
|
5
|
6
(4) |
7
(1) |
8
(6) |
9
(3) |
10
|
11
|
12
|
13
(1) |
14
(4) |
15
(1) |
16
(1) |
17
|
18
|
19
|
20
|
21
|
22
(8) |
23
|
24
|
25
|
26
(2) |
27
(3) |
28
(1) |
29
(6) |
30
(1) |
31
|
From: Koichi S. <koi...@us...> - 2012-03-30 00:24:30
|
Project "Postgres-XC". The branch, master has been updated via 5c3f03ccffa86b775e1d4d9be668accebaa2e4c9 (commit) from 8427ea322eabca18fa21f286c2284aa4ffa105a8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5c3f03ccffa86b775e1d4d9be668accebaa2e4c9 commit 5c3f03ccffa86b775e1d4d9be668accebaa2e4c9 Author: Koichi Suzuki <koi...@gm...> Date: Fri Mar 30 09:22:18 2012 +0900 Adds pgxc_clean utility. pgxc_clean checks all the two phase commit status to find any outstanding ones, then cleans up them to keep transaction status consistent throughout Postgres-XC database cluster. M doc-xc/src/sgml/ref/allfiles.sgmlin M doc-xc/src/sgml/reference.sgmlin M src/Makefile A src/pgxc/bin/pgxc_clean/Makefile A src/pgxc/bin/pgxc_clean/pgxc_clean.c A src/pgxc/bin/pgxc_clean/pgxc_clean.h A src/pgxc/bin/pgxc_clean/pgxc_clean_test.sh A src/pgxc/bin/pgxc_clean/txninfo.c A src/pgxc/bin/pgxc_clean/txninfo.h ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/allfiles.sgmlin | 3 + doc-xc/src/sgml/reference.sgmlin | 3 + src/Makefile | 3 +- src/pgxc/bin/pgxc_clean/Makefile | 46 ++ src/pgxc/bin/pgxc_clean/pgxc_clean.c | 1043 ++++++++++++++++++++++++++++ src/pgxc/bin/pgxc_clean/pgxc_clean.h | 13 + src/pgxc/bin/pgxc_clean/pgxc_clean_test.sh | 85 +++ src/pgxc/bin/pgxc_clean/txninfo.c | 338 +++++++++ src/pgxc/bin/pgxc_clean/txninfo.h | 83 +++ 9 files changed, 1616 insertions(+), 1 deletions(-) create mode 100644 src/pgxc/bin/pgxc_clean/Makefile create mode 100644 src/pgxc/bin/pgxc_clean/pgxc_clean.c create mode 100644 src/pgxc/bin/pgxc_clean/pgxc_clean.h create mode 100644 src/pgxc/bin/pgxc_clean/pgxc_clean_test.sh create mode 100644 src/pgxc/bin/pgxc_clean/txninfo.c create mode 100644 src/pgxc/bin/pgxc_clean/txninfo.h hooks/post-receive -- Postgres-XC |