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
(3) |
6
(1) |
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
(3) |
19
|
20
(2) |
21
(1) |
22
|
23
|
24
(4) |
25
(7) |
26
(1) |
27
(3) |
28
(3) |
29
|
30
|
|
|
|
|
|
|
From: Ashutosh B. <ash...@us...> - 2013-06-18 09:49:56
|
Project "Postgres-XC". The branch, master has been updated via 7995bd14c15fa822e0b207c9d3340aa4eefed533 (commit) from 88bb68b7b4bc50ab73d24b36f48ef14ef52f9783 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=7995bd14c15fa822e0b207c9d3340aa4eefed533 commit 7995bd14c15fa822e0b207c9d3340aa4eefed533 Author: Ashutosh Bapat <ash...@en...> Date: Tue Jun 18 15:11:04 2013 +0530 If there is a primary key column in the GROUP BY clause, every group will have only one row. In this case, even if there ungrouped columns in the query, PG 9.2 doesn't raise any error. But this behaviour is only allowed if the functional dependence of the ungrouped columns is not needed to be inferred from subqueries (if there are any). In Postres-XC the queries are constructed by creating one sub-query for every relation being built in the plan tree. Hence functional grouping code is not able to infer the functional grouping in the queries constructed by Postres-XC planner at the coordinator. Hence do not ship GROUP BY clause when there is functional grouping in the query. Functional grouping also means that there is one row per group, thus grouping at the datanode is not expected to improve performance (may decrease it). M src/backend/optimizer/plan/pgxcplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/pgxcplan.c | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-06-18 06:53:09
|
Project "Postgres-XC". The branch, master has been updated via 88bb68b7b4bc50ab73d24b36f48ef14ef52f9783 (commit) from 6db957ce2f0326dbf5856d8be1c95f037a3240de (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=88bb68b7b4bc50ab73d24b36f48ef14ef52f9783 commit 88bb68b7b4bc50ab73d24b36f48ef14ef52f9783 Author: Koichi Suzuki <koi...@gm...> Date: Tue Jun 18 15:51:08 2013 +0900 Corrects parallel schedule of the regression test so that advisory_lock result is consisitent and reproducible. M src/test/regress/parallel_schedule ----------------------------------------------------------------------- Summary of changes: src/test/regress/parallel_schedule | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2013-06-18 06:00:13
|
Project "Postgres-XC". The branch, master has been updated via 6db957ce2f0326dbf5856d8be1c95f037a3240de (commit) from e688e8c9c9e02016fbfb0f8c6fb1c45a81b4373d (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6db957ce2f0326dbf5856d8be1c95f037a3240de commit 6db957ce2f0326dbf5856d8be1c95f037a3240de Author: Amit Khandekar <ami...@en...> Date: Tue Jun 18 11:23:06 2013 +0530 Support statement triggers with COPY. Add restriction: Non-shippable ROW triggers not supported with COPY. In triggers.sql, added a ';' after the COPY stdin data so as to prevent further statements from failing. Added triggers_1.out to accommodate the "ROW triggers with COPY not supported" message so as to make triggers.sql pass. M src/backend/commands/copy.c M src/test/regress/expected/copy2_1.out A src/test/regress/expected/triggers_1.out M src/test/regress/sql/triggers.sql ----------------------------------------------------------------------- Summary of changes: src/backend/commands/copy.c | 164 +++++++++------ src/test/regress/expected/copy2_1.out | 211 +++++++++----------- .../expected/{triggers.out => triggers_1.out} | 14 +- src/test/regress/sql/triggers.sql | 2 + 4 files changed, 207 insertions(+), 184 deletions(-) copy src/test/regress/expected/{triggers.out => triggers_1.out} (99%) hooks/post-receive -- Postgres-XC |