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
(2) |
3
|
4
|
5
|
6
(1) |
7
(1) |
8
(3) |
9
|
10
|
11
|
12
(2) |
13
(3) |
14
(2) |
15
(7) |
16
(4) |
17
|
18
|
19
(1) |
20
(7) |
21
|
22
(2) |
23
(1) |
24
|
25
|
26
(1) |
27
|
28
(1) |
29
|
30
|
31
|
From: Ashutosh B. <ash...@us...> - 2011-12-22 06:39:22
|
Project "Postgres-XC". The branch, master has been updated via 1b244c116e9cb93253c37236cf722072a719b0e4 (commit) from 2140b647f169e236dbe652106245e240ce2aa865 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=1b244c116e9cb93253c37236cf722072a719b0e4 commit 1b244c116e9cb93253c37236cf722072a719b0e4 Author: Ashutosh Bapat <ash...@en...> Date: Thu Dec 22 12:02:05 2011 +0530 Add following GUCs related to optimizations during remote query planning 1. enable_remotegroup - to enable or disable remote grouping optimization in create_remotegrouping_plan(). 2. enable_fast_query_shipping - to enable or disable fast query shipping. These GUCs are to be used only for debugging, and should not be used in production environment or user deployments. M src/backend/optimizer/path/costsize.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c M src/backend/utils/misc/guc.c M src/include/optimizer/cost.h M src/include/pgxc/planner.h ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/path/costsize.c | 1 + src/backend/optimizer/plan/createplan.c | 3 +++ src/backend/pgxc/plan/planner.c | 5 +++++ src/backend/utils/misc/guc.c | 24 +++++++++++++++++++++--- src/include/optimizer/cost.h | 1 + src/include/pgxc/planner.h | 2 ++ 6 files changed, 33 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2011-12-22 05:05:34
|
Project "Postgres-XC". The branch, master has been updated via 2140b647f169e236dbe652106245e240ce2aa865 (commit) from ef0e9f95e51e4828f69da452f0eb97b413bbc2c9 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2140b647f169e236dbe652106245e240ce2aa865 commit 2140b647f169e236dbe652106245e240ce2aa865 Author: Amit Khandekar <ami...@en...> Date: Thu Dec 22 10:17:17 2011 +0530 Fix for Bug id:3425212: Failed to build on Ubuntu 11.10 Ubuntu 11 no longer has the libpthread.so in the usual locations like /lib or /usr/lib. We have hardcoded -lpthread linker option used in gtm module. The fix is to instead use PTHREAD_CFLAGS macro that is defined in src/Makefile.global. This macro has the correct pthread options already. In this particular issue, the -pthread (not -lpthread) option was the one that was needed to resolve the compile errors. The backend postgres executable also needs this option in case of XC, because it uses functions from src/interfaces/libpq/fe-secure.c which in turn uses pthread calls. M src/backend/Makefile M src/gtm/main/Makefile M src/gtm/proxy/Makefile ----------------------------------------------------------------------- Summary of changes: src/backend/Makefile | 4 ++++ src/gtm/main/Makefile | 4 ++++ src/gtm/proxy/Makefile | 4 ++++ 3 files changed, 12 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |