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-26 05:16:39
|
Project "Postgres-XC". The branch, master has been updated via 85a1a344492e9c8f4870d57210d79344b6d7b3a6 (commit) from fd159b3983473599768ca36ed8e4b8bfa1ed1969 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=85a1a344492e9c8f4870d57210d79344b6d7b3a6 commit 85a1a344492e9c8f4870d57210d79344b6d7b3a6 Author: Ashutosh Bapat <ash...@en...> Date: Tue Mar 26 10:39:48 2013 +0530 Handle subqueries in FROM clause in FQS planning. For every such subquery, we find out the datanodes where the query should be executed and type of distribution of the result (replicated/distributed) using the distribution information of relations participating in the query. This process is carried out recursively, in case the relations participating in the query, are in turn subqueries. If the result is distributed, we also maintain the list of Var nodes on which the result is distributed. The distribution information of result of a subquery is then treated in the same way as the distribution information of a table to derive the distribution information of the result of the whole query (of which the subqueries are part). M src/backend/nodes/copyfuncs.c M src/backend/nodes/outfuncs.c M src/backend/optimizer/path/pgxcpath.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/optimizer/util/pgxcship.c M src/include/optimizer/pgxcplan.h M src/include/optimizer/pgxcship.h M src/include/pgxc/locator.h M src/test/regress/expected/xc_FQS.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/sql/xc_FQS.sql M src/test/regress/sql/xc_FQS_join.sql ----------------------------------------------------------------------- Summary of changes: src/backend/nodes/copyfuncs.c | 1 + src/backend/nodes/outfuncs.c | 1 + src/backend/optimizer/path/pgxcpath.c | 11 +- src/backend/optimizer/plan/pgxcplan.c | 75 ++++++- src/backend/optimizer/util/pgxcship.c | 351 ++++++++++++++++++----------- src/include/optimizer/pgxcplan.h | 4 +- src/include/optimizer/pgxcship.h | 6 +- src/include/pgxc/locator.h | 7 + src/test/regress/expected/xc_FQS.out | 67 ++++++ src/test/regress/expected/xc_FQS_join.out | 94 ++++++++ src/test/regress/sql/xc_FQS.sql | 16 ++ src/test/regress/sql/xc_FQS_join.sql | 35 +++ 12 files changed, 529 insertions(+), 139 deletions(-) hooks/post-receive -- Postgres-XC |