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
|
5
|
6
(1) |
7
|
8
(2) |
9
|
10
|
11
|
12
|
13
|
14
|
15
(3) |
16
(2) |
17
(4) |
18
(5) |
19
|
20
|
21
(2) |
22
(1) |
23
|
24
(4) |
25
(1) |
26
|
27
|
28
(2) |
29
(1) |
30
|
|
|
|
From: Michael P. <mic...@us...> - 2011-11-15 01:51:20
|
Project "Postgres-XC". The branch, master has been updated via 2aea0c2e0e01031f5dd4260b6985dc0ed4eadc50 (commit) from 6ca371275caa47a18f570c45abd095c19a0353d7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2aea0c2e0e01031f5dd4260b6985dc0ed4eadc50 commit 2aea0c2e0e01031f5dd4260b6985dc0ed4eadc50 Author: Michael P <mic...@us...> Date: Tue Nov 15 09:54:54 2011 +0900 Support for data distribution among a subset of datanodes CREATE TABLE has been extended with the following clause: CREATE TABLE ... [ TO ( GROUP groupname | NODE nodename [, ... ] ) ] This clause allows to distribute data among a subset of nodes listed by a node list, or a group alias. Node groups can be defined with CREATE NODE GROUP. The base structure for this support was added with commit 56a90674444df1464c8e7012c6113efd7f9bc7db, but check of mapping of subsets of node list was still missing for the management of join push down and materialization evaluation in planner. M src/backend/catalog/heap.c M src/backend/nodes/list.c M src/backend/pgxc/plan/planner.c M src/include/nodes/pg_list.h M src/include/pgxc/locator.h ----------------------------------------------------------------------- Summary of changes: src/backend/catalog/heap.c | 11 --- src/backend/nodes/list.c | 28 +++++++ src/backend/pgxc/plan/planner.c | 162 ++++++++++++++++++++++++++++++++++++++- src/include/nodes/pg_list.h | 5 +- src/include/pgxc/locator.h | 9 ++- 5 files changed, 198 insertions(+), 17 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-15 00:21:39
|
Project "Postgres-XC". The branch, master has been updated via 6ca371275caa47a18f570c45abd095c19a0353d7 (commit) from ac5fc3f89bd0a73ce7bdadd6e830a44dcdc7602b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6ca371275caa47a18f570c45abd095c19a0353d7 commit 6ca371275caa47a18f570c45abd095c19a0353d7 Author: Michael P <mic...@us...> Date: Tue Nov 15 08:40:36 2011 +0900 Fix for bug 3431570: crash with Hadoop and sqoop This crash was happening at the execution of a RemoteQuery node when trying to allocate memory for fresh handles taken from pool. In this case allocation was made in TopTransactionContext. However, in the case of sqoop, which is a Hadoop module creating an interface with a db backend, it happened that TopTransactionContext was NULL, leading to a crash of the node. This commit switches the memory context to CurrentMemoryContext and contains fixes for possible memory leaks related to barrier and COPY. Fix from Pavan Deolasee M src/backend/pgxc/barrier/barrier.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/tcop/postgres.c M src/include/pgxc/pgxcnode.h ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/barrier/barrier.c | 14 +++++--------- src/backend/pgxc/pool/execRemote.c | 33 ++++++--------------------------- src/backend/pgxc/pool/pgxcnode.c | 26 ++++++++++++++++++-------- src/backend/tcop/postgres.c | 1 + src/include/pgxc/pgxcnode.h | 3 ++- 5 files changed, 32 insertions(+), 45 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-15 00:21:26
|
Project "Postgres-XC". The branch, REL0_9_6_STABLE has been updated via 0cf8f2593affb280d57ff9e08f5d4cc348e86dad (commit) from 213829f9d85bdc1ac38a7386987785430768e4d9 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0cf8f2593affb280d57ff9e08f5d4cc348e86dad commit 6ca371275caa47a18f570c45abd095c19a0353d7 Author: Michael P <mic...@us...> Date: Tue Nov 15 08:40:36 2011 +0900 Fix for bug 3431570: crash with Hadoop and sqoop This crash was happening at the execution of a RemoteQuery node when trying to allocate memory for fresh handles taken from pool. In this case allocation was made in TopTransactionContext. However, in the case of sqoop, which is a Hadoop module creating an interface with a db backend, it happened that TopTransactionContext was NULL, leading to a crash of the node. This commit switches the memory context to CurrentMemoryContext and contains fixes for possible memory leaks related to barrier and COPY. Fix from Pavan Deolasee M src/backend/pgxc/barrier/barrier.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/tcop/postgres.c M src/include/pgxc/pgxcnode.h ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/barrier/barrier.c | 14 +++++--------- src/backend/pgxc/pool/execRemote.c | 33 ++++++--------------------------- src/backend/pgxc/pool/pgxcnode.c | 25 ++++++++++++++++++------- src/backend/tcop/postgres.c | 1 + src/include/pgxc/pgxcnode.h | 3 ++- 5 files changed, 32 insertions(+), 44 deletions(-) hooks/post-receive -- Postgres-XC |