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: Amit K. <ami...@us...> - 2013-04-19 15:50:12
|
Project "Postgres-XC". The branch, master has been updated via ea2fa5d201f849afc51c2d2a6b33bebf29032f3a (commit) from 23e1d07ae4e994640bf0b86a385195b089c85fa0 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ea2fa5d201f849afc51c2d2a6b33bebf29032f3a commit ea2fa5d201f849afc51c2d2a6b33bebf29032f3a Author: Amit Khandekar <ami...@en...> Date: Fri Apr 19 21:10:53 2013 +0530 Support for ROW triggers in Postgres-XC. This includes BEFORE/AFTER/INSTEAD row triggers. Statement trigger support was already implemented. There were two independent changes; one to support BEFORE ROW triggers, and the other to support AFTER ROW triggers. INSTEAD triggers worked w/o any changes. BEFORE ROW triggers: When a trigger is to be executed from coordinator, the OLD and NEW row is not available. It needs to be fetched from the DML source plan. We have been using the DML source plan slot directly to generate the data for BINDing the parameter values for UPDATE. Now for BEFORE ROW triggers, the data of NEW row is the one that is to be BOUND. And this NEW tuple slot does not have the ctid and node_id junk attribute values. So we need to generate the BIND data using the data from NEW row and the junk attributes from the source data. Similarly there are changes in the way we generate the parameters markers for the remote UPDATE statement. AFTER ROW triggers: AFTER ROW triggers are queued for each of the rows processed, and are then executed at then end of statement. So we need to store the OLD and NEW rows in memory until the end of statement or until the end of transaction in case of deferred constraint triggers. The idea is to use tuplestore for saving them. TODOs: New feature tests to be added to regression suite. COPY with INSERT triggers is not working. A mix of shippable and non-shippable triggers for the same table has issues. Fix them. More unit testing. M src/backend/commands/trigger.c M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/backend/tcop/utility.c M src/include/commands/trigger.h M src/include/nodes/execnodes.h M src/include/pgxc/execRemote.h M src/test/regress/expected/copy2_1.out M src/test/regress/expected/create_table.out M src/test/regress/expected/drop_if_exists.out M src/test/regress/expected/plpgsql_1.out M src/test/regress/expected/rangefuncs_1.out M src/test/regress/expected/rules.out M src/test/regress/expected/triggers.out D src/test/regress/expected/triggers_1.out M src/test/regress/expected/tsearch_1.out M src/test/regress/expected/with.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/expected/xc_alter_table.out M src/test/regress/expected/xc_remote.out M src/test/regress/expected/xc_returning.out M src/test/regress/expected/xc_triggers.out M src/test/regress/sql/create_table.sql M src/test/regress/sql/triggers.sql M src/test/regress/sql/with.sql M src/test/regress/sql/xc_triggers.sql ----------------------------------------------------------------------- Summary of changes: src/backend/commands/trigger.c | 896 +++++++++++++++++- src/backend/executor/nodeModifyTable.c | 152 +++- src/backend/optimizer/plan/pgxcplan.c | 157 ++-- src/backend/pgxc/pool/execRemote.c | 272 ++++-- src/backend/rewrite/rewriteHandler.c | 62 +- src/backend/tcop/utility.c | 7 - src/include/commands/trigger.h | 16 + src/include/nodes/execnodes.h | 12 + src/include/pgxc/execRemote.h | 4 +- src/test/regress/expected/copy2_1.out | 4 - src/test/regress/expected/create_table.out | 2 +- src/test/regress/expected/drop_if_exists.out | 3 - src/test/regress/expected/plpgsql_1.out | 310 +++---- src/test/regress/expected/rangefuncs_1.out | 10 +- src/test/regress/expected/rules.out | 13 +- src/test/regress/expected/triggers.out | 16 +- src/test/regress/expected/triggers_1.out | 1320 -------------------------- src/test/regress/expected/tsearch_1.out | 7 +- src/test/regress/expected/with.out | 145 ++-- src/test/regress/expected/xc_FQS_join.out | 8 +- src/test/regress/expected/xc_alter_table.out | 6 +- src/test/regress/expected/xc_remote.out | 14 +- src/test/regress/expected/xc_returning.out | 12 +- src/test/regress/expected/xc_triggers.out | 77 +-- src/test/regress/sql/create_table.sql | 2 +- src/test/regress/sql/triggers.sql | 16 +- src/test/regress/sql/with.sql | 4 +- src/test/regress/sql/xc_triggers.sql | 2 +- 28 files changed, 1681 insertions(+), 1868 deletions(-) delete mode 100644 src/test/regress/expected/triggers_1.out hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-04-19 15:48:05
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via 4b3b440a3564b2b2fbf9d4c088cba22d50200380 (commit) from bd64fdcb10ba26422dcc6f94d06ad34f3168cd52 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=4b3b440a3564b2b2fbf9d4c088cba22d50200380 commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 120 ------------------------------------ 1 files changed, 0 insertions(+), 120 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-04-19 14:40:01
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via bd64fdcb10ba26422dcc6f94d06ad34f3168cd52 (commit) via 4ad73e742dcb935dd760812e09f9705ec113bb6a (commit) via 611534e130824d724b3586eb5872df436a438d62 (commit) via 972a9afa152024b2f77e821352d978fa49e15803 (commit) via 33d30430c73210ac08055133f51cf01f1516350e (commit) via 6c00bd0851ac24c39f1ee32f0e8dae5a6ccda849 (commit) via 4318cf60143cad9515928b805f33b922849a3f9e (commit) via 23e1d07ae4e994640bf0b86a385195b089c85fa0 (commit) via 7a0a3070466b7ad05a901f3f7f369348d880cf7e (commit) from 8a28192d4d408bc4d9274760ead65fe3b6f8c599 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=bd64fdcb10ba26422dcc6f94d06ad34f3168cd52 commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=4ad73e742dcb935dd760812e09f9705ec113bb6a commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=611534e130824d724b3586eb5872df436a438d62 commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=972a9afa152024b2f77e821352d978fa49e15803 commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=33d30430c73210ac08055133f51cf01f1516350e commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6c00bd0851ac24c39f1ee32f0e8dae5a6ccda849 commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=4318cf60143cad9515928b805f33b922849a3f9e commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/commands/trigger.c | 39 +- src/backend/executor/execScan.c | 4 + src/backend/executor/execTuples.c | 5 +- src/backend/executor/nodeSort.c | 52 +- src/backend/optimizer/plan/createplan.c | 23 + src/backend/pgxc/pool/execRemote.c | 89 +- src/backend/utils/sort/tuplesort.c | 241 +--- src/include/commands/trigger.h | 1 - src/include/executor/tuptable.h | 3 +- src/include/pgxc/execRemote.h | 6 - src/include/utils/tuplesort.h | 3 + src/test/regress/expected/copy2_1.out | 4 - src/test/regress/expected/create_table.out | 2 +- src/test/regress/expected/tsearch_1.out | 7 +- src/test/regress/expected/with.out | 8 +- src/test/regress/expected/with_1.out | 1921 -------------------------- src/test/regress/expected/xc_FQS_join.out | 8 +- src/test/regress/expected/xc_alter_table.out | 6 +- src/test/regress/expected/xc_returning.out | 12 +- src/test/regress/expected/xc_triggers.out | 77 +- src/test/regress/sql/create_table.sql | 2 +- src/test/regress/sql/xc_triggers.sql | 2 +- 22 files changed, 156 insertions(+), 2359 deletions(-) delete mode 100644 src/test/regress/expected/with_1.out hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2013-04-19 12:25:15
|
Project "Postgres-XC". The branch, master has been updated via 23e1d07ae4e994640bf0b86a385195b089c85fa0 (commit) via 7a0a3070466b7ad05a901f3f7f369348d880cf7e (commit) from af70f9fab12d0e9065ee7180aca98aa6650a26e0 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=23e1d07ae4e994640bf0b86a385195b089c85fa0 commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=7a0a3070466b7ad05a901f3f7f369348d880cf7e commit 23e1d07ae4e994640bf0b86a385195b089c85fa0 Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 19 17:47:55 2013 +0530 If JOIN uses merge strategy and inner and outer trees have only RemoteQuery nodes, delegate the sorting operation to the datanodes by adding ORDER BY clause to the queries in inner and outer RemoteQuery nodes. M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/executor/execScan.c | 4 + src/backend/executor/execTuples.c | 5 +- src/backend/executor/nodeSort.c | 52 +------ src/backend/optimizer/plan/createplan.c | 23 +++ src/backend/pgxc/pool/execRemote.c | 210 +++------------------------ src/backend/utils/sort/tuplesort.c | 241 +++++++------------------------ src/include/executor/tuptable.h | 3 +- src/include/pgxc/execRemote.h | 6 - src/include/utils/tuplesort.h | 3 + 9 files changed, 110 insertions(+), 437 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-04-19 11:49:48
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via 8a28192d4d408bc4d9274760ead65fe3b6f8c599 (commit) via af70f9fab12d0e9065ee7180aca98aa6650a26e0 (commit) via e505bda580016cc5223b144f9a0d322ccb3a8b09 (commit) via 5583bb5c58241cd67c0cbac7abf3ad701afdc3bb (commit) via 2dbeb21bf356c8e9526a530e8df5468402a9f272 (commit) via efe49838a310d49c5fca45970bbd5abfd9325a65 (commit) via ff4bc30300e3e8aecc0cbb3dc5c0c61f887206cc (commit) via 2c53462e57a55e6edebbd41083c3fe22b79f15f7 (commit) via 82ad95e7088d182e1134daa98b4def6d3d75c9a0 (commit) via 16b379f43cc62e5f2728c0932a18e2bad597c1f7 (commit) via 3e4a88ad8ed3542348d44c76de42f4080b5682f1 (commit) via 44ccf0de9d4e7351064f508fb36d5c092d309f16 (commit) via 5b647bef3e0bcd90002ccd0d0ebaf20b612ebce8 (commit) via a729fecb4ab90e639749c223e4772d7b738fca9d (commit) from 0fcc34a27e05b173ff20cd267817ba0f3e8836e6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8a28192d4d408bc4d9274760ead65fe3b6f8c599 commit af70f9fab12d0e9065ee7180aca98aa6650a26e0 Author: Koichi Suzuki <koi...@gm...> Date: Fri Apr 19 16:55:44 2013 +0900 This commit adds "restoremode" value to pg_ctl -Z option. It is needed in Abbas's node addition. modified: doc-xc/src/sgml/add-node.sgmlin modified: doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin modified: src/bin/pg_ctl/pg_ctl.c M doc-xc/src/sgml/add-node.sgmlin M doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin M src/bin/pg_ctl/pg_ctl.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/add-node.sgmlin | 257 +++++++++++++++++++++++++ doc-xc/src/sgml/filelist.sgmlin | 1 + doc-xc/src/sgml/func.sgmlin | 330 +++++++++++++++++++++++++++++++++ doc-xc/src/sgml/postgres.sgmlin | 2 +- doc-xc/src/sgml/ref/gtm_ctl.sgmlin | 11 + doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin | 7 +- doc-xc/src/sgml/ref/pg_dump.sgmlin | 13 ++ doc-xc/src/sgml/ref/pg_dumpall.sgmlin | 11 + src/backend/access/transam/xact.c | 4 +- src/backend/commands/tablecmds.c | 15 ++- src/backend/main/main.c | 1 + src/backend/postmaster/postmaster.c | 29 +++ src/backend/storage/ipc/procarray.c | 2 +- src/backend/tcop/postgres.c | 7 + src/backend/tcop/utility.c | 118 ++++++++++++ src/backend/utils/adt/lockfuncs.c | 129 +++++++++++++- src/bin/gtm_ctl/gtm_ctl.c | 90 +++++++++- src/bin/pg_ctl/pg_ctl.c | 2 + src/bin/pg_dump/pg_dump.c | 20 ++- src/bin/pg_dump/pg_dump.h | 1 + src/bin/pg_dump/pg_dumpall.c | 105 +++++++++++- src/gtm/main/Makefile | 2 +- src/gtm/main/gtm_backup.c | 65 +++++++ src/gtm/main/gtm_seq.c | 147 ++++++++++++++- src/gtm/main/gtm_txn.c | 31 +++- src/gtm/main/main.c | 21 ++- src/include/catalog/pg_proc.h | 2 + src/include/gtm/gtm_backup.h | 30 +++ src/include/gtm/gtm_seq.h | 4 +- src/include/gtm/gtm_txn.h | 5 + src/include/pgxc/pgxc.h | 12 ++ src/include/tcop/utility.h | 4 + src/include/utils/builtins.h | 1 + 33 files changed, 1456 insertions(+), 23 deletions(-) create mode 100644 doc-xc/src/sgml/add-node.sgmlin create mode 100644 src/gtm/main/gtm_backup.c create mode 100644 src/include/gtm/gtm_backup.h hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-04-19 11:35:43
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via 0fcc34a27e05b173ff20cd267817ba0f3e8836e6 (commit) from 5aa7c108246079b2fee86512e025a2bd1454d87c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0fcc34a27e05b173ff20cd267817ba0f3e8836e6 commit af70f9fab12d0e9065ee7180aca98aa6650a26e0 Author: Koichi Suzuki <koi...@gm...> Date: Fri Apr 19 16:55:44 2013 +0900 This commit adds "restoremode" value to pg_ctl -Z option. It is needed in Abbas's node addition. modified: doc-xc/src/sgml/add-node.sgmlin modified: doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin modified: src/bin/pg_ctl/pg_ctl.c M doc-xc/src/sgml/add-node.sgmlin M doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin M src/bin/pg_ctl/pg_ctl.c ----------------------------------------------------------------------- Summary of changes: src/backend/commands/trigger.c | 20 +++++++++----------- 1 files changed, 9 insertions(+), 11 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-04-19 07:57:57
|
Project "Postgres-XC". The branch, master has been updated via af70f9fab12d0e9065ee7180aca98aa6650a26e0 (commit) from e505bda580016cc5223b144f9a0d322ccb3a8b09 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=af70f9fab12d0e9065ee7180aca98aa6650a26e0 commit af70f9fab12d0e9065ee7180aca98aa6650a26e0 Author: Koichi Suzuki <koi...@gm...> Date: Fri Apr 19 16:55:44 2013 +0900 This commit adds "restoremode" value to pg_ctl -Z option. It is needed in Abbas's node addition. modified: doc-xc/src/sgml/add-node.sgmlin modified: doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin modified: src/bin/pg_ctl/pg_ctl.c M doc-xc/src/sgml/add-node.sgmlin M doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin M src/bin/pg_ctl/pg_ctl.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/add-node.sgmlin | 13 +++++++++++++ doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin | 7 +++++-- src/bin/pg_ctl/pg_ctl.c | 2 ++ 3 files changed, 20 insertions(+), 2 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-04-19 04:18:34
|
Project "Postgres-XC". The branch, master has been updated via e505bda580016cc5223b144f9a0d322ccb3a8b09 (commit) from 5583bb5c58241cd67c0cbac7abf3ad701afdc3bb (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e505bda580016cc5223b144f9a0d322ccb3a8b09 commit e505bda580016cc5223b144f9a0d322ccb3a8b09 Author: Koichi Suzuki <koi...@gm...> Date: Fri Apr 19 13:17:05 2013 +0900 Fixes to write first restoration point backup in GTM after restoring from gtm.control. M src/gtm/main/main.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/main.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-04-19 03:40:55
|
Project "Postgres-XC". The branch, master has been updated via 5583bb5c58241cd67c0cbac7abf3ad701afdc3bb (commit) from 2dbeb21bf356c8e9526a530e8df5468402a9f272 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5583bb5c58241cd67c0cbac7abf3ad701afdc3bb commit 5583bb5c58241cd67c0cbac7abf3ad701afdc3bb Author: Koichi Suzuki <koi...@gm...> Date: Fri Apr 19 12:39:42 2013 +0900 Document for the additional -C option of gtm_ctl, 2dbeb21bf356c8e9526a530e8df5468402a9f272 M doc-xc/src/sgml/ref/gtm_ctl.sgmlin ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/gtm_ctl.sgmlin | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-04-19 03:30:46
|
Project "Postgres-XC". The branch, master has been updated via 2dbeb21bf356c8e9526a530e8df5468402a9f272 (commit) from efe49838a310d49c5fca45970bbd5abfd9325a65 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2dbeb21bf356c8e9526a530e8df5468402a9f272 commit 2dbeb21bf356c8e9526a530e8df5468402a9f272 Author: Koichi Suzuki <koi...@gm...> Date: Fri Apr 19 12:28:49 2013 +0900 This adds -C option to gtm_ctl. This allows DBA to choose alternative gtm.control file, needed to specify restoration point of GTM when coordinators/datanodes are recovered to specific point. modified: src/bin/gtm_ctl/gtm_ctl.c M src/bin/gtm_ctl/gtm_ctl.c ----------------------------------------------------------------------- Summary of changes: src/bin/gtm_ctl/gtm_ctl.c | 90 ++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 88 insertions(+), 2 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-04-18 17:16:00
|
Project "Postgres-XC". The branch, master has been updated via efe49838a310d49c5fca45970bbd5abfd9325a65 (commit) from ff4bc30300e3e8aecc0cbb3dc5c0c61f887206cc (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=efe49838a310d49c5fca45970bbd5abfd9325a65 commit efe49838a310d49c5fca45970bbd5abfd9325a65 Author: Abbas <abb...@en...> Date: Thu Apr 18 22:13:16 2013 +0500 Fix a bug in pgxc_advisory_lock The function should succeed if either the lock can be acquired OR the lock is already held by the same transaction. M src/backend/utils/adt/lockfuncs.c ----------------------------------------------------------------------- Summary of changes: src/backend/utils/adt/lockfuncs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-04-18 14:00:19
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via 5aa7c108246079b2fee86512e025a2bd1454d87c (commit) from 79d63919150919a1c4cbea271d2b24d8f1f63f48 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5aa7c108246079b2fee86512e025a2bd1454d87c commit ff4bc30300e3e8aecc0cbb3dc5c0c61f887206cc Author: Koichi Suzuki <koi...@gm...> Date: Thu Apr 18 22:45:26 2013 +0900 This commit adds gtm standby to backup restoration point when it is promoted to the master. modified: src/gtm/main/main.c M src/gtm/main/main.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 65 +++++++++++++++++++++-------------- src/include/nodes/execnodes.h | 8 ++++ 2 files changed, 47 insertions(+), 26 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-04-18 13:46:18
|
Project "Postgres-XC". The branch, master has been updated via ff4bc30300e3e8aecc0cbb3dc5c0c61f887206cc (commit) from 2c53462e57a55e6edebbd41083c3fe22b79f15f7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ff4bc30300e3e8aecc0cbb3dc5c0c61f887206cc commit ff4bc30300e3e8aecc0cbb3dc5c0c61f887206cc Author: Koichi Suzuki <koi...@gm...> Date: Thu Apr 18 22:45:26 2013 +0900 This commit adds gtm standby to backup restoration point when it is promoted to the master. modified: src/gtm/main/main.c M src/gtm/main/main.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/main.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-04-18 13:14:02
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via 79d63919150919a1c4cbea271d2b24d8f1f63f48 (commit) via 6ef09dcacd4ac98741a313bf6b723cbd8bb25445 (commit) from 039a5c40eba546ef1a4264c1140ef03a5ac3d013 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=79d63919150919a1c4cbea271d2b24d8f1f63f48 commit 2c53462e57a55e6edebbd41083c3fe22b79f15f7 Author: Koichi Suzuki <koi...@gm...> Date: Thu Apr 18 21:59:29 2013 +0900 This is the fix to the last commit to add restoration point dump feature to GTM. Lock implementation was not good. modified: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c modified: src/include/gtm/gtm_backup.h M src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c M src/include/gtm/gtm_backup.h http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6ef09dcacd4ac98741a313bf6b723cbd8bb25445 commit 2c53462e57a55e6edebbd41083c3fe22b79f15f7 Author: Koichi Suzuki <koi...@gm...> Date: Thu Apr 18 21:59:29 2013 +0900 This is the fix to the last commit to add restoration point dump feature to GTM. Lock implementation was not good. modified: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c modified: src/include/gtm/gtm_backup.h M src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c M src/include/gtm/gtm_backup.h ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/drop_if_exists.out | 3 - src/test/regress/expected/with.out | 137 ++++++++++--------- src/test/regress/expected/{with.out => with_1.out} | 143 +++++++++++--------- src/test/regress/sql/with.sql | 4 +- 4 files changed, 155 insertions(+), 132 deletions(-) copy src/test/regress/expected/{with.out => with_1.out} (96%) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-04-18 13:01:01
|
Project "Postgres-XC". The branch, master has been updated via 2c53462e57a55e6edebbd41083c3fe22b79f15f7 (commit) from 82ad95e7088d182e1134daa98b4def6d3d75c9a0 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2c53462e57a55e6edebbd41083c3fe22b79f15f7 commit 2c53462e57a55e6edebbd41083c3fe22b79f15f7 Author: Koichi Suzuki <koi...@gm...> Date: Thu Apr 18 21:59:29 2013 +0900 This is the fix to the last commit to add restoration point dump feature to GTM. Lock implementation was not good. modified: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c modified: src/include/gtm/gtm_backup.h M src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c M src/include/gtm/gtm_backup.h ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_backup.c | 22 ++++++++ src/gtm/main/gtm_seq.c | 122 +++++++++++------------------------------- src/gtm/main/gtm_txn.c | 13 +---- src/gtm/main/main.c | 8 +++- src/include/gtm/gtm_backup.h | 2 + 5 files changed, 65 insertions(+), 102 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-04-18 03:22:31
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via 039a5c40eba546ef1a4264c1140ef03a5ac3d013 (commit) via 223b9943885cf21c580bcb1709ed67dd8dd1cbbb (commit) via fcd0d478685fb49daf2e926c34d0830accda5365 (commit) via ada7483477a2c86c76748f9f1e2486df43bca061 (commit) via 10ac1cd87a7e602e3009e0e7935791c239c6e401 (commit) via 2491cd2a6a9c1b345d9e8e69d137a58f72b2bed6 (commit) via 1539b54bc24c85639ff0cf76042db0098a189e31 (commit) from 44d07c5c1a405e5b896403741f8f2aea288d0313 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=039a5c40eba546ef1a4264c1140ef03a5ac3d013 commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=223b9943885cf21c580bcb1709ed67dd8dd1cbbb commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=fcd0d478685fb49daf2e926c34d0830accda5365 commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ada7483477a2c86c76748f9f1e2486df43bca061 commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=10ac1cd87a7e602e3009e0e7935791c239c6e401 commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2491cd2a6a9c1b345d9e8e69d137a58f72b2bed6 commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=1539b54bc24c85639ff0cf76042db0098a189e31 commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 61 +- src/test/regress/expected/plpgsql_1.out | 310 +++---- src/test/regress/expected/rangefuncs_1.out | 10 +- src/test/regress/expected/rules.out | 13 +- src/test/regress/expected/triggers.out | 16 +- src/test/regress/expected/triggers_1.out | 1320 ---------------------------- src/test/regress/expected/xc_remote.out | 14 +- src/test/regress/sql/triggers.sql | 16 +- 8 files changed, 192 insertions(+), 1568 deletions(-) delete mode 100644 src/test/regress/expected/triggers_1.out hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-04-17 08:58:00
|
Project "Postgres-XC". The branch, master has been updated via 82ad95e7088d182e1134daa98b4def6d3d75c9a0 (commit) from 16b379f43cc62e5f2728c0932a18e2bad597c1f7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=82ad95e7088d182e1134daa98b4def6d3d75c9a0 commit 82ad95e7088d182e1134daa98b4def6d3d75c9a0 Author: Koichi Suzuki <koi...@gm...> Date: Wed Apr 17 17:55:22 2013 +0900 This commit is to fix potential GTM vulnerability when GTM crashes and restarts afterwords. This commit checks out such a restoration point so that GTM can safely restarts after the crash. No need to change any configuration and documentation. modified: src/gtm/main/Makefile new file: src/gtm/main/gtm_backup.c modified: src/gtm/main/gtm_seq.c modified: src/gtm/main/gtm_txn.c modified: src/gtm/main/main.c new file: src/include/gtm/gtm_backup.h modified: src/include/gtm/gtm_seq.h modified: src/include/gtm/gtm_txn.h M src/gtm/main/Makefile A src/gtm/main/gtm_backup.c M src/gtm/main/gtm_seq.c M src/gtm/main/gtm_txn.c M src/gtm/main/main.c A src/include/gtm/gtm_backup.h M src/include/gtm/gtm_seq.h M src/include/gtm/gtm_txn.h ----------------------------------------------------------------------- Summary of changes: src/gtm/main/Makefile | 2 +- src/gtm/main/gtm_backup.c | 43 ++++++ src/gtm/main/gtm_seq.c | 221 ++++++++++++++++++++++++++++-- src/gtm/main/gtm_txn.c | 40 +++++- src/gtm/main/main.c | 8 +- src/include/gtm/{path.h => gtm_backup.h} | 22 ++-- src/include/gtm/gtm_seq.h | 4 +- src/include/gtm/gtm_txn.h | 5 + 8 files changed, 318 insertions(+), 27 deletions(-) create mode 100644 src/gtm/main/gtm_backup.c copy src/include/gtm/{path.h => gtm_backup.h} (51%) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@en...> - 2013-04-17 04:03:44
|
On 17 April 2013 09:31, Michael Paquier <mic...@gm...> wrote: > > > > On Wed, Apr 17, 2013 at 12:55 PM, Amit Khandekar < > ami...@en...> wrote: > >> Whenever I do the non-master branch commits, we see different commit id >> details in the mail although the files modified are reflected correctly. >> Anybody any idea if this is some known issue with sourceforge ? > > This is due to the post-commit hook sending an email each time a push is > made on sourceforge GIT repo. > I mean it gives a misleading message by showing commits that were not actually the ones because of which the mail was sent, actual ones were different. > -- > Michael > |
From: Michael P. <mic...@gm...> - 2013-04-17 04:01:23
|
On Wed, Apr 17, 2013 at 12:55 PM, Amit Khandekar < ami...@en...> wrote: > Whenever I do the non-master branch commits, we see different commit id > details in the mail although the files modified are reflected correctly. > Anybody any idea if this is some known issue with sourceforge ? This is due to the post-commit hook sending an email each time a push is made on sourceforge GIT repo. -- Michael |
From: Amit K. <ami...@en...> - 2013-04-17 03:55:50
|
Whenever I do the non-master branch commits, we see different commit id details in the mail although the files modified are reflected correctly. Anybody any idea if this is some known issue with sourceforge ? On 17 April 2013 09:05, Amit Khandekar <ami...@us...>wrote: > Project "Postgres-XC". > > The branch, rowtriggers_new has been updated > via 44d07c5c1a405e5b896403741f8f2aea288d0313 (commit) > via 9b6d7fa8859f03334192b13736deaf335fd8ceed (commit) > from f56b798e7c49d7d2e0d835662988654349dde5e7 (commit) > > > - Log ----------------------------------------------------------------- > > http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=44d07c5c1a405e5b896403741f8f2aea288d0313 > > commit 16b379f43cc62e5f2728c0932a18e2bad597c1f7 > Author: Abbas <abb...@en...> > Date: Tue Apr 16 13:26:09 2013 +0500 > > Add steps to add a new node in documentation. > > A doc-xc/src/sgml/add-node.sgmlin > M doc-xc/src/sgml/filelist.sgmlin > M doc-xc/src/sgml/postgres.sgmlin > > > http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9b6d7fa8859f03334192b13736deaf335fd8ceed > > commit 16b379f43cc62e5f2728c0932a18e2bad597c1f7 > Author: Abbas <abb...@en...> > Date: Tue Apr 16 13:26:09 2013 +0500 > > Add steps to add a new node in documentation. > > A doc-xc/src/sgml/add-node.sgmlin > M doc-xc/src/sgml/filelist.sgmlin > M doc-xc/src/sgml/postgres.sgmlin > > ----------------------------------------------------------------------- > > Summary of changes: > src/backend/commands/trigger.c | 41 > ++++++++++++++++++-------------- > src/backend/executor/nodeModifyTable.c | 28 ++++++++++++++------- > src/backend/rewrite/rewriteHandler.c | 12 ++++---- > 3 files changed, 47 insertions(+), 34 deletions(-) > > > hooks/post-receive > -- > Postgres-XC > > > ------------------------------------------------------------------------------ > Precog is a next-generation analytics platform capable of advanced > analytics on semi-structured data. The platform includes APIs for building > apps and a phenomenal toolset for data science. Developers can use > our toolset for easy data analysis & visualization. Get a free account! > http://www2.precog.com/precogplatform/slashdotnewsletter > _______________________________________________ > Postgres-xc-committers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-committers > |
From: Amit K. <ami...@us...> - 2013-04-17 03:36:27
|
Project "Postgres-XC". The branch, rowtriggers_new has been updated via 44d07c5c1a405e5b896403741f8f2aea288d0313 (commit) via 9b6d7fa8859f03334192b13736deaf335fd8ceed (commit) from f56b798e7c49d7d2e0d835662988654349dde5e7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=44d07c5c1a405e5b896403741f8f2aea288d0313 commit 16b379f43cc62e5f2728c0932a18e2bad597c1f7 Author: Abbas <abb...@en...> Date: Tue Apr 16 13:26:09 2013 +0500 Add steps to add a new node in documentation. A doc-xc/src/sgml/add-node.sgmlin M doc-xc/src/sgml/filelist.sgmlin M doc-xc/src/sgml/postgres.sgmlin http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9b6d7fa8859f03334192b13736deaf335fd8ceed commit 16b379f43cc62e5f2728c0932a18e2bad597c1f7 Author: Abbas <abb...@en...> Date: Tue Apr 16 13:26:09 2013 +0500 Add steps to add a new node in documentation. A doc-xc/src/sgml/add-node.sgmlin M doc-xc/src/sgml/filelist.sgmlin M doc-xc/src/sgml/postgres.sgmlin ----------------------------------------------------------------------- Summary of changes: src/backend/commands/trigger.c | 41 ++++++++++++++++++-------------- src/backend/executor/nodeModifyTable.c | 28 ++++++++++++++------- src/backend/rewrite/rewriteHandler.c | 12 ++++---- 3 files changed, 47 insertions(+), 34 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-04-16 08:27:24
|
Project "Postgres-XC". The branch, master has been updated via 16b379f43cc62e5f2728c0932a18e2bad597c1f7 (commit) from 3e4a88ad8ed3542348d44c76de42f4080b5682f1 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=16b379f43cc62e5f2728c0932a18e2bad597c1f7 commit 16b379f43cc62e5f2728c0932a18e2bad597c1f7 Author: Abbas <abb...@en...> Date: Tue Apr 16 13:26:09 2013 +0500 Add steps to add a new node in documentation. A doc-xc/src/sgml/add-node.sgmlin M doc-xc/src/sgml/filelist.sgmlin M doc-xc/src/sgml/postgres.sgmlin ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/add-node.sgmlin | 244 +++++++++++++++++++++++++++++++++++++++ doc-xc/src/sgml/filelist.sgmlin | 1 + doc-xc/src/sgml/postgres.sgmlin | 2 +- 3 files changed, 246 insertions(+), 1 deletions(-) create mode 100644 doc-xc/src/sgml/add-node.sgmlin hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-04-16 08:19:52
|
Project "Postgres-XC". The branch, master has been updated via 3e4a88ad8ed3542348d44c76de42f4080b5682f1 (commit) from 44ccf0de9d4e7351064f508fb36d5c092d309f16 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=3e4a88ad8ed3542348d44c76de42f4080b5682f1 commit 3e4a88ad8ed3542348d44c76de42f4080b5682f1 Author: Abbas <abb...@en...> Date: Tue Apr 16 13:18:07 2013 +0500 Add support to restore existing database schemas on the new node to be added. This is the last patch of the series to suport new node addition to an existing Postgres-XC cluster. It provides a new command line option --restoremode to postgres that is to be used while restoring existing schema on the new node to be added. M src/backend/access/transam/xact.c M src/backend/commands/tablecmds.c M src/backend/main/main.c M src/backend/postmaster/postmaster.c M src/backend/storage/ipc/procarray.c M src/include/pgxc/pgxc.h ----------------------------------------------------------------------- Summary of changes: src/backend/access/transam/xact.c | 4 ++-- src/backend/commands/tablecmds.c | 15 ++++++++++++++- src/backend/main/main.c | 1 + src/backend/postmaster/postmaster.c | 25 +++++++++++++++++++++++++ src/backend/storage/ipc/procarray.c | 2 +- src/include/pgxc/pgxc.h | 1 + 6 files changed, 44 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-04-16 08:07:39
|
Project "Postgres-XC". The branch, master has been updated via 44ccf0de9d4e7351064f508fb36d5c092d309f16 (commit) from 5b647bef3e0bcd90002ccd0d0ebaf20b612ebce8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=44ccf0de9d4e7351064f508fb36d5c092d309f16 commit 44ccf0de9d4e7351064f508fb36d5c092d309f16 Author: Abbas <abb...@en...> Date: Tue Apr 16 13:03:33 2013 +0500 Add support to block DDLs to take backup for new node addition in an existing Postgres-XC cluster. The documentation is updated accordingly. The patch adds a new system function called pgxc_lock_for_backup(). When locked the system does not allow DDLs with the exception of CREATE NODE. M doc-xc/src/sgml/func.sgmlin M src/backend/postmaster/postmaster.c M src/backend/tcop/postgres.c M src/backend/tcop/utility.c M src/backend/utils/adt/lockfuncs.c M src/include/catalog/pg_proc.h M src/include/pgxc/pgxc.h M src/include/tcop/utility.h M src/include/utils/builtins.h ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/func.sgmlin | 330 +++++++++++++++++++++++++++++++++++ src/backend/postmaster/postmaster.c | 4 + src/backend/tcop/postgres.c | 7 + src/backend/tcop/utility.c | 118 +++++++++++++ src/backend/utils/adt/lockfuncs.c | 127 ++++++++++++++ src/include/catalog/pg_proc.h | 2 + src/include/pgxc/pgxc.h | 11 ++ src/include/tcop/utility.h | 4 + src/include/utils/builtins.h | 1 + 9 files changed, 604 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-04-16 07:26:37
|
Project "Postgres-XC". The branch, master has been updated via 5b647bef3e0bcd90002ccd0d0ebaf20b612ebce8 (commit) from a729fecb4ab90e639749c223e4772d7b738fca9d (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5b647bef3e0bcd90002ccd0d0ebaf20b612ebce8 commit 5b647bef3e0bcd90002ccd0d0ebaf20b612ebce8 Author: Abbas <abb...@en...> Date: Tue Apr 16 12:22:26 2013 +0500 Add support in pg_dump & pg_dumpall to add TO NODE clause in CREATE TABLE statements. The documentation is updated accordingly. The command line switch to use is --include-nodes M doc-xc/src/sgml/ref/pg_dump.sgmlin M src/bin/pg_dump/pg_dump.c M src/bin/pg_dump/pg_dump.h M src/bin/pg_dump/pg_dumpall.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/pg_dump.sgmlin | 13 +++++++++++++ src/bin/pg_dump/pg_dump.c | 20 +++++++++++++++++++- src/bin/pg_dump/pg_dump.h | 1 + src/bin/pg_dump/pg_dumpall.c | 8 ++++++++ 4 files changed, 41 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |