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
(1) |
5
(2) |
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
(7) |
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
(2) |
|
|
|
|
From: Michael P <mic...@us...> - 2010-08-04 23:38:17
|
Project "Postgres-XC". The branch, master has been updated via 086c5c6be32d4ca9232523cd64caf6d29aaac42c (commit) from d7ca431066efe320107581186ab853b28fa5f7a7 (commit) - Log ----------------------------------------------------------------- commit 086c5c6be32d4ca9232523cd64caf6d29aaac42c Author: Michael P <mic...@us...> Date: Thu Aug 5 08:36:24 2010 +0900 Correction of bugs in pgxc_ddl reported by Bug report 3039166 in Source Forge Tracker. Those bugs were linked with string management problems in the script. diff --git a/src/bin/scripts/pgxc_ddl b/src/bin/scripts/pgxc_ddl index efc2f69..2442595 100644 --- a/src/bin/scripts/pgxc_ddl +++ b/src/bin/scripts/pgxc_ddl @@ -125,17 +125,17 @@ fi hosts=`cat $PGXC_CONF | grep coordinator_hosts | cut -d "'" -f 2` ports=`cat $PGXC_CONF | grep coordinator_ports | cut -d "'" -f 2` folders=`cat $PGXC_CONF | grep coordinator_folders | cut -d "'" -f 2` -if [ "hosts" = "" ] +if [ "$hosts" = "" ] then echo "coordinator_hosts not defined in pgxc.conf" exit 2 fi -if [ "ports" = "" ] +if [ "$ports" = "" ] then echo "coordinator_ports not defined in pgxc.conf" exit 2 fi -if [ "folders" = "" ] +if [ "$folders" = "" ] then echo "coordinator_folders not defined in pgxc.conf" exit 2 @@ -276,7 +276,7 @@ fi #Main process begins #Check if the database is defined, This could lead to coordinator being stopped uselessly -if [ $DB_NAME != "" ] +if [ "$DB_NAME" != "" ] then #Simply launch a fake SQL on the Database wanted $PSQL_CLIENT -h ${COORD_HOSTNAMES[$COORD_ORIG_INDEX]} -p ${COORD_PORTS[$COORD_ORIG_INDEX]} -c 'select now()' -d $DB_NAME; err=$? ----------------------------------------------------------------------- Summary of changes: src/bin/scripts/pgxc_ddl | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |