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: Ashutosh B. <ash...@us...> - 2012-04-02 10:23:16
|
Project "Postgres-XC". The branch, master has been updated via 76d3b40cba22469361215fd4937db84eb9d0ce6e (commit) from a40e4ef8d222bf9cdc3952e7af668864949b0d00 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=76d3b40cba22469361215fd4937db84eb9d0ce6e commit 76d3b40cba22469361215fd4937db84eb9d0ce6e Author: Ashutosh Bapat <ash...@en...> Date: Mon Apr 2 15:49:53 2012 +0530 Query deparser can not handle PlaceHolderVar nodes. PlaceHolderVar node is added when subqueries are pulled up. They are removed before execution starts by function fix_scan_expr() for scan nodes. This function is static to setrefs.c, and thus needs a wrapper to expose it outside that file. In create_remotequery_plan() apply fix_scan_expr() on the target list and quals to remove PlaceHolderVar nodes from those. M src/backend/optimizer/plan/createplan.c M src/backend/optimizer/plan/setrefs.c M src/include/optimizer/planmain.h ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 10 ++++++++++ src/backend/optimizer/plan/setrefs.c | 8 ++++++++ src/include/optimizer/planmain.h | 2 ++ 3 files changed, 20 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-02 10:14:07
|
Project "Postgres-XC". The branch, master has been updated via a40e4ef8d222bf9cdc3952e7af668864949b0d00 (commit) from d7134501525dd2a3d7c8fc30a8f29fdaab110d98 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a40e4ef8d222bf9cdc3952e7af668864949b0d00 commit a40e4ef8d222bf9cdc3952e7af668864949b0d00 Author: Ashutosh Bapat <ash...@en...> Date: Mon Apr 2 15:39:32 2012 +0530 Any data exchange between coordinator and datanode happens in the form of text, obtained by calling I/O functions for datatypes. For float4 and float8 we used float*out function which limit the number of digits in the string to DBL_DIG/FLT_DIG (both 16) + extra_float_digits (GUC). By default the later value is 0. Rest of the digits are truncated. Thus we see a difference at the 16th digit when we add up truncated floating point transition results from datanodes. The fix here is really to move from text based data exchange to binary data exchange between coordinator and datanode, which will preserve the precision of floating point. This is basic change and might be risky to apply just before the release. Hence adding alternate output file. The test aggregates has EXPLAIN outputs specific to PostgreSQL. Those outputs are not valid in Postgres-XC. Hence updating the expected output with EXPLAIN outputs obtained in Postgres-XC. M src/test/regress/expected/aggregates.out A src/test/regress/expected/aggregates_1.out M src/test/regress/sql/aggregates.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/aggregates.out | 255 +++++++----------- .../expected/{aggregates.out => aggregates_1.out} | 281 ++++++++------------ src/test/regress/sql/aggregates.sql | 30 ++- 3 files changed, 237 insertions(+), 329 deletions(-) copy src/test/regress/expected/{aggregates.out => aggregates_1.out} (79%) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-02 09:00:08
|
Project "Postgres-XC". The branch, master has been updated via d7134501525dd2a3d7c8fc30a8f29fdaab110d98 (commit) from 2689d1bfcc102d6cbf74f5425a98a221c22e33c1 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d7134501525dd2a3d7c8fc30a8f29fdaab110d98 commit d7134501525dd2a3d7c8fc30a8f29fdaab110d98 Author: Amit Khandekar <ami...@en...> Date: Mon Apr 2 14:19:44 2012 +0530 Pass to the pooler session, the default values for some parameters, like DATESTYLE, TZ. If a psql client sets these as environment vars, these do not get propagated to datanodes, as a result of which the date formats returned do not match PGDATESTYLE for e.g. So, in general these session default values should be passed on to session poolers connections to datanodes and remote coordinator. These values help maintain consistent param values between the datanodes and the coordinator for a given client session. The params are passed from coordinator backend to the pooler session using pgoptions (for e.g. '-c datestyle=Postgres,MDY'. And the database pools are searched for unique combination of database, username and pgoptions; earlier it was based on database and username only. M src/backend/pgxc/pool/pgxcnode.c M src/backend/pgxc/pool/poolmgr.c M src/backend/tcop/postgres.c M src/include/pgxc/pgxcnode.h M src/include/pgxc/poolmgr.h ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/pgxcnode.c | 6 +- src/backend/pgxc/pool/poolmgr.c | 120 +++++++++++++++++++++++++++---------- src/backend/tcop/postgres.c | 2 +- src/include/pgxc/pgxcnode.h | 2 +- src/include/pgxc/poolmgr.h | 7 ++- 5 files changed, 98 insertions(+), 39 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-02 06:15:21
|
Project "Postgres-XC". The branch, master has been updated via 2689d1bfcc102d6cbf74f5425a98a221c22e33c1 (commit) from 5c3f03ccffa86b775e1d4d9be668accebaa2e4c9 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2689d1bfcc102d6cbf74f5425a98a221c22e33c1 commit 2689d1bfcc102d6cbf74f5425a98a221c22e33c1 Author: Michael P <mi...@ot...> Date: Mon Apr 2 15:20:07 2012 +0900 Correct warning in xact.c: initializer element is not constant Well, a static element was used instead of a const. M src/backend/access/transam/xact.c ----------------------------------------------------------------------- Summary of changes: src/backend/access/transam/xact.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |