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
(4) |
3
|
4
|
5
|
6
|
7
(4) |
8
(2) |
9
|
10
|
11
|
12
|
13
|
14
(4) |
15
(4) |
16
|
17
|
18
|
19
|
20
|
21
(6) |
22
(1) |
23
|
24
|
25
|
26
(3) |
27
(6) |
28
|
29
(1) |
30
|
|
From: Michael P. <mic...@us...> - 2012-11-01 00:06:37
|
Project "Postgres-XC". The branch, master has been updated via f117dc363e05bd79245c8739a12e0428a67c45f4 (commit) via 714e09b2b65e268b3ee167c1edf35fdfb05bad85 (commit) from cdd8b22ce1e59d78576e1e4270b219f2644586a5 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f117dc363e05bd79245c8739a12e0428a67c45f4 commit f117dc363e05bd79245c8739a12e0428a67c45f4 Author: Michael Paquier <mi...@ot...> Date: Thu Nov 1 09:00:33 2012 +0900 Move gtm_ctl from src/gtm to src/bin Like initgtm, gtm_ctl is a wrapper helping to perform operations on GTM the same way pg_ctl operates with PG servers, so it makes sense to move its code there and clean at the same time a bit the GTM core code tree. It is important to note that gtm_ctl has dependencies with GTM client libraries as those functions are used for things like reconnection of a Proxy to a GTM. M src/bin/Makefile R100 src/gtm/gtm_ctl/.gitignore src/bin/gtm_ctl/.gitignore R083 src/gtm/gtm_ctl/Makefile src/bin/gtm_ctl/Makefile R100 src/gtm/gtm_ctl/gtm_ctl.c src/bin/gtm_ctl/gtm_ctl.c M src/gtm/Makefile http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=714e09b2b65e268b3ee167c1edf35fdfb05bad85 commit f117dc363e05bd79245c8739a12e0428a67c45f4 Author: Michael Paquier <mi...@ot...> Date: Thu Nov 1 09:00:33 2012 +0900 Move gtm_ctl from src/gtm to src/bin Like initgtm, gtm_ctl is a wrapper helping to perform operations on GTM the same way pg_ctl operates with PG servers, so it makes sense to move its code there and clean at the same time a bit the GTM core code tree. It is important to note that gtm_ctl has dependencies with GTM client libraries as those functions are used for things like reconnection of a Proxy to a GTM. M src/bin/Makefile R100 src/gtm/gtm_ctl/.gitignore src/bin/gtm_ctl/.gitignore R083 src/gtm/gtm_ctl/Makefile src/bin/gtm_ctl/Makefile R100 src/gtm/gtm_ctl/gtm_ctl.c src/bin/gtm_ctl/gtm_ctl.c M src/gtm/Makefile ----------------------------------------------------------------------- Summary of changes: src/backend/Makefile | 13 ++++- src/bin/Makefile | 2 +- src/{gtm => bin}/gtm_ctl/.gitignore | 0 src/bin/gtm_ctl/Makefile | 46 ++++++++++++++++++ src/{gtm => bin}/gtm_ctl/gtm_ctl.c | 0 src/gtm/Makefile | 35 +------------- src/gtm/client/Makefile | 18 +++---- src/gtm/client/strlcpy.c | 72 ----------------------------- src/gtm/common/Makefile | 28 ++++------- src/gtm/config/Makefile | 15 ++---- src/gtm/gtm_ctl/Makefile | 34 -------------- src/gtm/libpq/Makefile | 14 ++--- src/gtm/main/Makefile | 40 +++++++++++----- src/gtm/main/gtm_standby.c | 49 +++++++++++++++++++- src/gtm/{recovery => main}/register_gtm.c | 45 ------------------ src/gtm/{recovery => main}/replication.c | 0 src/gtm/path/Makefile | 15 ++---- src/gtm/proxy/Makefile | 41 +++++++++++----- src/gtm/recovery/Makefile | 16 ++---- src/include/gtm/gtm_standby.h | 5 +- 20 files changed, 208 insertions(+), 280 deletions(-) rename src/{gtm => bin}/gtm_ctl/.gitignore (100%) create mode 100644 src/bin/gtm_ctl/Makefile rename src/{gtm => bin}/gtm_ctl/gtm_ctl.c (100%) delete mode 100644 src/gtm/client/strlcpy.c delete mode 100644 src/gtm/gtm_ctl/Makefile rename src/gtm/{recovery => main}/register_gtm.c (91%) rename src/gtm/{recovery => main}/replication.c (100%) hooks/post-receive -- Postgres-XC |