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
(1) |
3
|
4
(4) |
5
(1) |
6
|
7
(6) |
8
(8) |
9
(8) |
10
(4) |
11
|
12
|
13
(4) |
14
|
15
|
16
|
17
(2) |
18
(6) |
19
|
20
(4) |
21
(4) |
22
|
23
(2) |
24
(3) |
25
(5) |
26
|
27
(2) |
28
(13) |
29
(6) |
30
(22) |
31
(2) |
|
|
From: Michael P. <mic...@us...> - 2012-05-08 12:59:04
|
Project "Postgres-XC". The branch, master has been updated via d07c37a52902013985528e680a834d8d51a2de06 (commit) from cf8a1e0401838379e108944ce1dfd77f9916d4e6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d07c37a52902013985528e680a834d8d51a2de06 commit d07c37a52902013985528e680a834d8d51a2de06 Author: Michael Paquier <mi...@ot...> Date: Tue May 8 21:51:35 2012 +0900 Fix for test select_views for Linux utf8 environments ORDER BY clauses have been added in test select_views to make result output consistent in cluster but this output may change depending on environment used, so an alternative output file correcting that is added. A src/test/regress/expected/select_views_2.out ----------------------------------------------------------------------- Summary of changes: .../{select_views.out => select_views_2.out} | 22 ++++++++++---------- 1 files changed, 11 insertions(+), 11 deletions(-) copy src/test/regress/expected/{select_views.out => select_views_2.out} (100%) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-05-08 12:59:01
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via fcb891af7b244d8a64547a1bf5f59380cde8c166 (commit) from d5ccef829bff7ffb7383447304473e3bf1065801 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=fcb891af7b244d8a64547a1bf5f59380cde8c166 commit d07c37a52902013985528e680a834d8d51a2de06 Author: Michael Paquier <mi...@ot...> Date: Tue May 8 21:51:35 2012 +0900 Fix for test select_views for Linux utf8 environments ORDER BY clauses have been added in test select_views to make result output consistent in cluster but this output may change depending on environment used, so an alternative output file correcting that is added. A src/test/regress/expected/select_views_2.out ----------------------------------------------------------------------- Summary of changes: .../{select_views.out => select_views_2.out} | 22 ++++++++++---------- 1 files changed, 11 insertions(+), 11 deletions(-) copy src/test/regress/expected/{select_views.out => select_views_2.out} (100%) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-05-08 03:47:15
|
Project "Postgres-XC". The branch, master has been updated via cf8a1e0401838379e108944ce1dfd77f9916d4e6 (commit) from 8057dcc34c25a7dfa67bd37835a2a3d0b7edc474 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=cf8a1e0401838379e108944ce1dfd77f9916d4e6 commit cf8a1e0401838379e108944ce1dfd77f9916d4e6 Author: Abbas <abb...@en...> Date: Tue May 8 08:38:58 2012 +0500 Block the use of INSERT-SELECT in case rows are inserted into a child by selecting from its parent. This case had to be blocked because in this case XC was transforming the single INSERT-SELECT command into a multi-statement transaction block on the data nodes. [STEP 1.] START TRANSACTION ISOLATION LEVEL read committed READ WRITE [STEP 2.] SELECT col1,col2 FROM ONLY parent_table WHERE true [STEP 3.] INSERT INTO public.child_table (col1, col2) VALUES ($1, $2) [STEP 4.] (-- bind and execute here --) [STEP 5.] SELECT col1, col2 FROM ONLY child_table WHERE true [STEP 6.] INSERT INTO public.child_table (col1, col2) VALUES ($1, $2) [STEP 7.] (-- bind and execute here --) [STEP 8.] COMMIT TRANSACTION The inserts of step 3 will be visible to select of step 5, hence we were getting duplicate rows in the child table. To block we have added a check at the transformation stage. Test cases are added to make sure block works fine for the case intended and does not block the rest of the cases. Regressions showed a few extra failures which are fixed by the patch. M src/backend/parser/analyze.c A src/test/regress/expected/create_misc_1.out M src/test/regress/expected/select_views.out M src/test/regress/expected/xc_misc.out M src/test/regress/sql/select_views.sql M src/test/regress/sql/xc_misc.sql ----------------------------------------------------------------------- Summary of changes: src/backend/parser/analyze.c | 105 +++ .../create_misc.sql => expected/create_misc_1.out} | 72 +-- src/test/regress/expected/select_views.out | 976 +------------------- src/test/regress/expected/xc_misc.out | 44 + src/test/regress/sql/select_views.sql | 2 +- src/test/regress/sql/xc_misc.sql | 41 + 6 files changed, 233 insertions(+), 1007 deletions(-) copy src/test/regress/{sql/create_misc.sql => expected/create_misc_1.out} (96%) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-05-08 03:47:13
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via d5ccef829bff7ffb7383447304473e3bf1065801 (commit) from 3374d8355d8787dfc0d1632438a19f56ebc61d48 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d5ccef829bff7ffb7383447304473e3bf1065801 commit cf8a1e0401838379e108944ce1dfd77f9916d4e6 Author: Abbas <abb...@en...> Date: Tue May 8 08:38:58 2012 +0500 Block the use of INSERT-SELECT in case rows are inserted into a child by selecting from its parent. This case had to be blocked because in this case XC was transforming the single INSERT-SELECT command into a multi-statement transaction block on the data nodes. [STEP 1.] START TRANSACTION ISOLATION LEVEL read committed READ WRITE [STEP 2.] SELECT col1,col2 FROM ONLY parent_table WHERE true [STEP 3.] INSERT INTO public.child_table (col1, col2) VALUES ($1, $2) [STEP 4.] (-- bind and execute here --) [STEP 5.] SELECT col1, col2 FROM ONLY child_table WHERE true [STEP 6.] INSERT INTO public.child_table (col1, col2) VALUES ($1, $2) [STEP 7.] (-- bind and execute here --) [STEP 8.] COMMIT TRANSACTION The inserts of step 3 will be visible to select of step 5, hence we were getting duplicate rows in the child table. To block we have added a check at the transformation stage. Test cases are added to make sure block works fine for the case intended and does not block the rest of the cases. Regressions showed a few extra failures which are fixed by the patch. M src/backend/parser/analyze.c A src/test/regress/expected/create_misc_1.out M src/test/regress/expected/select_views.out M src/test/regress/expected/xc_misc.out M src/test/regress/sql/select_views.sql M src/test/regress/sql/xc_misc.sql ----------------------------------------------------------------------- Summary of changes: src/backend/parser/analyze.c | 105 +++ .../create_misc.sql => expected/create_misc_1.out} | 72 +-- src/test/regress/expected/select_views.out | 976 +------------------- src/test/regress/expected/xc_misc.out | 44 + src/test/regress/sql/select_views.sql | 2 +- src/test/regress/sql/xc_misc.sql | 41 + 6 files changed, 233 insertions(+), 1007 deletions(-) copy src/test/regress/{sql/create_misc.sql => expected/create_misc_1.out} (96%) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-05-08 03:11:44
|
Project "Postgres-XC". The branch, master has been updated via 8057dcc34c25a7dfa67bd37835a2a3d0b7edc474 (commit) from 8ab1634319c30bc2bff3e2d57c87e54a615cbdff (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8057dcc34c25a7dfa67bd37835a2a3d0b7edc474 commit 8057dcc34c25a7dfa67bd37835a2a3d0b7edc474 Author: Michael Paquier <mi...@ot...> Date: Tue May 8 12:11:53 2012 +0900 Release notes for 1.0 As 1.0 will be the first major release of Postgres-XC, the first release notes take into account all the functionalities added sinze the beginning of the project that remain in current 1.0 code. Basic redaction from me. A lot of Corrections and comments from Ashutosh Bapat, Ahsan Hadi, Mason Sharp, Andrei Martsinchyk and Koichi Suzuki. M doc-xc/src/sgml/filelist.sgmlin M doc-xc/src/sgml/postgres.sgmlin A doc-xc/src/sgml/release-xc-1.0.sgmlin M doc-xc/src/sgml/release.sgmlin ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/filelist.sgmlin | 5 + doc-xc/src/sgml/postgres.sgmlin | 2 - doc-xc/src/sgml/release-xc-1.0.sgmlin | 884 +++++++++++++++++++++++++++++++++ doc-xc/src/sgml/release.sgmlin | 24 + 4 files changed, 913 insertions(+), 2 deletions(-) create mode 100644 doc-xc/src/sgml/release-xc-1.0.sgmlin hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-05-08 03:11:41
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via 3374d8355d8787dfc0d1632438a19f56ebc61d48 (commit) from fb22353c447fea0296616d37fbed513d3a78ae48 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=3374d8355d8787dfc0d1632438a19f56ebc61d48 commit 8057dcc34c25a7dfa67bd37835a2a3d0b7edc474 Author: Michael Paquier <mi...@ot...> Date: Tue May 8 12:11:53 2012 +0900 Release notes for 1.0 As 1.0 will be the first major release of Postgres-XC, the first release notes take into account all the functionalities added sinze the beginning of the project that remain in current 1.0 code. Basic redaction from me. A lot of Corrections and comments from Ashutosh Bapat, Ahsan Hadi, Mason Sharp, Andrei Martsinchyk and Koichi Suzuki. M doc-xc/src/sgml/filelist.sgmlin M doc-xc/src/sgml/postgres.sgmlin A doc-xc/src/sgml/release-xc-1.0.sgmlin M doc-xc/src/sgml/release.sgmlin ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/filelist.sgmlin | 5 + doc-xc/src/sgml/postgres.sgmlin | 2 - doc-xc/src/sgml/release-xc-1.0.sgmlin | 884 +++++++++++++++++++++++++++++++++ doc-xc/src/sgml/release.sgmlin | 24 + 4 files changed, 913 insertions(+), 2 deletions(-) create mode 100644 doc-xc/src/sgml/release-xc-1.0.sgmlin hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-05-08 02:21:39
|
Project "Postgres-XC". The branch, master has been updated via 8ab1634319c30bc2bff3e2d57c87e54a615cbdff (commit) from 019acdc3ad7a473410ea2ee9d67f7046848c708a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8ab1634319c30bc2bff3e2d57c87e54a615cbdff commit 8ab1634319c30bc2bff3e2d57c87e54a615cbdff Author: Michael Paquier <mi...@ot...> Date: Tue May 8 11:10:07 2012 +0900 Stamp HEAD as 1.1devel. M configure M configure.in M doc-xc/bug.template M doc-xc/src/sgml/Makefile M src/include/pg_config.h.win32 ----------------------------------------------------------------------- Summary of changes: configure | 20 ++++++++++---------- configure.in | 2 +- doc-xc/bug.template | 2 +- doc-xc/src/sgml/Makefile | 2 +- src/include/pg_config.h.win32 | 6 +++--- 5 files changed, 16 insertions(+), 16 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-05-08 00:29:44
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via fb22353c447fea0296616d37fbed513d3a78ae48 (commit) from 704fbc8b94f98b1ac4a276ed7833d8e5855d0173 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=fb22353c447fea0296616d37fbed513d3a78ae48 commit 019acdc3ad7a473410ea2ee9d67f7046848c708a Author: Michael Paquier <mi...@ot...> Date: Mon May 7 18:50:22 2012 +0900 Improve remote DELETE planning for inherited tables Some issues have been enlighten by a new test case in regression with in PostgreSQL 9.1 stable branch. Issues are fixed and code has been refactored to make DELETE and UPDATE remote planning to use the same APIs related to RowMarks. M src/backend/optimizer/plan/createplan.c M src/test/regress/expected/rowtypes_1.out M src/test/regress/expected/rules_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/with.out | 123 ++++++++++++----------------------- src/test/regress/sql/with.sql | 16 +++--- 2 files changed, 50 insertions(+), 89 deletions(-) hooks/post-receive -- Postgres-XC |