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
(1) |
3
|
4
(1) |
5
|
6
|
7
|
8
(5) |
9
(2) |
10
(5) |
11
(1) |
12
(1) |
13
|
14
|
15
(3) |
16
(5) |
17
(5) |
18
(6) |
19
(10) |
20
|
21
|
22
(3) |
23
(4) |
24
|
25
(3) |
26
|
27
|
28
|
29
|
30
|
|
|
|
|
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 |