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
(2) |
3
|
4
|
5
|
6
(1) |
7
(1) |
8
(3) |
9
|
10
|
11
|
12
(2) |
13
(3) |
14
(2) |
15
(7) |
16
(4) |
17
|
18
|
19
(1) |
20
(7) |
21
|
22
(2) |
23
(1) |
24
|
25
|
26
(1) |
27
|
28
(1) |
29
|
30
|
31
|
From: Michael P. <mic...@us...> - 2011-12-08 08:00:48
|
Project "Postgres-XC". The branch, master has been updated via b8dd45c3c4aa092d26f1b913f2005cc3d16484a3 (commit) from 9d17d9e5cde25ec53e7022de53531a58cbb57253 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b8dd45c3c4aa092d26f1b913f2005cc3d16484a3 commit b8dd45c3c4aa092d26f1b913f2005cc3d16484a3 Author: Michael P <mic...@us...> Date: Thu Dec 8 16:58:41 2011 +0900 Correct pgxc_pool_check process resulting in incorrect assertion This assertion crash happened due to a for loop not correctly configured when running pgxc_pool_check. M src/backend/pgxc/pool/pgxcnode.c M src/backend/pgxc/pool/poolmgr.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/pgxcnode.c | 2 +- src/backend/pgxc/pool/poolmgr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-08 07:17:40
|
Project "Postgres-XC". The branch, master has been updated via 9d17d9e5cde25ec53e7022de53531a58cbb57253 (commit) from 2a406e56dea3e750e74cc38115e83e30217b4822 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9d17d9e5cde25ec53e7022de53531a58cbb57253 commit 9d17d9e5cde25ec53e7022de53531a58cbb57253 Author: Michael P <mic...@us...> Date: Thu Dec 8 16:13:20 2011 +0900 Fix for bug 3454270: cache lookup error on array selection SELECT on an array element was failing due to an agument value not taken into account by op_mergejoinable. Patch by sch19831106, code realignment and review by me. M src/backend/pgxc/plan/planner.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/plan/planner.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-08 04:52:20
|
Project "Postgres-XC". The branch, master has been updated via 2a406e56dea3e750e74cc38115e83e30217b4822 (commit) from 99407dfd856b4250593379a6764f9bbd61ae03f7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2a406e56dea3e750e74cc38115e83e30217b4822 commit 2a406e56dea3e750e74cc38115e83e30217b4822 Author: Michael P <mic...@us...> Date: Thu Dec 8 13:50:25 2011 +0900 Simplify node DDL grammar and supress slave management part New grammar uses WITH clause of CREATE TABLE in this manner: CREATE/ALTER NODE nodename WITH ( [ TYPE = ('coordinator' | 'datanode'),] [ HOST = 'string',] [ PORT = portnum,] [ PRIMARY,] [ PREFERRED ]); This applies to CREATE/ALTER NODE. Grammar simplification results in the deletion in related_to column of pgxc_node catalog. Documentation is updated in consequence. This commit solves also an issue with variable names sharing same format between GTM and XC nodes. M doc-xc/src/sgml/catalogs.sgmlin M doc-xc/src/sgml/ref/alter_node.sgmlin M doc-xc/src/sgml/ref/create_node.sgmlin M src/backend/access/transam/gtm.c M src/backend/catalog/heap.c M src/backend/commands/copy.c M src/backend/parser/gram.y M src/backend/pgxc/locator/locator.c M src/backend/pgxc/nodemgr/groupmgr.c M src/backend/pgxc/nodemgr/nodemgr.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/postmaster/postmaster.c M src/backend/utils/cache/lsyscache.c M src/backend/utils/sort/tuplesort.c M src/bin/initdb/initdb.c M src/gtm/client/fe-connect.c M src/gtm/client/fe-protocol.c M src/gtm/client/gtm_client.c M src/gtm/client/test/test_seq.c M src/gtm/client/test/test_snap.c M src/gtm/client/test/test_snapperf.c M src/gtm/client/test/test_txn.c M src/gtm/client/test/test_txnperf.c M src/gtm/common/elog.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_snap.c M src/gtm/main/gtm_standby.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c M src/gtm/proxy/proxy_main.c M src/gtm/recovery/register.c M src/gtm/recovery/replication.c M src/gtm/test/test_common.c M src/gtm/test/test_connect.c M src/gtm/test/test_node.c M src/gtm/test/test_node5.c M src/gtm/test/test_repli.c M src/gtm/test/test_repli2.c M src/gtm/test/test_scenario.c M src/gtm/test/test_standby.c M src/gtm/test/test_startup.c M src/gtm/test/test_txn.c M src/gtm/test2/test_connect2.c M src/gtm/test2/test_standby.c M src/gtm/test2/test_startup.c M src/gtm/test2/test_txn.c M src/gtm/test2/test_txn2.c M src/gtm/test2/test_txn3.c M src/include/catalog/pgxc_node.h M src/include/gtm/gtm_c.h M src/include/parser/kwlist.h M src/include/pgxc/nodemgr.h M src/include/utils/lsyscache.h M src/test/regress/pg_regress.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/catalogs.sgmlin | 17 +-- doc-xc/src/sgml/ref/alter_node.sgmlin | 64 +++------ doc-xc/src/sgml/ref/create_node.sgmlin | 41 ++---- src/backend/access/transam/gtm.c | 6 +- src/backend/catalog/heap.c | 4 +- src/backend/commands/copy.c | 2 +- src/backend/parser/gram.y | 108 +++----------- src/backend/pgxc/locator/locator.c | 14 +- src/backend/pgxc/nodemgr/groupmgr.c | 2 +- src/backend/pgxc/nodemgr/nodemgr.c | 263 +++++++++++--------------------- src/backend/pgxc/pool/execRemote.c | 14 +- src/backend/pgxc/pool/pgxcnode.c | 75 ++-------- src/backend/pgxc/pool/poolmgr.c | 68 +-------- src/backend/postmaster/postmaster.c | 12 +- src/backend/utils/cache/lsyscache.c | 23 --- src/backend/utils/sort/tuplesort.c | 2 +- src/bin/initdb/initdb.c | 2 +- src/gtm/client/fe-connect.c | 2 +- src/gtm/client/fe-protocol.c | 6 +- src/gtm/client/gtm_client.c | 2 +- src/gtm/client/test/test_seq.c | 2 +- src/gtm/client/test/test_snap.c | 2 +- src/gtm/client/test/test_snapperf.c | 2 +- src/gtm/client/test/test_txn.c | 2 +- src/gtm/client/test/test_txnperf.c | 2 +- src/gtm/common/elog.c | 2 +- src/gtm/main/gtm_seq.c | 36 +++--- src/gtm/main/gtm_snap.c | 8 +- src/gtm/main/gtm_standby.c | 10 +- src/gtm/main/gtm_txn.c | 60 ++++---- src/gtm/main/main.c | 2 +- src/gtm/proxy/proxy_main.c | 10 +- src/gtm/recovery/register.c | 24 ++-- src/gtm/recovery/replication.c | 8 +- src/gtm/test/test_common.c | 4 +- src/gtm/test/test_connect.c | 12 +- src/gtm/test/test_node.c | 14 +- src/gtm/test/test_node5.c | 14 +- src/gtm/test/test_repli.c | 2 +- src/gtm/test/test_repli2.c | 14 +- src/gtm/test/test_scenario.c | 10 +- src/gtm/test/test_standby.c | 2 +- src/gtm/test/test_startup.c | 4 +- src/gtm/test/test_txn.c | 4 +- src/gtm/test2/test_connect2.c | 2 +- src/gtm/test2/test_standby.c | 2 +- src/gtm/test2/test_startup.c | 4 +- src/gtm/test2/test_txn.c | 4 +- src/gtm/test2/test_txn2.c | 2 +- src/gtm/test2/test_txn3.c | 2 +- src/include/catalog/pgxc_node.h | 23 +-- src/include/gtm/gtm_c.h | 12 +- src/include/parser/kwlist.h | 13 -- src/include/pgxc/nodemgr.h | 4 +- src/include/utils/lsyscache.h | 1 - src/test/regress/pg_regress.c | 24 ++-- 56 files changed, 351 insertions(+), 719 deletions(-) hooks/post-receive -- Postgres-XC |