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
(16) |
5
(4) |
6
(2) |
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
(1) |
19
|
20
(7) |
21
|
22
|
23
|
24
(5) |
25
|
26
|
27
|
28
(7) |
29
|
30
|
31
|
|
|
|
|
|
From: Mason S. <ms...@tr...> - 2014-03-05 11:56:43
|
On Wed, Mar 5, 2014 at 3:21 AM, <ap...@us...> wrote: > Project "Postgres-XC". > > The branch, master has been updated > via 22fdd3506d5b3dd6a899b0e2134eb813b424c5db (commit) > from 1cff86ad077bcff00bc62df9027b58f4e0994a8b (commit) > > > - Log ----------------------------------------------------------------- > > http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=22fdd3506d5b3dd6a899b0e2134eb813b424c5db > > commit 22fdd3506d5b3dd6a899b0e2134eb813b424c5db > Author: Koichi Suzuki <koi...@gm...> > Date: Wed Mar 5 17:18:44 2014 +0900 > > A patch to improve replicated table update/delete handling. > > This commit performs updates/deletes to replicated tables > based on either primary key or unique index under the following > conditions > > 1. The replicated table has either a primary key or a unique index > defined. > 2. The query is not changing the primary key itself. > > Otherwise ctid is used, like we were using previously. > > IMO there should be no fallback to a known dangerous code path that may corrupt your data... better to just disable... -- Mason Sharp TransLattice - http://www.translattice.com Distributed and Clustered Database Solutions |
From: <ap...@us...> - 2014-03-05 08:51:35
|
Project "Postgres-XC". The branch, REL1_1_STABLE has been updated via 8e158a6e08942ee98dc34c3ec529ad13d06cbfa9 (commit) via cee96231e556a7c3ccb3c03a250d5bf34a306bd9 (commit) via a3053f600766a1ce98533b11b4ddbdefe8894185 (commit) from f6ffe420decdc4d45e533715361e47e739392107 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8e158a6e08942ee98dc34c3ec529ad13d06cbfa9 commit 22fdd3506d5b3dd6a899b0e2134eb813b424c5db Author: Koichi Suzuki <koi...@gm...> Date: Wed Mar 5 17:18:44 2014 +0900 A patch to improve replicated table update/delete handling. This commit performs updates/deletes to replicated tables based on either primary key or unique index under the following conditions 1. The replicated table has either a primary key or a unique index defined. 2. The query is not changing the primary key itself. Otherwise ctid is used, like we were using previously. The patch was submitted by Abbas Butt. M src/backend/executor/nodeModifyTable.c M src/backend/nodes/copyfuncs.c M src/backend/nodes/outfuncs.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/include/optimizer/pgxcplan.h M src/include/rewrite/rewriteHandler.h M src/test/regress/expected/updatable_views.out M src/test/regress/expected/updatable_views_1.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/expected/xc_alter_table.out M src/test/regress/expected/xc_misc.out M src/test/regress/expected/xc_trigship.out M src/test/regress/sql/xc_misc.sql http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=cee96231e556a7c3ccb3c03a250d5bf34a306bd9 commit 22fdd3506d5b3dd6a899b0e2134eb813b424c5db Author: Koichi Suzuki <koi...@gm...> Date: Wed Mar 5 17:18:44 2014 +0900 A patch to improve replicated table update/delete handling. This commit performs updates/deletes to replicated tables based on either primary key or unique index under the following conditions 1. The replicated table has either a primary key or a unique index defined. 2. The query is not changing the primary key itself. Otherwise ctid is used, like we were using previously. The patch was submitted by Abbas Butt. M src/backend/executor/nodeModifyTable.c M src/backend/nodes/copyfuncs.c M src/backend/nodes/outfuncs.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/include/optimizer/pgxcplan.h M src/include/rewrite/rewriteHandler.h M src/test/regress/expected/updatable_views.out M src/test/regress/expected/updatable_views_1.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/expected/xc_alter_table.out M src/test/regress/expected/xc_misc.out M src/test/regress/expected/xc_trigship.out M src/test/regress/sql/xc_misc.sql http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a3053f600766a1ce98533b11b4ddbdefe8894185 commit 22fdd3506d5b3dd6a899b0e2134eb813b424c5db Author: Koichi Suzuki <koi...@gm...> Date: Wed Mar 5 17:18:44 2014 +0900 A patch to improve replicated table update/delete handling. This commit performs updates/deletes to replicated tables based on either primary key or unique index under the following conditions 1. The replicated table has either a primary key or a unique index defined. 2. The query is not changing the primary key itself. Otherwise ctid is used, like we were using previously. The patch was submitted by Abbas Butt. M src/backend/executor/nodeModifyTable.c M src/backend/nodes/copyfuncs.c M src/backend/nodes/outfuncs.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/include/optimizer/pgxcplan.h M src/include/rewrite/rewriteHandler.h M src/test/regress/expected/updatable_views.out M src/test/regress/expected/updatable_views_1.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/expected/xc_alter_table.out M src/test/regress/expected/xc_misc.out M src/test/regress/expected/xc_trigship.out M src/test/regress/sql/xc_misc.sql ----------------------------------------------------------------------- Summary of changes: src/gtm/proxy/proxy_main.c | 56 ++++++++++++++++++++++++++++++----------- src/gtm/proxy/proxy_thread.c | 45 ++++++++++++++++++++++++++++----- src/include/gtm/gtm_proxy.h | 3 ++ 3 files changed, 82 insertions(+), 22 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2014-03-05 08:21:26
|
Project "Postgres-XC". The branch, master has been updated via 22fdd3506d5b3dd6a899b0e2134eb813b424c5db (commit) from 1cff86ad077bcff00bc62df9027b58f4e0994a8b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=22fdd3506d5b3dd6a899b0e2134eb813b424c5db commit 22fdd3506d5b3dd6a899b0e2134eb813b424c5db Author: Koichi Suzuki <koi...@gm...> Date: Wed Mar 5 17:18:44 2014 +0900 A patch to improve replicated table update/delete handling. This commit performs updates/deletes to replicated tables based on either primary key or unique index under the following conditions 1. The replicated table has either a primary key or a unique index defined. 2. The query is not changing the primary key itself. Otherwise ctid is used, like we were using previously. The patch was submitted by Abbas Butt. M src/backend/executor/nodeModifyTable.c M src/backend/nodes/copyfuncs.c M src/backend/nodes/outfuncs.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/include/optimizer/pgxcplan.h M src/include/rewrite/rewriteHandler.h M src/test/regress/expected/updatable_views.out M src/test/regress/expected/updatable_views_1.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/expected/xc_alter_table.out M src/test/regress/expected/xc_misc.out M src/test/regress/expected/xc_trigship.out M src/test/regress/sql/xc_misc.sql ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 35 ++++- src/backend/nodes/copyfuncs.c | 1 + src/backend/nodes/outfuncs.c | 1 + src/backend/optimizer/plan/pgxcplan.c | 118 ++++++++++--- src/backend/pgxc/pool/execRemote.c | 5 - src/backend/rewrite/rewriteHandler.c | 220 ++++++++++++++++++++++- src/include/optimizer/pgxcplan.h | 5 + src/include/rewrite/rewriteHandler.h | 3 + src/test/regress/expected/updatable_views.out | 4 +- src/test/regress/expected/updatable_views_1.out | 4 +- src/test/regress/expected/xc_FQS_join.out | 8 +- src/test/regress/expected/xc_alter_table.out | 4 +- src/test/regress/expected/xc_misc.out | 186 +++++++++++++++++++ src/test/regress/expected/xc_trigship.out | 2 +- src/test/regress/sql/xc_misc.sql | 73 ++++++++ 15 files changed, 627 insertions(+), 42 deletions(-) hooks/post-receive -- Postgres-XC |
From: <ap...@us...> - 2014-03-05 08:21:24
|
Project "Postgres-XC". The branch, REL1_2_STABLE has been updated via e5466f780b3da3e44c5b65e245417db1af822af2 (commit) from 45f8541d30cfd9f7385cd83c43bcdca813b7f83a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e5466f780b3da3e44c5b65e245417db1af822af2 commit 22fdd3506d5b3dd6a899b0e2134eb813b424c5db Author: Koichi Suzuki <koi...@gm...> Date: Wed Mar 5 17:18:44 2014 +0900 A patch to improve replicated table update/delete handling. This commit performs updates/deletes to replicated tables based on either primary key or unique index under the following conditions 1. The replicated table has either a primary key or a unique index defined. 2. The query is not changing the primary key itself. Otherwise ctid is used, like we were using previously. The patch was submitted by Abbas Butt. M src/backend/executor/nodeModifyTable.c M src/backend/nodes/copyfuncs.c M src/backend/nodes/outfuncs.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/include/optimizer/pgxcplan.h M src/include/rewrite/rewriteHandler.h M src/test/regress/expected/updatable_views.out M src/test/regress/expected/updatable_views_1.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/expected/xc_alter_table.out M src/test/regress/expected/xc_misc.out M src/test/regress/expected/xc_trigship.out M src/test/regress/sql/xc_misc.sql ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 35 ++++- src/backend/nodes/copyfuncs.c | 1 + src/backend/nodes/outfuncs.c | 1 + src/backend/optimizer/plan/pgxcplan.c | 118 ++++++++++--- src/backend/pgxc/pool/execRemote.c | 5 - src/backend/rewrite/rewriteHandler.c | 220 ++++++++++++++++++++++- src/include/optimizer/pgxcplan.h | 5 + src/include/rewrite/rewriteHandler.h | 3 + src/test/regress/expected/updatable_views.out | 4 +- src/test/regress/expected/updatable_views_1.out | 4 +- src/test/regress/expected/xc_FQS_join.out | 8 +- src/test/regress/expected/xc_alter_table.out | 4 +- src/test/regress/expected/xc_misc.out | 186 +++++++++++++++++++ src/test/regress/expected/xc_trigship.out | 2 +- src/test/regress/sql/xc_misc.sql | 73 ++++++++ 15 files changed, 627 insertions(+), 42 deletions(-) hooks/post-receive -- Postgres-XC |