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
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
(1) |
20
|
21
(1) |
22
|
23
|
24
|
25
|
26
(1) |
27
|
28
|
29
|
30
|
31
|
|
|
|
|
|
|
From: Ashutosh B. <ash...@us...> - 2013-03-19 10:31:03
|
Project "Postgres-XC". The branch, master has been updated via 4634c0bf36fa7e54d16ffaf2a6c0085d4f9a3afc (commit) from 15f9527dc8ca91866e9b6595a3a46b2dcd822ccd (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=4634c0bf36fa7e54d16ffaf2a6c0085d4f9a3afc commit 4634c0bf36fa7e54d16ffaf2a6c0085d4f9a3afc Author: Ashutosh Bapat <ash...@en...> Date: Tue Mar 19 15:53:21 2013 +0530 Ship OUTER JOINs to datanodes in following cases 1. An equi-outer-join between the distribution columns of two distributed tables such that the tables are distributed on same set of nodes and distribution strategy is same and datatype of distribution column is same, is shippable to the datanodes where the distributed tables are distributed. 2. An outer-join between a distributed and a replicated relation is shippable to the datanodes where distributed relation is distributed if the replicated relation is replicated on those nodes and the outer side of join is distributed relation. 3. An outer-join between two replicated relations shippable to a datanode where both the relations are available. Justification for shippability can be found in mail thread with subject "shipping outer joins" on pgxc-hackers mailing list. M src/backend/optimizer/path/pgxcpath.c M src/backend/optimizer/util/pgxcship.c M src/include/optimizer/pgxcplan.h M src/include/optimizer/pgxcship.h M src/test/regress/expected/join.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/sql/xc_FQS_join.sql ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/path/pgxcpath.c | 75 +---------- src/backend/optimizer/util/pgxcship.c | 209 ++++++++++++++++++++------- src/include/optimizer/pgxcplan.h | 2 +- src/include/optimizer/pgxcship.h | 7 +- src/test/regress/expected/join.out | 41 ++---- src/test/regress/expected/xc_FQS_join.out | 223 +++++++++++++++++++++++++++++ src/test/regress/sql/xc_FQS_join.sql | 72 +++++++++ 7 files changed, 474 insertions(+), 155 deletions(-) hooks/post-receive -- Postgres-XC |