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
(3) |
6
(2) |
7
|
8
|
9
|
10
(1) |
11
|
12
(8) |
13
(2) |
14
|
15
|
16
(6) |
17
(1) |
18
(1) |
19
(2) |
20
(1) |
21
|
22
|
23
|
24
(1) |
25
|
26
(4) |
27
|
28
|
29
|
30
(3) |
31
(1) |
|
|
|
|
From: Michael P. <mic...@us...> - 2012-01-06 03:58:00
|
Project "Postgres-XC". The branch, master has been updated via c461c74182e6ca61f0c13779f1a3b821e111d888 (commit) from b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c461c74182e6ca61f0c13779f1a3b821e111d888 commit c461c74182e6ca61f0c13779f1a3b821e111d888 Author: Michael P <mi...@ot...> Date: Fri Jan 6 13:00:37 2012 +0900 Support for remote DELETE planning and remove restrictions for UPDATE This adds general support for DELETE query planning in standard planner in case Postgres-XC planner falls back to standard planner. Now all the DML plans follow the same logic by adding remoteQuery nodes to plan steps of ModifyTable plans. UPDATE has its restrictions removed by adding the CTID value for tuple selection on remote nodes as a parameter in WHERE clause and in parameter list associated with extended protocol of remote query. M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 20 ++- src/backend/optimizer/plan/createplan.c | 333 ++++++++++-------------------- 2 files changed, 130 insertions(+), 223 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-06 00:22:32
|
Project "Postgres-XC". The branch, master has been updated via b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 (commit) from 4934c89f160e3c174cec0c3eaef279f458811bb3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 commit b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 Author: Michael P <mi...@ot...> Date: Fri Jan 6 09:19:40 2012 +0900 Support for remote UPDATE planning in standard planning This commit focuses on support of UPDATE queries using non-pushable expressions in SET and WHERE clauses. The UPDATE query is generated based on the output of the SELECT query generated by create_remotequery_plan to select the correct tuples to update remotelly with a top plan that was not generated before. Current implementation has a restriction though: on replicated tables all the columns cannot be updated at once if the query is not entirely pushable. Postgres-XC planner is in charge of analyzing that. For distributed tables, the distribution column cannot be updated so this restriction is not directly applied but this should be taken into account once a tuple relocation mechanism is added. M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/include/pgxc/execRemote.h M src/test/regress/sql/portals.sql ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 19 +++- src/backend/optimizer/plan/createplan.c | 222 ++++++++++++++++++++++++++++++- src/backend/pgxc/plan/planner.c | 5 + src/backend/pgxc/pool/execRemote.c | 18 ++- src/include/pgxc/execRemote.h | 2 +- src/test/regress/sql/portals.sql | 13 +- 6 files changed, 260 insertions(+), 19 deletions(-) hooks/post-receive -- Postgres-XC |