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
|
5
|
6
(1) |
7
|
8
(2) |
9
|
10
|
11
|
12
|
13
|
14
|
15
(3) |
16
(2) |
17
(4) |
18
(5) |
19
|
20
|
21
(2) |
22
(1) |
23
|
24
(4) |
25
(1) |
26
|
27
|
28
(2) |
29
(1) |
30
|
|
|
|
From: Michael P. <mic...@us...> - 2011-11-08 04:55:41
|
Project "Postgres-XC". The branch, master has been updated via ac5fc3f89bd0a73ce7bdadd6e830a44dcdc7602b (commit) from 2182ca2d05a38c185e443c9dd73c9ddf0f0db182 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ac5fc3f89bd0a73ce7bdadd6e830a44dcdc7602b commit ac5fc3f89bd0a73ce7bdadd6e830a44dcdc7602b Author: Michael P <mic...@us...> Date: Tue Nov 8 13:40:57 2011 +0900 Fix for bug 3434781: join involving replicated table The following sequence was failing: create table aa (a int) distribute by hash(a); create table bb (a int) distribute by replication; select * from aa join bb using (a) where a=1; This last query failed with an unidentified table. The origin of this error was in XC planner where JOIN rte was evaluated as a table for location data. M src/backend/pgxc/plan/planner.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/plan/planner.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-08 04:55:27
|
Project "Postgres-XC". The branch, REL0_9_6_STABLE has been updated via 213829f9d85bdc1ac38a7386987785430768e4d9 (commit) from 62028c4facab7b386e77d91ab0439aaed15adadf (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=213829f9d85bdc1ac38a7386987785430768e4d9 commit ac5fc3f89bd0a73ce7bdadd6e830a44dcdc7602b Author: Michael P <mic...@us...> Date: Tue Nov 8 13:40:57 2011 +0900 Fix for bug 3434781: join involving replicated table The following sequence was failing: create table aa (a int) distribute by hash(a); create table bb (a int) distribute by replication; select * from aa join bb using (a) where a=1; This last query failed with an unidentified table. The origin of this error was in XC planner where JOIN rte was evaluated as a table for location data. M src/backend/pgxc/plan/planner.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/plan/planner.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-06 23:36:37
|
Project "Postgres-XC". The branch, master has been updated via 2182ca2d05a38c185e443c9dd73c9ddf0f0db182 (commit) from 72292cbae1adaca8788725ff1939f18d3c51a0b5 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2182ca2d05a38c185e443c9dd73c9ddf0f0db182 commit 2182ca2d05a38c185e443c9dd73c9ddf0f0db182 Author: Michael P <mic...@us...> Date: Mon Nov 7 08:36:10 2011 +0900 Print correct columns names in EXPLAIN for a join query Patch by Xiong Wang Review and corrections by me M src/backend/commands/explain.c M src/backend/pgxc/pool/pgxcnode.c M src/test/regress/expected/xc_having.out ----------------------------------------------------------------------- Summary of changes: src/backend/commands/explain.c | 3 +- src/backend/pgxc/pool/pgxcnode.c | 2 +- src/test/regress/expected/xc_having.out | 88 +++++++++++++++--------------- 3 files changed, 46 insertions(+), 47 deletions(-) hooks/post-receive -- Postgres-XC |