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: Koichi S. <koi...@us...> - 2013-04-09 05:38:17
|
Project "Postgres-XC". The branch, master has been updated via 0b54d64f0e89f9bd76456a71039502b884e8cf5a (commit) from 2d2583a77adfce01b3a657c22a4d660148231eb0 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0b54d64f0e89f9bd76456a71039502b884e8cf5a commit 0b54d64f0e89f9bd76456a71039502b884e8cf5a Author: Koichi Suzuki <koi...@gm...> Date: Tue Apr 9 14:33:54 2013 +0900 This is the first official commit of pgxc_ctl utility in C. Source directory is /contrib because 1) pgxc_ctl does not support every variety of XC cluster which you can configure with XC core, and 2) pgxc_ctl makes a couple of assumption (user name, ssh connection and database owner) which is not necessary in XC core. They are announced early in the April, 2013 in the mailing list. Document will be committed later. Configuration file is almost compatible with bash version. You can still write the configuration with bash script. Remaining work fir 1.1 is to add a feature to add/remove node. Abbas is working on the core feature. Before the feature release A contrib/pgxc_ctl/Makefile A contrib/pgxc_ctl/bash_handler.c A contrib/pgxc_ctl/bash_handler.h A contrib/pgxc_ctl/config.c A contrib/pgxc_ctl/config.h A contrib/pgxc_ctl/coord_cmd.c A contrib/pgxc_ctl/coord_cmd.h A contrib/pgxc_ctl/coord_command.h A contrib/pgxc_ctl/datanode_cmd.c A contrib/pgxc_ctl/datanode_cmd.h A contrib/pgxc_ctl/do_command.c A contrib/pgxc_ctl/do_command.h A contrib/pgxc_ctl/do_shell.c A contrib/pgxc_ctl/do_shell.h A contrib/pgxc_ctl/gtm_cmd.c A contrib/pgxc_ctl/gtm_cmd.h A contrib/pgxc_ctl/gtm_util.c A contrib/pgxc_ctl/gtm_util.h A contrib/pgxc_ctl/make_signature A contrib/pgxc_ctl/mcxt.c A contrib/pgxc_ctl/monitor.c A contrib/pgxc_ctl/monitor.h A contrib/pgxc_ctl/pgxc_ctl.bash A contrib/pgxc_ctl/pgxc_ctl.c A contrib/pgxc_ctl/pgxc_ctl.h A contrib/pgxc_ctl/pgxc_ctl_bash.c A contrib/pgxc_ctl/pgxc_ctl_bash.org A contrib/pgxc_ctl/pgxc_ctl_bash_2 A contrib/pgxc_ctl/pgxc_ctl_bash_conf_part A contrib/pgxc_ctl/pgxc_ctl_conf_part A contrib/pgxc_ctl/pgxc_ctl_log.c A contrib/pgxc_ctl/pgxc_ctl_log.h A contrib/pgxc_ctl/signature.h A contrib/pgxc_ctl/utils.c A contrib/pgxc_ctl/utils.h A contrib/pgxc_ctl/variables.c A contrib/pgxc_ctl/variables.h A contrib/pgxc_ctl/varnames.h ----------------------------------------------------------------------- Summary of changes: contrib/pgxc_ctl/Makefile | 45 + contrib/pgxc_ctl/bash_handler.c | 76 + contrib/pgxc_ctl/bash_handler.h | 18 + contrib/pgxc_ctl/config.c | 1037 ++++ contrib/pgxc_ctl/config.h | 42 + contrib/pgxc_ctl/coord_cmd.c | 1315 +++++ contrib/pgxc_ctl/coord_cmd.h | 64 + contrib/pgxc_ctl/coord_command.h | 1 + contrib/pgxc_ctl/datanode_cmd.c | 1189 +++++ contrib/pgxc_ctl/datanode_cmd.h | 60 + contrib/pgxc_ctl/do_command.c | 2096 ++++++++ contrib/pgxc_ctl/do_command.h | 16 + contrib/pgxc_ctl/do_shell.c | 726 +++ contrib/pgxc_ctl/do_shell.h | 105 + contrib/pgxc_ctl/gtm_cmd.c | 1240 +++++ contrib/pgxc_ctl/gtm_cmd.h | 70 + contrib/pgxc_ctl/gtm_util.c | 167 + contrib/pgxc_ctl/gtm_util.h | 23 + contrib/pgxc_ctl/make_signature | 136 + contrib/pgxc_ctl/mcxt.c | 77 + contrib/pgxc_ctl/monitor.c | 467 ++ contrib/pgxc_ctl/monitor.h | 18 + contrib/pgxc_ctl/pgxc_ctl.bash | 5342 ++++++++++++++++++++ contrib/pgxc_ctl/pgxc_ctl.c | 562 ++ contrib/pgxc_ctl/pgxc_ctl.h | 58 + contrib/pgxc_ctl/pgxc_ctl_bash.c | 661 +++ contrib/pgxc_ctl/pgxc_ctl_bash.org | 885 ++++ contrib/pgxc_ctl/pgxc_ctl_bash_2 | 302 ++ .../pgxc_ctl/pgxc_ctl_bash_conf_part | 0 contrib/pgxc_ctl/pgxc_ctl_conf_part | 313 ++ contrib/pgxc_ctl/pgxc_ctl_log.c | 333 ++ contrib/pgxc_ctl/pgxc_ctl_log.h | 63 + contrib/pgxc_ctl/signature.h | 15 + contrib/pgxc_ctl/utils.c | 354 ++ contrib/pgxc_ctl/utils.h | 39 + contrib/pgxc_ctl/variables.c | 354 ++ contrib/pgxc_ctl/variables.h | 69 + contrib/pgxc_ctl/varnames.h | 145 + 38 files changed, 18483 insertions(+), 0 deletions(-) create mode 100644 contrib/pgxc_ctl/Makefile create mode 100644 contrib/pgxc_ctl/bash_handler.c create mode 100644 contrib/pgxc_ctl/bash_handler.h create mode 100644 contrib/pgxc_ctl/config.c create mode 100644 contrib/pgxc_ctl/config.h create mode 100644 contrib/pgxc_ctl/coord_cmd.c create mode 100644 contrib/pgxc_ctl/coord_cmd.h create mode 100644 contrib/pgxc_ctl/coord_command.h create mode 100644 contrib/pgxc_ctl/datanode_cmd.c create mode 100644 contrib/pgxc_ctl/datanode_cmd.h create mode 100644 contrib/pgxc_ctl/do_command.c create mode 100644 contrib/pgxc_ctl/do_command.h create mode 100644 contrib/pgxc_ctl/do_shell.c create mode 100644 contrib/pgxc_ctl/do_shell.h create mode 100644 contrib/pgxc_ctl/gtm_cmd.c create mode 100644 contrib/pgxc_ctl/gtm_cmd.h create mode 100644 contrib/pgxc_ctl/gtm_util.c create mode 100644 contrib/pgxc_ctl/gtm_util.h create mode 100755 contrib/pgxc_ctl/make_signature create mode 100644 contrib/pgxc_ctl/mcxt.c create mode 100644 contrib/pgxc_ctl/monitor.c create mode 100644 contrib/pgxc_ctl/monitor.h create mode 100755 contrib/pgxc_ctl/pgxc_ctl.bash create mode 100644 contrib/pgxc_ctl/pgxc_ctl.c create mode 100644 contrib/pgxc_ctl/pgxc_ctl.h create mode 100644 contrib/pgxc_ctl/pgxc_ctl_bash.c create mode 100755 contrib/pgxc_ctl/pgxc_ctl_bash.org create mode 100755 contrib/pgxc_ctl/pgxc_ctl_bash_2 copy src/backend/port/tas/dummy.s => contrib/pgxc_ctl/pgxc_ctl_bash_conf_part (100%) create mode 100755 contrib/pgxc_ctl/pgxc_ctl_conf_part create mode 100644 contrib/pgxc_ctl/pgxc_ctl_log.c create mode 100644 contrib/pgxc_ctl/pgxc_ctl_log.h create mode 100644 contrib/pgxc_ctl/signature.h create mode 100644 contrib/pgxc_ctl/utils.c create mode 100644 contrib/pgxc_ctl/utils.h create mode 100644 contrib/pgxc_ctl/variables.c create mode 100644 contrib/pgxc_ctl/variables.h create mode 100644 contrib/pgxc_ctl/varnames.h hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-04-09 03:28:18
|
Project "Postgres-XC". The branch, master has been updated via 2d2583a77adfce01b3a657c22a4d660148231eb0 (commit) from 85a1a344492e9c8f4870d57210d79344b6d7b3a6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2d2583a77adfce01b3a657c22a4d660148231eb0 commit 2d2583a77adfce01b3a657c22a4d660148231eb0 Author: Abbas <abb...@en...> Date: Tue Apr 9 08:26:09 2013 +0500 The function pgxc_advisory_lock neglects the return of LockAcquire in case of a single coordinator. This results in the same lock request succeed from two different sessions e.g. select pg_try_advisory_lock(1234,5678); This patch fixes this problem. M src/backend/utils/adt/lockfuncs.c ----------------------------------------------------------------------- Summary of changes: src/backend/utils/adt/lockfuncs.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) hooks/post-receive -- Postgres-XC |