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
(3) |
4
(2) |
5
(2) |
6
|
7
|
8
|
9
|
10
|
11
(2) |
12
(5) |
13
|
14
|
15
(2) |
16
(1) |
17
|
18
|
19
|
20
|
21
|
22
(1) |
23
(2) |
24
(2) |
25
|
26
(2) |
27
|
28
|
29
|
30
(2) |
31
(3) |
|
|
|
From: Ashutosh B. <ash...@us...> - 2012-10-30 12:45:39
|
Project "Postgres-XC". The branch, master has been updated via 8cb32febe56d62b986598cdad0ae66aeffeb1f63 (commit) from 16992e6b07d28d66c183adf45dd8e1cae2cdf25b (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8cb32febe56d62b986598cdad0ae66aeffeb1f63 commit 8cb32febe56d62b986598cdad0ae66aeffeb1f63 Author: Ashutosh Bapat <ash...@en...> Date: Tue Oct 30 19:20:07 2012 +0530 Push LIMIT clause to the datanode if the expressions in those clauses are shippable and the underlying plan tree allows that. In case there is only one datanode involved in the execution of the RemoteQuery, we just push the clause to the datanode and no LIMIT and OFFSET processing is required at the coordinator. But for distributed execution of RemoteQuery, we need LIMIT and OFFSET processing at the coordinator. If OFFSET clause is present, we do not push it, but include it in the LIMIT clause and apply OFFSET at the coordinator. M src/backend/optimizer/path/costsize.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/optimizer/plan/planner.c M src/backend/utils/misc/guc.c M src/include/optimizer/cost.h M src/include/optimizer/planmain.h M src/test/regress/expected/rangefuncs.out M src/test/regress/expected/rangefuncs_1.out M src/test/regress/expected/xc_FQS.out M src/test/regress/parallel_schedule M src/test/regress/serial_schedule ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/path/costsize.c | 1 + src/backend/optimizer/plan/pgxcplan.c | 170 ++++++++++++++++++++++++++++ src/backend/optimizer/plan/planner.c | 5 + src/backend/utils/misc/guc.c | 9 ++ src/include/optimizer/cost.h | 1 + src/include/optimizer/planmain.h | 1 + src/test/regress/expected/rangefuncs.out | 3 +- src/test/regress/expected/rangefuncs_1.out | 3 +- src/test/regress/expected/xc_FQS.out | 24 ++-- src/test/regress/parallel_schedule | 2 +- src/test/regress/serial_schedule | 1 + 11 files changed, 205 insertions(+), 15 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-10-30 07:04:43
|
Project "Postgres-XC". The branch, master has been updated via 16992e6b07d28d66c183adf45dd8e1cae2cdf25b (commit) from 6bf96922d2e0b140820d5f8f62d86b90de628e1f (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=16992e6b07d28d66c183adf45dd8e1cae2cdf25b commit 16992e6b07d28d66c183adf45dd8e1cae2cdf25b Author: Michael Paquier <mi...@ot...> Date: Tue Oct 30 16:02:14 2012 +0900 Move GTM configuration APIs in src/gtm/common to new folder src/gtm/config This is part of the effort to eliminate the duplications in GTM code with things of PG src/backend. src/gtm/common had a dependency with the binary postgres when it is built so this dependency with GTM configuration is unnecessary. Even if GTM should rely on the APIs of guc-file.l for configuration file treatment, for the time being this permits to split each functionality correctly. M src/gtm/Makefile M src/gtm/common/Makefile R100 src/gtm/common/.gitignore src/gtm/config/.gitignore A src/gtm/config/Makefile R099 src/gtm/common/gtm_opt_handler.c src/gtm/config/gtm_opt_handler.c R100 src/gtm/common/gtm_opt_scanner.l src/gtm/config/gtm_opt_scanner.l M src/gtm/main/Makefile M src/gtm/proxy/Makefile ----------------------------------------------------------------------- Summary of changes: src/gtm/Makefile | 2 +- src/gtm/common/Makefile | 13 ++----------- src/gtm/{common => config}/.gitignore | 0 src/gtm/{common => config}/Makefile | 25 ++++++++++--------------- src/gtm/{common => config}/gtm_opt_handler.c | 2 +- src/gtm/{common => config}/gtm_opt_scanner.l | 0 src/gtm/main/Makefile | 3 ++- src/gtm/proxy/Makefile | 10 +++++----- 8 files changed, 21 insertions(+), 34 deletions(-) rename src/gtm/{common => config}/.gitignore (100%) copy src/gtm/{common => config}/Makefile (63%) rename src/gtm/{common => config}/gtm_opt_handler.c (99%) rename src/gtm/{common => config}/gtm_opt_scanner.l (100%) hooks/post-receive -- Postgres-XC |