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
|
2
|
3
|
4
|
5
|
6
(1) |
7
|
8
(2) |
9
|
10
|
11
|
12
|
13
|
14
|
15
(3) |
16
(2) |
17
(4) |
18
(5) |
19
|
20
|
21
(2) |
22
(1) |
23
|
24
(4) |
25
(1) |
26
|
27
|
28
(2) |
29
(1) |
30
|
|
|
|
From: Michael P. <mic...@us...> - 2011-11-24 23:35:37
|
Project "Postgres-XC". The branch, master has been updated via eaec063560d1d5a21a44fa1044a56bc3149dd542 (commit) from 21cde3261299db2b1d468b767e4e86f3ecedf45f (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=eaec063560d1d5a21a44fa1044a56bc3149dd542 commit eaec063560d1d5a21a44fa1044a56bc3149dd542 Author: Michael P <mic...@us...> Date: Fri Nov 25 08:38:36 2011 +0900 Remove debug flag from GTM makefile M src/gtm/Makefile.global ----------------------------------------------------------------------- Summary of changes: src/gtm/Makefile.global | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-24 23:30:19
|
Project "Postgres-XC". The branch, master has been updated via 21cde3261299db2b1d468b767e4e86f3ecedf45f (commit) from 3c1ebb15603a6d52dd84cae8afd019a5ee37d2fd (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=21cde3261299db2b1d468b767e4e86f3ecedf45f commit 21cde3261299db2b1d468b767e4e86f3ecedf45f Author: Michael P <mic...@us...> Date: Fri Nov 25 08:30:55 2011 +0900 Addition of system function pgxc_pool_check This new system function is used to check connection information consistency cached in pooler with pgxc_node. The information checked for consistency is node Oid, connection port and connection host. This function returns a boolean depending on connection data being consistent or not. M doc-xc/src/sgml/func.sgmlin M src/backend/pgxc/nodemgr/nodemgr.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/pgxc/pool/poolmgr.c M src/backend/pgxc/pool/poolutils.c M src/backend/utils/init/postinit.c M src/include/catalog/pg_proc.h M src/include/pgxc/nodemgr.h M src/include/pgxc/poolmgr.h M src/include/pgxc/poolutils.h M src/include/utils/builtins.h ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/func.sgmlin | 39 +++++++++++ src/backend/pgxc/nodemgr/nodemgr.c | 36 +++++----- src/backend/pgxc/pool/pgxcnode.c | 3 +- src/backend/pgxc/pool/poolmgr.c | 123 +++++++++++++++++++++++++++++++++++- src/backend/pgxc/pool/poolutils.c | 20 ++++++- src/backend/utils/init/postinit.c | 4 +- src/include/catalog/pg_proc.h | 4 + src/include/pgxc/nodemgr.h | 4 +- src/include/pgxc/poolmgr.h | 3 + src/include/pgxc/poolutils.h | 4 + src/include/utils/builtins.h | 5 ++ 11 files changed, 221 insertions(+), 24 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-24 04:09:59
|
Project "Postgres-XC". The branch, master has been updated via 3c1ebb15603a6d52dd84cae8afd019a5ee37d2fd (commit) from 36554b4952780f1c11af2f50473121b7d7fee1f9 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=3c1ebb15603a6d52dd84cae8afd019a5ee37d2fd commit 3c1ebb15603a6d52dd84cae8afd019a5ee37d2fd Author: Michael P <mic...@us...> Date: Thu Nov 24 12:36:28 2011 +0900 Improve connection info initialization for backend session and pooler Connection information is obtained directly from XC-catalogs at pooler start-up by initializing pooler process as a standalone process. This deeply simplifies connection information setting in XC pooler by limiting the messages sent between processes. Postgres childs now use a common API with pooler to initialize remote node handles the same way as pooler using system cache. M src/backend/bootstrap/bootstrap.c M src/backend/commands/prepare.c M src/backend/nodes/list.c M src/backend/pgxc/locator/locator.c M src/backend/pgxc/nodemgr/nodemgr.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/pgxc/pool/poolmgr.c M src/backend/pgxc/pool/poolutils.c M src/backend/rewrite/rewriteHandler.c M src/backend/storage/ipc/procarray.c M src/backend/storage/lmgr/proc.c M src/backend/utils/init/miscinit.c M src/backend/utils/init/postinit.c M src/include/miscadmin.h M src/include/pgxc/nodemgr.h M src/include/pgxc/poolmgr.h M src/include/storage/proc.h ----------------------------------------------------------------------- Summary of changes: src/backend/bootstrap/bootstrap.c | 6 + src/backend/commands/prepare.c | 2 +- src/backend/nodes/list.c | 4 +- src/backend/pgxc/locator/locator.c | 2 +- src/backend/pgxc/nodemgr/nodemgr.c | 136 +++++++++++++++++- src/backend/pgxc/plan/planner.c | 2 +- src/backend/pgxc/pool/execRemote.c | 1 + src/backend/pgxc/pool/pgxcnode.c | 208 ++------------------------- src/backend/pgxc/pool/poolmgr.c | 260 ++++++++++++++-------------------- src/backend/pgxc/pool/poolutils.c | 1 + src/backend/rewrite/rewriteHandler.c | 2 +- src/backend/storage/ipc/procarray.c | 8 + src/backend/storage/lmgr/proc.c | 9 ++ src/backend/utils/init/miscinit.c | 10 ++ src/backend/utils/init/postinit.c | 8 + src/include/miscadmin.h | 1 + src/include/pgxc/nodemgr.h | 8 + src/include/pgxc/poolmgr.h | 15 +-- src/include/storage/proc.h | 5 + 19 files changed, 317 insertions(+), 371 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-24 01:24:10
|
Project "Postgres-XC". The branch, master has been updated via 36554b4952780f1c11af2f50473121b7d7fee1f9 (commit) from accc9a1df6db46342bdb87c6368892358e6e0a56 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=36554b4952780f1c11af2f50473121b7d7fee1f9 commit 36554b4952780f1c11af2f50473121b7d7fee1f9 Author: Michael P <mic...@us...> Date: Thu Nov 24 10:26:34 2011 +0900 Correction for pgbench, aggregates are correctly supported by XC M contrib/pgbench/pgbench.c ----------------------------------------------------------------------- Summary of changes: contrib/pgbench/pgbench.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |