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: 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 |
From: Abbas B. <ga...@us...> - 2013-04-16 07:17:54
|
Project "Postgres-XC". The branch, master has been updated via a729fecb4ab90e639749c223e4772d7b738fca9d (commit) from a19a164ccb70c198f245b07c6cf9464ad8125e73 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a729fecb4ab90e639749c223e4772d7b738fca9d commit a729fecb4ab90e639749c223e4772d7b738fca9d Author: Abbas <abb...@en...> Date: Tue Apr 16 12:13:25 2013 +0500 Add support in pg_dumpall to dump existing nodes and groups. The documentation is updated accordingly. To dump existing nodes and node groups use --dump-nodes command line switch. M doc-xc/src/sgml/ref/pg_dumpall.sgmlin M src/bin/pg_dump/pg_dumpall.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/pg_dumpall.sgmlin | 11 ++++ src/bin/pg_dump/pg_dumpall.c | 97 ++++++++++++++++++++++++++++++++- 2 files changed, 107 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |