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
|
From: <ap...@us...> - 2013-08-11 07:57:45
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via 25d10ca9ad2a4faa8d16da6a11fa8a011fad967f (commit) from ce068625773eb6da3c0a0e8f7829a2a21ac989f7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=25d10ca9ad2a4faa8d16da6a11fa8a011fad967f commit dec40008b3d689911566514614c5111c0a61327d Author: Koichi Suzuki <koi...@gm...> Date: Sun Aug 11 16:38:43 2013 +0900 This patch fixes GTM bug to create more than 1024 sequences. Due to hardcoded array size, GTM can not send to standby initial list of the defined sequences. So if GTM standby connects to GTM where more than 1024 sequences defined, it causes memory corruption and segmentation fault. The fix makes the array resizeable. For the same reason, client is modified to accept sequence list of any size. Andrei Martsinchyk reported this bug and provided the fix. M src/gtm/client/fe-protocol.c M src/gtm/client/gtm_client.c M src/gtm/common/gtm_serialize.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_standby.c M src/include/gtm/gtm_client.h M src/include/gtm/gtm_serialize.h ----------------------------------------------------------------------- Summary of changes: src/gtm/client/fe-protocol.c | 5 +- src/gtm/client/gtm_client.c | 15 ++---- src/gtm/common/gtm_serialize.c | 8 +-- src/gtm/main/gtm_seq.c | 95 +++++++++++++++++++++++++------------- src/gtm/main/gtm_standby.c | 22 +++++----- src/include/gtm/gtm_client.h | 6 +- src/include/gtm/gtm_serialize.h | 2 +- 7 files changed, 88 insertions(+), 65 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-11 07:40:59
|
Project "Postgres-XC". The branch, master has been updated via dec40008b3d689911566514614c5111c0a61327d (commit) from c1c92ee7b386a30d54ceb77a02f3614a9acff9ec (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=dec40008b3d689911566514614c5111c0a61327d commit dec40008b3d689911566514614c5111c0a61327d Author: Koichi Suzuki <koi...@gm...> Date: Sun Aug 11 16:38:43 2013 +0900 This patch fixes GTM bug to create more than 1024 sequences. Due to hardcoded array size, GTM can not send to standby initial list of the defined sequences. So if GTM standby connects to GTM where more than 1024 sequences defined, it causes memory corruption and segmentation fault. The fix makes the array resizeable. For the same reason, client is modified to accept sequence list of any size. Andrei Martsinchyk reported this bug and provided the fix. M src/gtm/client/fe-protocol.c M src/gtm/client/gtm_client.c M src/gtm/common/gtm_serialize.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_standby.c M src/include/gtm/gtm_client.h M src/include/gtm/gtm_serialize.h ----------------------------------------------------------------------- Summary of changes: src/gtm/client/fe-protocol.c | 5 +- src/gtm/client/gtm_client.c | 15 ++---- src/gtm/common/gtm_serialize.c | 8 +-- src/gtm/main/gtm_seq.c | 95 +++++++++++++++++++++++++------------- src/gtm/main/gtm_standby.c | 22 +++++----- src/include/gtm/gtm_client.h | 6 +- src/include/gtm/gtm_serialize.h | 2 +- 7 files changed, 88 insertions(+), 65 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-11 07:29:00
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via 666429cf862264688b8b993f9aa150c9eb7f11d3 (commit) from caff6ae0163b2a6db454dd92a1a6aa642cf9d161 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=666429cf862264688b8b993f9aa150c9eb7f11d3 commit c1c92ee7b386a30d54ceb77a02f3614a9acff9ec Author: SAITO Masataka <pg...@gm...> Date: Tue Jul 16 18:24:56 2013 +0900 Fix initdb usage and error message Bug ID: 3614712 M src/bin/initdb/initdb.c ----------------------------------------------------------------------- Summary of changes: src/gtm/client/fe-protocol.c | 5 ++- src/gtm/client/gtm_client.c | 15 +++------ src/gtm/common/gtm_serialize.c | 8 ++--- src/gtm/main/gtm_seq.c | 62 +++++++++++++++++++++++++-------------- src/gtm/main/gtm_standby.c | 22 +++++++------- src/include/gtm/gtm_client.h | 6 ++-- src/include/gtm/gtm_serialize.h | 2 +- 7 files changed, 66 insertions(+), 54 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 11:23:19
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via caff6ae0163b2a6db454dd92a1a6aa642cf9d161 (commit) via 6ef421bce13b0a689b42025266d0895ba7fef68b (commit) from fbd70ba182b0a134314207a7fd5d76a542fd1768 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=caff6ae0163b2a6db454dd92a1a6aa642cf9d161 commit c1c92ee7b386a30d54ceb77a02f3614a9acff9ec Author: SAITO Masataka <pg...@gm...> Date: Tue Jul 16 18:24:56 2013 +0900 Fix initdb usage and error message Bug ID: 3614712 M src/bin/initdb/initdb.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6ef421bce13b0a689b42025266d0895ba7fef68b commit c1c92ee7b386a30d54ceb77a02f3614a9acff9ec Author: SAITO Masataka <pg...@gm...> Date: Tue Jul 16 18:24:56 2013 +0900 Fix initdb usage and error message Bug ID: 3614712 M src/bin/initdb/initdb.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_node.sgmlin | 4 ++-- src/bin/initdb/initdb.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 11:05:08
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via ce068625773eb6da3c0a0e8f7829a2a21ac989f7 (commit) via 9885a60c222c42326b53346c8aabecd01e1b6f84 (commit) from 02b59cdd5245ef7de3688666df25e5fcc8beee84 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ce068625773eb6da3c0a0e8f7829a2a21ac989f7 commit c1c92ee7b386a30d54ceb77a02f3614a9acff9ec Author: SAITO Masataka <pg...@gm...> Date: Tue Jul 16 18:24:56 2013 +0900 Fix initdb usage and error message Bug ID: 3614712 M src/bin/initdb/initdb.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9885a60c222c42326b53346c8aabecd01e1b6f84 commit c1c92ee7b386a30d54ceb77a02f3614a9acff9ec Author: SAITO Masataka <pg...@gm...> Date: Tue Jul 16 18:24:56 2013 +0900 Fix initdb usage and error message Bug ID: 3614712 M src/bin/initdb/initdb.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_node.sgmlin | 4 ++-- src/bin/initdb/initdb.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 10:49:55
|
Project "Postgres-XC". The branch, master has been updated via c1c92ee7b386a30d54ceb77a02f3614a9acff9ec (commit) via 2dca225f7c4d04e6dae21191d2608b4a9b6d459e (commit) from c7def9c4abc2fba67bc4b9dcfa7f35ca7dc33de2 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c1c92ee7b386a30d54ceb77a02f3614a9acff9ec commit c1c92ee7b386a30d54ceb77a02f3614a9acff9ec Author: SAITO Masataka <pg...@gm...> Date: Tue Jul 16 18:24:56 2013 +0900 Fix initdb usage and error message Bug ID: 3614712 M src/bin/initdb/initdb.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2dca225f7c4d04e6dae21191d2608b4a9b6d459e commit c1c92ee7b386a30d54ceb77a02f3614a9acff9ec Author: SAITO Masataka <pg...@gm...> Date: Tue Jul 16 18:24:56 2013 +0900 Fix initdb usage and error message Bug ID: 3614712 M src/bin/initdb/initdb.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_node.sgmlin | 4 ++-- src/bin/initdb/initdb.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 09:36:02
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via 02b59cdd5245ef7de3688666df25e5fcc8beee84 (commit) from e1e19b48e620a94d0053272657f76cd0ffe0cb1b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=02b59cdd5245ef7de3688666df25e5fcc8beee84 commit c7def9c4abc2fba67bc4b9dcfa7f35ca7dc33de2 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 17:38:00 2013 +0900 This patch fixes GTM bug as reported by Nikhil Sontakke: If the GTM Proxy wants multiple GXIDs, it sends a MSG_TXN_BEGIN_GETGXID_MULTI message to the GTM. It sends a transaction count in that message. The calculation of the range is off by one. It's perfectly possible that the proxy asks for just 1 gxid. PFA, a patch to fix that. Luckily it causes no other side effects AFAICS. Can avoid this for earlier branches. He provided the fix too. M src/gtm/main/gtm_txn.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/release-xc-1.1.sgmlin | 34 +++++++++++++++++++++++++++++--- 1 files changed, 30 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 08:52:21
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via e1e19b48e620a94d0053272657f76cd0ffe0cb1b (commit) from 9ffefb6a3acec8e85769e519e32c25c3a4b3ac2a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e1e19b48e620a94d0053272657f76cd0ffe0cb1b commit c7def9c4abc2fba67bc4b9dcfa7f35ca7dc33de2 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 17:38:00 2013 +0900 This patch fixes GTM bug as reported by Nikhil Sontakke: If the GTM Proxy wants multiple GXIDs, it sends a MSG_TXN_BEGIN_GETGXID_MULTI message to the GTM. It sends a transaction count in that message. The calculation of the range is off by one. It's perfectly possible that the proxy asks for just 1 gxid. PFA, a patch to fix that. Luckily it causes no other side effects AFAICS. Can avoid this for earlier branches. He provided the fix too. M src/gtm/main/gtm_txn.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_txn.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 08:39:56
|
Project "Postgres-XC". The branch, master has been updated via c7def9c4abc2fba67bc4b9dcfa7f35ca7dc33de2 (commit) from 85d533182a79d29d330e70a58c4aff5b0d2235b7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c7def9c4abc2fba67bc4b9dcfa7f35ca7dc33de2 commit c7def9c4abc2fba67bc4b9dcfa7f35ca7dc33de2 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 17:38:00 2013 +0900 This patch fixes GTM bug as reported by Nikhil Sontakke: If the GTM Proxy wants multiple GXIDs, it sends a MSG_TXN_BEGIN_GETGXID_MULTI message to the GTM. It sends a transaction count in that message. The calculation of the range is off by one. It's perfectly possible that the proxy asks for just 1 gxid. PFA, a patch to fix that. Luckily it causes no other side effects AFAICS. Can avoid this for earlier branches. He provided the fix too. M src/gtm/main/gtm_txn.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_txn.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 08:27:05
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via fbd70ba182b0a134314207a7fd5d76a542fd1768 (commit) from 91e87ee670519dc1168d31232d25915044dd0b42 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=fbd70ba182b0a134314207a7fd5d76a542fd1768 commit 85d533182a79d29d330e70a58c4aff5b0d2235b7 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 16:59:51 2013 +0900 This commit fixes potential bug of GTM proxy to handle disconnect. Andcrei Martsinchyk reported the bug and provided the fix. M src/backend/storage/ipc/procarray.c M src/gtm/main/gtm_txn.c M src/gtm/proxy/proxy_main.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_txn.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 08:13:41
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via 9ffefb6a3acec8e85769e519e32c25c3a4b3ac2a (commit) from 775051a3d44e8a7377dd8979768fad47f4d59090 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9ffefb6a3acec8e85769e519e32c25c3a4b3ac2a commit 85d533182a79d29d330e70a58c4aff5b0d2235b7 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 16:59:51 2013 +0900 This commit fixes potential bug of GTM proxy to handle disconnect. Andcrei Martsinchyk reported the bug and provided the fix. M src/backend/storage/ipc/procarray.c M src/gtm/main/gtm_txn.c M src/gtm/proxy/proxy_main.c ----------------------------------------------------------------------- Summary of changes: src/backend/storage/ipc/procarray.c | 3 ++- src/gtm/main/gtm_txn.c | 5 +++++ src/gtm/proxy/proxy_main.c | 22 +++++++++++++++++----- 3 files changed, 24 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 08:01:22
|
Project "Postgres-XC". The branch, master has been updated via 85d533182a79d29d330e70a58c4aff5b0d2235b7 (commit) from 674ef39c5e5b14ae338df5dd9ffe4e3f29432c91 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=85d533182a79d29d330e70a58c4aff5b0d2235b7 commit 85d533182a79d29d330e70a58c4aff5b0d2235b7 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 16:59:51 2013 +0900 This commit fixes potential bug of GTM proxy to handle disconnect. Andcrei Martsinchyk reported the bug and provided the fix. M src/backend/storage/ipc/procarray.c M src/gtm/main/gtm_txn.c M src/gtm/proxy/proxy_main.c ----------------------------------------------------------------------- Summary of changes: src/backend/storage/ipc/procarray.c | 3 ++- src/gtm/main/gtm_txn.c | 5 +++++ src/gtm/proxy/proxy_main.c | 22 +++++++++++++++++----- 3 files changed, 24 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 07:46:08
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via 91e87ee670519dc1168d31232d25915044dd0b42 (commit) from 67f72263bd2e9a9827053edded42626ee96a91b3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=91e87ee670519dc1168d31232d25915044dd0b42 commit 674ef39c5e5b14ae338df5dd9ffe4e3f29432c91 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 16:22:22 2013 +0900 This commit fixes potential memory leak at GTM. Andrei Martsinchyk reported this bug and provided the fix. M src/gtm/main/gtm_txn.c ----------------------------------------------------------------------- Summary of changes: src/backend/storage/ipc/procarray.c | 3 ++- src/gtm/main/gtm_txn.c | 5 +++++ src/gtm/proxy/proxy_main.c | 22 +++++++++++++++++----- 3 files changed, 24 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 07:33:45
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via 775051a3d44e8a7377dd8979768fad47f4d59090 (commit) from c1cded7da93ba4d580a9ea241279adb86ae2f75f (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=775051a3d44e8a7377dd8979768fad47f4d59090 commit 674ef39c5e5b14ae338df5dd9ffe4e3f29432c91 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 16:22:22 2013 +0900 This commit fixes potential memory leak at GTM. Andrei Martsinchyk reported this bug and provided the fix. M src/gtm/main/gtm_txn.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_txn.c | 67 +++++++++++++++++++++++++----------------------- 1 files changed, 35 insertions(+), 32 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 07:23:24
|
Project "Postgres-XC". The branch, master has been updated via 674ef39c5e5b14ae338df5dd9ffe4e3f29432c91 (commit) from ea17bf6c705163daa43bc7bffe0c9f9b3691665b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=674ef39c5e5b14ae338df5dd9ffe4e3f29432c91 commit 674ef39c5e5b14ae338df5dd9ffe4e3f29432c91 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 16:22:22 2013 +0900 This commit fixes potential memory leak at GTM. Andrei Martsinchyk reported this bug and provided the fix. M src/gtm/main/gtm_txn.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_txn.c | 67 +++++++++++++++++++++++++----------------------- 1 files changed, 35 insertions(+), 32 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-08-09 07:06:25
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via 67f72263bd2e9a9827053edded42626ee96a91b3 (commit) from b6aed9a57d4f4a97d221680af937da711570714c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=67f72263bd2e9a9827053edded42626ee96a91b3 commit ea17bf6c705163daa43bc7bffe0c9f9b3691665b Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 15:26:58 2013 +0900 This commit improves message level for BARRIER from DEBUG2 to DEBUG1. M src/backend/pgxc/barrier/barrier.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_txn.c | 67 +++++++++++++++++++++++++----------------------- 1 files changed, 35 insertions(+), 32 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-08-09 06:40:24
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via c1cded7da93ba4d580a9ea241279adb86ae2f75f (commit) from 801e78e7955c9d8c61e72af7d868a4996a649a69 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c1cded7da93ba4d580a9ea241279adb86ae2f75f commit ea17bf6c705163daa43bc7bffe0c9f9b3691665b Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 15:26:58 2013 +0900 This commit improves message level for BARRIER from DEBUG2 to DEBUG1. M src/backend/pgxc/barrier/barrier.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/barrier/barrier.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 06:27:36
|
Project "Postgres-XC". The branch, master has been updated via ea17bf6c705163daa43bc7bffe0c9f9b3691665b (commit) from ae29a966d3286d4e85b3adf162d00f9b1e8b8eae (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ea17bf6c705163daa43bc7bffe0c9f9b3691665b commit ea17bf6c705163daa43bc7bffe0c9f9b3691665b Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 15:26:58 2013 +0900 This commit improves message level for BARRIER from DEBUG2 to DEBUG1. M src/backend/pgxc/barrier/barrier.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/barrier/barrier.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-08-09 06:15:16
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via b6aed9a57d4f4a97d221680af937da711570714c (commit) from e8a0c1f16b53b294ddf296722f5122efe927d7e4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b6aed9a57d4f4a97d221680af937da711570714c commit ae29a966d3286d4e85b3adf162d00f9b1e8b8eae Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 13:23:45 2013 +0900 This commit eliminates most of the warning message from later version of gcc. M src/backend/access/transam/gtm.c M src/backend/access/transam/xlog.c M src/backend/catalog/dependency.c M src/backend/commands/trigger.c M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/path/pgxcpath.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/optimizer/plan/setrefs.c M src/backend/pgxc/barrier/barrier.c M src/backend/pgxc/pool/pgxcnode.c M src/gtm/common/elog.c M src/gtm/common/gtm_utils.c M src/gtm/main/gtm_seq.c M src/gtm/recovery/register_common.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/barrier/barrier.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-08-09 04:58:29
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via 801e78e7955c9d8c61e72af7d868a4996a649a69 (commit) from d027f17a8e3c1fe0e599ecb5cc00d4aea73fad73 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=801e78e7955c9d8c61e72af7d868a4996a649a69 commit ae29a966d3286d4e85b3adf162d00f9b1e8b8eae Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 13:23:45 2013 +0900 This commit eliminates most of the warning message from later version of gcc. M src/backend/access/transam/gtm.c M src/backend/access/transam/xlog.c M src/backend/catalog/dependency.c M src/backend/commands/trigger.c M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/path/pgxcpath.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/optimizer/plan/setrefs.c M src/backend/pgxc/barrier/barrier.c M src/backend/pgxc/pool/pgxcnode.c M src/gtm/common/elog.c M src/gtm/common/gtm_utils.c M src/gtm/main/gtm_seq.c M src/gtm/recovery/register_common.c ----------------------------------------------------------------------- Summary of changes: src/backend/access/transam/gtm.c | 4 +- src/backend/access/transam/xlog.c | 4 + src/backend/catalog/dependency.c | 2 +- src/backend/commands/trigger.c | 2 +- src/backend/executor/nodeModifyTable.c | 2 +- src/backend/optimizer/path/pgxcpath.c | 2 +- src/backend/optimizer/plan/pgxcplan.c | 6 +- src/backend/optimizer/plan/setrefs.c | 6 +- src/backend/pgxc/barrier/barrier.c | 2 +- src/backend/pgxc/pool/pgxcnode.c | 4 + src/gtm/common/elog.c | 2 +- src/gtm/common/gtm_utils.c | 4 +- src/gtm/main/gtm_seq.c | 3 +- src/gtm/recovery/register_common.c | 102 +++++++++++++++++--------------- 14 files changed, 79 insertions(+), 66 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-09 04:53:42
|
Project "Postgres-XC". The branch, master has been updated via ae29a966d3286d4e85b3adf162d00f9b1e8b8eae (commit) from e684b405779d0d348309d011249e4f5439f8d304 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ae29a966d3286d4e85b3adf162d00f9b1e8b8eae commit ae29a966d3286d4e85b3adf162d00f9b1e8b8eae Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 9 13:23:45 2013 +0900 This commit eliminates most of the warning message from later version of gcc. M src/backend/access/transam/gtm.c M src/backend/access/transam/xlog.c M src/backend/catalog/dependency.c M src/backend/commands/trigger.c M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/path/pgxcpath.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/optimizer/plan/setrefs.c M src/backend/pgxc/barrier/barrier.c M src/backend/pgxc/pool/pgxcnode.c M src/gtm/common/elog.c M src/gtm/common/gtm_utils.c M src/gtm/main/gtm_seq.c M src/gtm/recovery/register_common.c ----------------------------------------------------------------------- Summary of changes: src/backend/access/transam/gtm.c | 4 +- src/backend/access/transam/xlog.c | 4 + src/backend/catalog/dependency.c | 2 +- src/backend/commands/trigger.c | 2 +- src/backend/executor/nodeModifyTable.c | 2 +- src/backend/optimizer/path/pgxcpath.c | 2 +- src/backend/optimizer/plan/pgxcplan.c | 6 +- src/backend/optimizer/plan/setrefs.c | 6 +- src/backend/pgxc/barrier/barrier.c | 2 +- src/backend/pgxc/pool/pgxcnode.c | 4 + src/gtm/common/elog.c | 2 +- src/gtm/common/gtm_utils.c | 4 +- src/gtm/main/gtm_seq.c | 3 +- src/gtm/recovery/register_common.c | 102 +++++++++++++++++--------------- 14 files changed, 79 insertions(+), 66 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-08 05:15:29
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via d027f17a8e3c1fe0e599ecb5cc00d4aea73fad73 (commit) from fc671082977924c9943ea02b22261d8282f5a9f1 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d027f17a8e3c1fe0e599ecb5cc00d4aea73fad73 commit e684b405779d0d348309d011249e4f5439f8d304 Author: Koichi Suzuki <koi...@gm...> Date: Thu Aug 8 13:16:14 2013 +0900 This patch enables GTM_Proxy to handle barrier report to GTM as a part of CREATE BARRIER statement. M src/gtm/main/main.c M src/gtm/proxy/proxy_main.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/release-xc-1.1.sgmlin | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-08-08 04:28:27
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via fc671082977924c9943ea02b22261d8282f5a9f1 (commit) from 5cc4d4c15197852228c20f444feeb8ef7b4164c3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=fc671082977924c9943ea02b22261d8282f5a9f1 commit e684b405779d0d348309d011249e4f5439f8d304 Author: Koichi Suzuki <koi...@gm...> Date: Thu Aug 8 13:16:14 2013 +0900 This patch enables GTM_Proxy to handle barrier report to GTM as a part of CREATE BARRIER statement. M src/gtm/main/main.c M src/gtm/proxy/proxy_main.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/main.c | 2 ++ src/gtm/proxy/proxy_main.c | 24 +++++++++++++++++++++++- 2 files changed, 25 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2013-08-08 04:17:56
|
Project "Postgres-XC". The branch, master has been updated via e684b405779d0d348309d011249e4f5439f8d304 (commit) from 119bab1a9bfe78a7992112e1091bcd41a305df7b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e684b405779d0d348309d011249e4f5439f8d304 commit e684b405779d0d348309d011249e4f5439f8d304 Author: Koichi Suzuki <koi...@gm...> Date: Thu Aug 8 13:16:14 2013 +0900 This patch enables GTM_Proxy to handle barrier report to GTM as a part of CREATE BARRIER statement. M src/gtm/main/main.c M src/gtm/proxy/proxy_main.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/main.c | 2 ++ src/gtm/proxy/proxy_main.c | 24 +++++++++++++++++++++++- 2 files changed, 25 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-07-26 10:10:21
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via 5cc4d4c15197852228c20f444feeb8ef7b4164c3 (commit) from 2ed6f89e152744fe52b4d1018595ad952a083a30 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5cc4d4c15197852228c20f444feeb8ef7b4164c3 commit 119bab1a9bfe78a7992112e1091bcd41a305df7b Author: Koichi Suzuki <koi...@gm...> Date: Fri Jul 26 19:06:39 2013 +0900 This is a fix for the bug 3614796, gtm slave configuration printout, reported by Mason Sharp. M contrib/pgxc_ctl/gtm_cmd.c ----------------------------------------------------------------------- Summary of changes: contrib/pgxc_ctl/gtm_cmd.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |