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
(2) |
3
|
4
|
5
|
6
(1) |
7
(1) |
8
(3) |
9
|
10
|
11
|
12
(2) |
13
(3) |
14
(2) |
15
(7) |
16
(4) |
17
|
18
|
19
(1) |
20
(7) |
21
|
22
(2) |
23
(1) |
24
|
25
|
26
(1) |
27
|
28
(1) |
29
|
30
|
31
|
From: Michael P. <mic...@us...> - 2011-12-13 04:23:43
|
Project "Postgres-XC". The branch, master has been updated via f5bc8bc529edaf30617c2c23682df1367d06fd02 (commit) from 385d0bc10bd9c45e93e4d50b7d5658fc5ce7be9b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f5bc8bc529edaf30617c2c23682df1367d06fd02 commit f5bc8bc529edaf30617c2c23682df1367d06fd02 Author: Michael P <mic...@us...> Date: Tue Dec 13 13:24:14 2011 +0900 Remove references to node masters in error messages Master/slave concept in pgxc node management has been removed with 2a406e56dea3e750e74cc38115e83e30217b4822. M doc-xc/src/sgml/ref/create_node.sgmlin M doc-xc/src/sgml/ref/create_nodegroup.sgmlin M src/backend/catalog/heap.c M src/backend/pgxc/nodemgr/groupmgr.c M src/backend/pgxc/nodemgr/nodemgr.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/tcop/utility.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_node.sgmlin | 2 +- doc-xc/src/sgml/ref/create_nodegroup.sgmlin | 2 +- src/backend/catalog/heap.c | 10 +++++----- src/backend/pgxc/nodemgr/groupmgr.c | 2 +- src/backend/pgxc/nodemgr/nodemgr.c | 8 ++++---- src/backend/pgxc/pool/pgxcnode.c | 2 +- src/backend/tcop/utility.c | 4 ++-- 7 files changed, 15 insertions(+), 15 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-13 03:17:27
|
Project "Postgres-XC". The branch, master has been updated via 385d0bc10bd9c45e93e4d50b7d5658fc5ce7be9b (commit) from a0286d4a01d5f1eb93902b23e218cfdd964b81e4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=385d0bc10bd9c45e93e4d50b7d5658fc5ce7be9b commit 385d0bc10bd9c45e93e4d50b7d5658fc5ce7be9b Author: Michael P <mic...@us...> Date: Tue Dec 13 12:20:23 2011 +0900 Fix for bug 3458423: drop cascade on a temporary object DROP CASCADE having dependencies with temporary objects was using implicit 2PC. We need to be sure that 2PC is not used in this case as temporary objects cannot be prepared. M src/backend/catalog/dependency.c ----------------------------------------------------------------------- Summary of changes: src/backend/catalog/dependency.c | 86 ++++++++++++++++++++++++++------------ 1 files changed, 59 insertions(+), 27 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-13 02:03:51
|
Project "Postgres-XC". The branch, master has been updated via a0286d4a01d5f1eb93902b23e218cfdd964b81e4 (commit) from 0f1a7f6a702a73b36483ace524db181b0b7f49ed (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a0286d4a01d5f1eb93902b23e218cfdd964b81e4 commit a0286d4a01d5f1eb93902b23e218cfdd964b81e4 Author: Michael P <mic...@us...> Date: Tue Dec 13 11:04:10 2011 +0900 Fix for bug 3458413: view creation on a temporary table A simple test case like this was failing: create temp table ba (a int); create view ba_v as select * from ba; The failure was caused by the list of target objects that were not correctly analyzed, leading to a use of 2PC on this view which is indirectly temporary. M src/backend/commands/view.c M src/backend/pgxc/pool/execRemote.c M src/backend/tcop/utility.c M src/include/pgxc/execRemote.h ----------------------------------------------------------------------- Summary of changes: src/backend/commands/view.c | 9 +++++++++ src/backend/pgxc/pool/execRemote.c | 11 +++++++++++ src/backend/tcop/utility.c | 6 +++--- src/include/pgxc/execRemote.h | 2 ++ 4 files changed, 25 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |