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
(1) |
2
|
3
|
4
|
5
|
6
|
7
(1) |
8
(1) |
9
(7) |
10
(1) |
11
|
12
|
13
(4) |
14
|
15
(2) |
16
|
17
|
18
|
19
|
20
(1) |
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
(12) |
31
|
|
From: Abbas B. <ga...@us...> - 2013-05-09 13:36:03
|
Project "Postgres-XC". The branch, master has been updated via 3dc83234c493f38ffd25e9ae647a912d5e976a41 (commit) from 8cb99209374a59eafdbd71a0646f882f9a4517c1 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=3dc83234c493f38ffd25e9ae647a912d5e976a41 commit 3dc83234c493f38ffd25e9ae647a912d5e976a41 Author: Abbas <abb...@en...> Date: Thu May 9 18:32:11 2013 +0500 Fix for test case xc_misc.sql A SELECT FOR UPDATE on a replicated table was being shipped by mistake to all datanodes in a cluster with no primary node. The problem was in function pgxc_FQS_find_datanodes. The if condition to call GetPreferredReplicationNode was only checking read relation access type, read for update was missing. The result was that in case of read for update on a replicated table in a cluster with no primary node, the query was being shipped to all datanodes since the call to GetPreferredReplicationNode got skipped. The fix was to add an additional check in the if condition. In addition the patch adds assertions at places where GetRelationNodes is called and a read for update on a replicated table is not expected. M src/backend/optimizer/util/pgxcship.c M src/backend/pgxc/pool/execRemote.c ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/util/pgxcship.c | 3 ++- src/backend/pgxc/pool/execRemote.c | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-05-09 06:26:12
|
Project "Postgres-XC". The branch, master has been updated via 8cb99209374a59eafdbd71a0646f882f9a4517c1 (commit) from be3468f1980fc2272bfa28cb6cac6bdef96a4d79 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8cb99209374a59eafdbd71a0646f882f9a4517c1 commit 8cb99209374a59eafdbd71a0646f882f9a4517c1 Author: Abbas <abb...@en...> Date: Thu May 9 11:24:52 2013 +0500 Fix for test case xc_returning The tables should be created on a well defined set of nodes to make sure that ctid returning test cases return consistent output on all cluster configurations. M src/test/regress/expected/xc_returning.out M src/test/regress/sql/xc_returning.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/xc_returning.out | 96 ++++++++++++++++++++++++---- src/test/regress/sql/xc_returning.sql | 33 ++++++---- 2 files changed, 103 insertions(+), 26 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-05-09 06:22:21
|
Project "Postgres-XC". The branch, master has been updated via be3468f1980fc2272bfa28cb6cac6bdef96a4d79 (commit) from 2236854c90aea606336a4c17ef892f42e0abc01b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=be3468f1980fc2272bfa28cb6cac6bdef96a4d79 commit be3468f1980fc2272bfa28cb6cac6bdef96a4d79 Author: Abbas <abb...@en...> Date: Thu May 9 11:21:23 2013 +0500 Fix for test case xc_copy The intention of the test case is to make sure that quoted table names work fine in COPY FROM. This test can be performed with a single data row in the table to make sure that the results are consistent on all cluster configurations. M src/test/regress/input/xc_copy.source M src/test/regress/output/xc_copy.source ----------------------------------------------------------------------- Summary of changes: src/test/regress/input/xc_copy.source | 2 -- src/test/regress/output/xc_copy.source | 2 -- 2 files changed, 0 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-05-09 06:18:39
|
Project "Postgres-XC". The branch, master has been updated via 2236854c90aea606336a4c17ef892f42e0abc01b (commit) from f0b96188ca31b2915323b8e613b4ff34abaa2cbc (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2236854c90aea606336a4c17ef892f42e0abc01b commit 2236854c90aea606336a4c17ef892f42e0abc01b Author: Abbas <abb...@en...> Date: Thu May 9 11:17:27 2013 +0500 Fix for test case copy2.sql Test was failing because of some missing order by clauses. Also some changes were done to make sure that the alternate expected output comes closer to the expected output. Still there are some changes between the two that need to be taken care of. The changes are because FOR EACH ROW triggers are not fired on coordinators and there is some missing quotes issue as well. Once these issues are resolved the alternate expected output file can be removed. M src/test/regress/expected/copy2.out M src/test/regress/expected/copy2_1.out M src/test/regress/sql/copy2.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/copy2.out | 18 ++++--- src/test/regress/expected/copy2_1.out | 86 ++++++++++++++++---------------- src/test/regress/sql/copy2.sql | 10 ++-- 3 files changed, 58 insertions(+), 56 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2013-05-09 06:11:52
|
Project "Postgres-XC". The branch, master has been updated via f0b96188ca31b2915323b8e613b4ff34abaa2cbc (commit) from 40b628e04a0bce2b4c1484f50e57a320c503e712 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f0b96188ca31b2915323b8e613b4ff34abaa2cbc commit f0b96188ca31b2915323b8e613b4ff34abaa2cbc Author: Ashutosh Bapat <ash...@en...> Date: Thu May 9 11:40:01 2013 +0530 If there an unshippable expression in the targetlist of the inner relation (the side which contributes NULL columns for the unmatched columns) of an OUTER join, the unshippable expression gets projected at the coordinator. At the time of projection, it's not possible to judge which side of the join expression comes from and whether it should be NULL (in case of unmatched row) or non-NULL (in case of matched row). Hence in such cases, join should not be shippable. That way, the join will be evaluated at the coordinator and NULL or non-NULL values will be projected based on the join quals. M src/backend/optimizer/path/pgxcpath.c M src/backend/optimizer/util/pgxcship.c M src/include/nodes/relation.h M src/include/optimizer/pgxcplan.h M src/test/regress/expected/join.out ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/path/pgxcpath.c | 7 +++++- src/backend/optimizer/util/pgxcship.c | 34 ++++++++++++++++++++++++++++++-- src/include/nodes/relation.h | 4 +++ src/include/optimizer/pgxcplan.h | 2 + src/test/regress/expected/join.out | 20 +++++++++++++----- 5 files changed, 57 insertions(+), 10 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-05-09 06:00:45
|
Project "Postgres-XC". The branch, master has been updated via 40b628e04a0bce2b4c1484f50e57a320c503e712 (commit) from c2b6aee09a75184d6a9f65703ad922afa824135c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=40b628e04a0bce2b4c1484f50e57a320c503e712 commit 40b628e04a0bce2b4c1484f50e57a320c503e712 Author: Abbas <abb...@en...> Date: Thu May 9 10:36:38 2013 +0500 Fix for test case plpgsql.sql 1. Some order by clauses were added to make sure test cases produces consistent results. 2. By mistake expected output of some tests was wrong, corected that too. M src/test/regress/expected/plpgsql_1.out M src/test/regress/sql/plpgsql.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/plpgsql_1.out | 8 ++++---- src/test/regress/sql/plpgsql.sql | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2013-05-09 05:35:25
|
Project "Postgres-XC". The branch, master has been updated via c2b6aee09a75184d6a9f65703ad922afa824135c (commit) from d337476e7c0a49f2b8d05a8c5a1c9be65683bb41 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c2b6aee09a75184d6a9f65703ad922afa824135c commit c2b6aee09a75184d6a9f65703ad922afa824135c Author: Abbas <abb...@en...> Date: Thu May 9 10:32:08 2013 +0500 Fix for test case combocid.sql. The relation being used for the test is distributed by replication so that the test produces consistent output on all configurations. M src/test/regress/expected/combocid.out M src/test/regress/expected/combocid_1.out M src/test/regress/sql/combocid.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/combocid.out | 4 +++- src/test/regress/expected/combocid_1.out | 9 +++++---- src/test/regress/sql/combocid.sql | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |