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
|
3
|
4
|
5
|
6
(1) |
7
|
8
(2) |
9
|
10
|
11
|
12
|
13
|
14
|
15
(3) |
16
(2) |
17
(4) |
18
(5) |
19
|
20
|
21
(2) |
22
(1) |
23
|
24
(4) |
25
(1) |
26
|
27
|
28
(2) |
29
(1) |
30
|
|
|
|
From: Koichi S. <koi...@us...> - 2011-11-29 04:18:10
|
Project "Postgres-XC". The branch, master has been updated via a43534d7519176e6dcdaf4517b329c2fed935c8b (commit) from 66a9181ee348aa2149b42ef79fa0ef6da95e2390 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a43534d7519176e6dcdaf4517b329c2fed935c8b commit a43534d7519176e6dcdaf4517b329c2fed935c8b Author: Koichi Suzuki <koi...@gm...> Date: Tue Nov 29 13:16:16 2011 +0900 This commit includes configuration file support for GTM and GTM-Proxy, together with a couple of bug fix of GTM Standby and GTM-Proxy reconnect. Now GTM and GTM-Proxy configuration files are mandatory. They should be placed at the working directory, as specified by -D command line option, as "gtm.conf" and "gtm_proxy.conf", respectively. Their format is the same as Details will be found in the documentation. Similar to coordinator/datanode, you can override some of the parameters in configuration file by command line options. Modified/affected files are as follows: modified: doc-xc/src/sgml/ref/gtm.sgmlin modified: doc-xc/src/sgml/ref/gtm_proxy.sgmlin modified: src/gtm/Makefile modified: src/gtm/README modified: src/gtm/common/Makefile new file: src/gtm/common/gtm_opt_handler.c new file: src/gtm/common/gtm_opt_scanner.l modified: src/gtm/gtm_ctl/gtm_ctl.c modified: src/gtm/main/Makefile new file: src/gtm/main/gtm.conf.sample new file: src/gtm/main/gtm_opt.c modified: src/gtm/main/gtm_standby.c modified: src/gtm/main/main.c modified: src/gtm/path/path.c modified: src/gtm/proxy/Makefile new file: src/gtm/proxy/gtm_proxy.conf.sample new file: src/gtm/proxy/gtm_proxy_opt.c modified: src/gtm/proxy/proxy_main.c modified: src/gtm/recovery/register.c modified: src/gtm/recovery/standby_utils.c modified: src/include/gtm/gtm.h new file: src/include/gtm/gtm_opt.h new file: src/include/gtm/gtm_opt_tables.h modified: src/include/gtm/gtm_proxy.h modified: src/include/gtm/gtm_standby.h modified: src/include/gtm/path.h M doc-xc/src/sgml/ref/gtm.sgmlin M doc-xc/src/sgml/ref/gtm_proxy.sgmlin M src/gtm/Makefile M src/gtm/README M src/gtm/common/Makefile A src/gtm/common/gtm_opt_handler.c A src/gtm/common/gtm_opt_scanner.l M src/gtm/gtm_ctl/gtm_ctl.c M src/gtm/main/Makefile A src/gtm/main/gtm.conf.sample A src/gtm/main/gtm_opt.c M src/gtm/main/gtm_standby.c M src/gtm/main/main.c M src/gtm/path/path.c M src/gtm/proxy/Makefile A src/gtm/proxy/gtm_proxy.conf.sample A src/gtm/proxy/gtm_proxy_opt.c M src/gtm/proxy/proxy_main.c M src/gtm/recovery/register.c M src/gtm/recovery/standby_utils.c M src/include/gtm/gtm.h A src/include/gtm/gtm_opt.h A src/include/gtm/gtm_opt_tables.h M src/include/gtm/gtm_proxy.h M src/include/gtm/gtm_standby.h M src/include/gtm/path.h ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/gtm.sgmlin | 229 ++ doc-xc/src/sgml/ref/gtm_proxy.sgmlin | 208 ++ src/gtm/Makefile | 4 + src/gtm/README | 40 + src/gtm/common/Makefile | 13 +- src/gtm/common/gtm_opt_handler.c | 3522 ++++++++++++++++++++ src/gtm/common/gtm_opt_scanner.l | 92 + src/gtm/gtm_ctl/gtm_ctl.c | 46 +- src/gtm/main/Makefile | 4 +- src/gtm/main/gtm.conf.sample | 58 + src/gtm/main/gtm_opt.c | 342 ++ src/gtm/main/gtm_standby.c | 12 +- src/gtm/main/main.c | 153 +- src/gtm/path/path.c | 62 + src/gtm/proxy/Makefile | 4 +- src/gtm/proxy/gtm_proxy.conf.sample | 64 + src/gtm/proxy/gtm_proxy_opt.c | 392 +++ src/gtm/proxy/proxy_main.c | 218 ++- src/gtm/recovery/register.c | 144 +- src/gtm/recovery/standby_utils.c | 6 +- src/include/gtm/gtm.h | 2 +- src/include/gtm/gtm_opt.h | 328 ++ .../{utils/guc_tables.h => gtm/gtm_opt_tables.h} | 157 +- src/include/gtm/gtm_proxy.h | 2 +- src/include/gtm/gtm_standby.h | 6 + src/include/gtm/path.h | 3 + 26 files changed, 5875 insertions(+), 236 deletions(-) create mode 100644 src/gtm/common/gtm_opt_handler.c create mode 100644 src/gtm/common/gtm_opt_scanner.l create mode 100644 src/gtm/main/gtm.conf.sample create mode 100644 src/gtm/main/gtm_opt.c create mode 100644 src/gtm/proxy/gtm_proxy.conf.sample create mode 100644 src/gtm/proxy/gtm_proxy_opt.c create mode 100644 src/include/gtm/gtm_opt.h copy src/include/{utils/guc_tables.h => gtm/gtm_opt_tables.h} (53%) hooks/post-receive -- Postgres-XC |