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
(1) |
2
|
3
|
4
|
5
|
6
(4) |
7
(1) |
8
(6) |
9
(3) |
10
|
11
|
12
|
13
(1) |
14
(4) |
15
(1) |
16
(1) |
17
|
18
|
19
|
20
|
21
|
22
(8) |
23
|
24
|
25
|
26
(2) |
27
(3) |
28
(1) |
29
(6) |
30
(1) |
31
|
From: Michael P. <mic...@us...> - 2012-03-16 00:42:56
|
Project "Postgres-XC". The branch, master has been updated via 6086e355914fdebcd2c002d7ee1d3132582a33f9 (commit) from 648eede9a64745eba401a9b73a747b893cf781b3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6086e355914fdebcd2c002d7ee1d3132582a33f9 commit 6086e355914fdebcd2c002d7ee1d3132582a33f9 Author: Michael P <mi...@ot...> Date: Fri Mar 16 09:38:19 2012 +0900 Addition of initgtm: module for GTm/Proxy initialization inigtm uses the infrastructure of initdb to provide the means to initialize the data folder of a GTM or a GTM proxy. This is particularly useful in case Postgres-XC binaries are installed in a folder where a user cannot have access to it as, like initdb, it copies the sample configuration files and makes them available for GTM instances. initgtm has really a basic infrastructure now, but can be easily extended to provide support for a cluster ID or settings related to GTM that need to be decided at initialization. Documentation is included. M doc-xc/src/sgml/bookindex.sgmlin M doc-xc/src/sgml/ref/allfiles.sgmlin A doc-xc/src/sgml/ref/initgtm.sgmlin M doc-xc/src/sgml/reference.sgmlin M src/bin/Makefile A src/bin/initgtm/Makefile A src/bin/initgtm/initgtm.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/bookindex.sgmlin | 8 + doc-xc/src/sgml/ref/allfiles.sgmlin | 3 + doc-xc/src/sgml/ref/initgtm.sgmlin | 205 +++++++ doc-xc/src/sgml/reference.sgmlin | 3 + src/bin/Makefile | 2 +- src/bin/{initdb => initgtm}/Makefile | 29 +- src/bin/initgtm/initgtm.c | 1117 ++++++++++++++++++++++++++++++++++ 7 files changed, 1348 insertions(+), 19 deletions(-) create mode 100644 doc-xc/src/sgml/ref/initgtm.sgmlin copy src/bin/{initdb => initgtm}/Makefile (51%) create mode 100644 src/bin/initgtm/initgtm.c hooks/post-receive -- Postgres-XC |