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-18 08:30:33
|
Project "Postgres-XC". The branch, REL0_9_6_STABLE has been updated via 7adfa4fa207220f9767bbb4985b5426a282b2796 (commit) from 72386afeabd861afd230334361c27c84ee49828a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=7adfa4fa207220f9767bbb4985b5426a282b2796 commit 40184bdc1f51c35a563a842438ce3185e2e09bba Author: Ashutosh Bapat <ash...@en...> Date: Fri Nov 18 12:20:31 2011 +0530 Support window functions and aggregates in Postgres-XC, with following changes, 1. The windowed aggregates were not working because final function was disabled for such aggregates. The patch enables it. With this window aggregates should work as long as proper functions are supplied in the pg_aggregate. 2. Window functions are very sensitive to the order in which rows are presented to those functions. Thus results of window functions change with the distribution of the rows on various datanodes. M src/backend/executor/nodeWindowAgg.c M src/test/regress/expected/window.out M src/test/regress/sql/window.sql D src/test/regress/sql/xc-window.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/sql/xc-window.sql | 199 ------------------------------------ 1 files changed, 0 insertions(+), 199 deletions(-) delete mode 100644 src/test/regress/sql/xc-window.sql hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2011-11-18 06:54:38
|
Project "Postgres-XC". The branch, master has been updated via 40184bdc1f51c35a563a842438ce3185e2e09bba (commit) from 6630ca654c7a8d9696637cb2723b34d29178ac16 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=40184bdc1f51c35a563a842438ce3185e2e09bba commit 40184bdc1f51c35a563a842438ce3185e2e09bba Author: Ashutosh Bapat <ash...@en...> Date: Fri Nov 18 12:20:31 2011 +0530 Support window functions and aggregates in Postgres-XC, with following changes, 1. The windowed aggregates were not working because final function was disabled for such aggregates. The patch enables it. With this window aggregates should work as long as proper functions are supplied in the pg_aggregate. 2. Window functions are very sensitive to the order in which rows are presented to those functions. Thus results of window functions change with the distribution of the rows on various datanodes. M src/backend/executor/nodeWindowAgg.c M src/test/regress/expected/window.out M src/test/regress/sql/window.sql D src/test/regress/sql/xc-window.sql ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeWindowAgg.c | 5 - src/test/regress/expected/window.out | 208 +++++++++++++++++----------------- src/test/regress/sql/window.sql | 26 ++-- src/test/regress/sql/xc-window.sql | 199 -------------------------------- 4 files changed, 117 insertions(+), 321 deletions(-) delete mode 100644 src/test/regress/sql/xc-window.sql hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2011-11-18 06:00:45
|
Project "Postgres-XC". The branch, master has been updated via 6630ca654c7a8d9696637cb2723b34d29178ac16 (commit) from cecccf247379133e92680877c8e9fffaf4a71177 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6630ca654c7a8d9696637cb2723b34d29178ac16 commit 6630ca654c7a8d9696637cb2723b34d29178ac16 Author: Ashutosh Bapat <ash...@en...> Date: Fri Nov 18 11:22:22 2011 +0530 While comparing node names we should use case insensitive comparison. If not done so, one of the errors we get is "Coordinator cannot identify itself", while connecting to the coordinator from psql. The fix was suggested by Abbas. M src/backend/pgxc/pool/pgxcnode.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/pgxcnode.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-18 00:21:31
|
Project "Postgres-XC". The branch, master has been updated via cecccf247379133e92680877c8e9fffaf4a71177 (commit) from 88c0214007bd15cba418b9dfa27c1ede20e7f6eb (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=cecccf247379133e92680877c8e9fffaf4a71177 commit cecccf247379133e92680877c8e9fffaf4a71177 Author: Michael P <mic...@us...> Date: Fri Nov 18 09:07:24 2011 +0900 Clean up prepared statements on remote connections at session ending This was the cause of prepared statement name conflicts when different sessions used the same connections to remote nodes. M src/backend/pgxc/pool/execRemote.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-11-18 00:21:17
|
Project "Postgres-XC". The branch, REL0_9_6_STABLE has been updated via 72386afeabd861afd230334361c27c84ee49828a (commit) from 9bd3d2799af682a79e8cb03580aed151e4ac0b9b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=72386afeabd861afd230334361c27c84ee49828a commit cecccf247379133e92680877c8e9fffaf4a71177 Author: Michael P <mic...@us...> Date: Fri Nov 18 09:07:24 2011 +0900 Clean up prepared statements on remote connections at session ending This was the cause of prepared statement name conflicts when different sessions used the same connections to remote nodes. M src/backend/pgxc/pool/execRemote.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |