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
(2) |
3
(1) |
4
|
5
(2) |
6
|
7
(9) |
8
(4) |
9
|
10
|
11
|
12
(4) |
13
(1) |
14
(1) |
15
(4) |
16
|
17
|
18
(2) |
19
(2) |
20
|
21
(5) |
22
|
23
|
24
|
25
|
26
(2) |
27
|
28
(4) |
29
(3) |
30
|
From: Michael P. <mic...@us...> - 2012-06-18 06:20:56
|
Project "Postgres-XC". The branch, master has been updated via a593cbdbbb437636d44ceb86c81c82c831ba612a (commit) from 2f9eabd983cfed51a4fcf4cbbc2fae1167912cd4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a593cbdbbb437636d44ceb86c81c82c831ba612a commit a593cbdbbb437636d44ceb86c81c82c831ba612a Author: Michael Paquier <mi...@ot...> Date: Mon Jun 18 15:17:57 2012 +0900 Fix for bug 3535915: INSERT SELECT for partially replicated tables Remote DML planning was not taking into account the node list to be used on a relation when modifying data on it. This has been enlighten by a test case with INSERT SELECT on tables replicated defined on a sub-cluster. For example, in the case of a cluster with 2 Datanodes dn1 and dn2: CREATE TABLE aa1 (a int) DISTRIBUTE BY REPLICATION TO NODE dn1; CREATE TABLE aa2 (a int) DISTRIBUTE BY HASH(a); INSERT INTO aa2 VALUES (1),(2),(3),(4); INSERT INTO aa1 SELECT * FROM aa2; The last INSERT SELECT was inserting data on all the nodes instead of doing it only on Datanode dn1. M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-06-18 06:20:51
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via ab1e38cd276bdb14f21f53ed0aca5f40aac67c89 (commit) from 334717b6c8fbaf237b50cc9dca84a7f77abaae96 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ab1e38cd276bdb14f21f53ed0aca5f40aac67c89 commit a593cbdbbb437636d44ceb86c81c82c831ba612a Author: Michael Paquier <mi...@ot...> Date: Mon Jun 18 15:17:57 2012 +0900 Fix for bug 3535915: INSERT SELECT for partially replicated tables Remote DML planning was not taking into account the node list to be used on a relation when modifying data on it. This has been enlighten by a test case with INSERT SELECT on tables replicated defined on a sub-cluster. For example, in the case of a cluster with 2 Datanodes dn1 and dn2: CREATE TABLE aa1 (a int) DISTRIBUTE BY REPLICATION TO NODE dn1; CREATE TABLE aa2 (a int) DISTRIBUTE BY HASH(a); INSERT INTO aa2 VALUES (1),(2),(3),(4); INSERT INTO aa1 SELECT * FROM aa2; The last INSERT SELECT was inserting data on all the nodes instead of doing it only on Datanode dn1. M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |