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
(4) |
3
|
4
(2) |
5
(2) |
6
(2) |
7
|
8
|
9
|
10
(8) |
11
(1) |
12
(1) |
13
(1) |
14
|
15
|
16
(8) |
17
(8) |
18
(3) |
19
(2) |
20
(3) |
21
(3) |
22
(1) |
23
(4) |
24
(11) |
25
(2) |
26
(9) |
27
(6) |
28
|
29
(4) |
30
(6) |
|
|
|
|
|
From: Abbas B. <ga...@us...> - 2012-04-17 13:24:11
|
Project "Postgres-XC". The branch, master has been updated via 9aed10c153494d8ac8b7d3876642ba9bc542d035 (commit) from 05375e85426e55f11b45a13e0804f51d3223d8c5 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9aed10c153494d8ac8b7d3876642ba9bc542d035 commit 9aed10c153494d8ac8b7d3876642ba9bc542d035 Author: Abbas <abb...@en...> Date: Tue Apr 17 18:10:57 2012 +0500 Fix for node reduction in case of varchar data type. Node reduction was not working in case of varchar data types and the reason was that the function pgxc_find_distcol_expr was not handling the RelabelType. This patch provide the proper handling. Also the patch changes the expected output of the test case xc_distkey to reflect changes in explain. M src/backend/pgxc/plan/planner.c M src/test/regress/expected/xc_distkey.out ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/plan/planner.c | 14 ++++++++ src/test/regress/expected/xc_distkey.out | 54 +++++++++++++++--------------- 2 files changed, 41 insertions(+), 27 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-17 13:04:16
|
Project "Postgres-XC". The branch, master has been updated via 05375e85426e55f11b45a13e0804f51d3223d8c5 (commit) from 696e1f950eb7c16399f7d56f0198688a9213e125 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=05375e85426e55f11b45a13e0804f51d3223d8c5 commit 05375e85426e55f11b45a13e0804f51d3223d8c5 Author: Abbas <abb...@en...> Date: Tue Apr 17 17:47:10 2012 +0500 Add support for FOR UPDATE/SHARE This comit fixes bug ID 3515041 The queries containing FOR UPDATE/SAHRE were not working because coordinator was trying to lock rows where as in fact data node is supposed to do it since rows do not exist on the coordinator. Coordinator should therefore not try to execute row marks in PG way, instead it should silently pass on the FOR UPDATE/SHARE clauses to the data node. To implement we used the following technique. On coordinators we have divided row marks in two groups. Group One of type FOR UPDATE & SHARE and Group Two of the rest of the types. Second group is handled in PG way both on coordinator and data node, however first group is handled on coordinators in such a way that it only serves to produce the correct clause in the remote query. The downside of this approach is that we would un-necessarily lock complete tables on data nodes, where as we should have locked only a subset. Test cases are included in the patch. M src/backend/nodes/outfuncs.c M src/backend/optimizer/plan/createplan.c M src/backend/optimizer/plan/planner.c M src/include/nodes/relation.h A src/test/regress/expected/xc_for_update.out M src/test/regress/parallel_schedule M src/test/regress/serial_schedule A src/test/regress/sql/xc_for_update.sql ----------------------------------------------------------------------- Summary of changes: src/backend/nodes/outfuncs.c | 1 + src/backend/optimizer/plan/createplan.c | 124 ++++- src/backend/optimizer/plan/planner.c | 61 ++- src/include/nodes/relation.h | 10 + src/test/regress/expected/xc_for_update.out | 950 +++++++++++++++++++++++++++ src/test/regress/parallel_schedule | 2 +- src/test/regress/serial_schedule | 2 + src/test/regress/sql/xc_for_update.sql | 362 ++++++++++ 8 files changed, 1509 insertions(+), 3 deletions(-) create mode 100644 src/test/regress/expected/xc_for_update.out create mode 100644 src/test/regress/sql/xc_for_update.sql hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-17 12:12:06
|
Project "Postgres-XC". The branch, master has been updated via 696e1f950eb7c16399f7d56f0198688a9213e125 (commit) from 2cc34ffc20061f3c234e67422ea09d9068733cfd (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=696e1f950eb7c16399f7d56f0198688a9213e125 commit 696e1f950eb7c16399f7d56f0198688a9213e125 Author: Abbas <abb...@en...> Date: Tue Apr 17 17:10:10 2012 +0500 Fix for test case portals The sql file is changed to make it as close as possible to the one in PG. WHERE CURRENT OF is blocked so the expected output is changed accordingly. M src/test/regress/expected/portals_1.out M src/test/regress/sql/portals.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/portals_1.out | 362 +++++++++++-------------------- src/test/regress/sql/portals.sql | 104 +++++----- 2 files changed, 176 insertions(+), 290 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-17 12:08:30
|
Project "Postgres-XC". The branch, master has been updated via 2cc34ffc20061f3c234e67422ea09d9068733cfd (commit) from 671f9ea6fadf1d38e86a02bf7c9760d186dfc389 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2cc34ffc20061f3c234e67422ea09d9068733cfd commit 2cc34ffc20061f3c234e67422ea09d9068733cfd Author: Abbas <abb...@en...> Date: Tue Apr 17 17:08:03 2012 +0500 Fix for test case largeobjet M src/test/regress/input/largeobject.source M src/test/regress/output/largeobject_3.source ----------------------------------------------------------------------- Summary of changes: src/test/regress/input/largeobject.source | 2 +- src/test/regress/output/largeobject_3.source | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-17 12:05:31
|
Project "Postgres-XC". The branch, master has been updated via 671f9ea6fadf1d38e86a02bf7c9760d186dfc389 (commit) from 4f2369381fe81ef8d098f3bfea07265737e85107 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=671f9ea6fadf1d38e86a02bf7c9760d186dfc389 commit 671f9ea6fadf1d38e86a02bf7c9760d186dfc389 Author: Abbas <abb...@en...> Date: Tue Apr 17 17:05:16 2012 +0500 No need for additional expected output file for select_distinct_on test case D src/test/regress/expected/select_distinct_on_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/select_distinct_on_1.out | 29 -------------------- 1 files changed, 0 insertions(+), 29 deletions(-) delete mode 100644 src/test/regress/expected/select_distinct_on_1.out hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-17 12:02:03
|
Project "Postgres-XC". The branch, master has been updated via 4f2369381fe81ef8d098f3bfea07265737e85107 (commit) from 2822d444a1b596cceedd042c72de5caf25dc2481 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=4f2369381fe81ef8d098f3bfea07265737e85107 commit 4f2369381fe81ef8d098f3bfea07265737e85107 Author: Abbas <abb...@en...> Date: Tue Apr 17 17:01:19 2012 +0500 No need for additional expected output file for strings test case D src/test/regress/expected/strings_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/strings_1.out | 1605 ------------------------------- 1 files changed, 0 insertions(+), 1605 deletions(-) delete mode 100644 src/test/regress/expected/strings_1.out hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-17 09:10:44
|
Project "Postgres-XC". The branch, master has been updated via 2822d444a1b596cceedd042c72de5caf25dc2481 (commit) from 879c8a03c825c2415d35d4e1bf9508c18a770721 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2822d444a1b596cceedd042c72de5caf25dc2481 commit 2822d444a1b596cceedd042c72de5caf25dc2481 Author: Ashutosh Bapat <ash...@en...> Date: Tue Apr 17 14:35:57 2012 +0530 Fix regression differences for xc_FQS and xc_FQS_join tests. It involves follwing changes 1. The Explain output contained costs, which needed to be turned off 2. For DMLs we get the nodeid from the datanodes as xc_node_id column. The column gets added in the targetlist for DMLs. So, expected output needed to be changed. M src/test/regress/expected/xc_FQS.out M src/test/regress/expected/xc_FQS_join.out M src/test/regress/sql/xc_FQS.sql M src/test/regress/sql/xc_FQS_join.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/xc_FQS.out | 604 ++++++++++++++--------------- src/test/regress/expected/xc_FQS_join.out | 187 +++++----- src/test/regress/sql/xc_FQS.sql | 144 ++++---- src/test/regress/sql/xc_FQS_join.sql | 43 ++- 4 files changed, 492 insertions(+), 486 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-17 09:00:34
|
Project "Postgres-XC". The branch, master has been updated via 879c8a03c825c2415d35d4e1bf9508c18a770721 (commit) from f4e0d0a42c2c6b8b2df474990332d5347ad5d26b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=879c8a03c825c2415d35d4e1bf9508c18a770721 commit 879c8a03c825c2415d35d4e1bf9508c18a770721 Author: Ashutosh Bapat <ash...@en...> Date: Tue Apr 17 14:27:06 2012 +0530 Changed some queries to output the result in particular order to make the results independent of distribution. Removed some extraneous testcases. M src/test/regress/expected/xc_groupby.out M src/test/regress/sql/xc_groupby.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/xc_groupby.out | 1050 +++++++----------------------- src/test/regress/sql/xc_groupby.sql | 102 +--- 2 files changed, 272 insertions(+), 880 deletions(-) hooks/post-receive -- Postgres-XC |