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
(2) |
4
(1) |
5
(1) |
6
|
7
|
8
|
9
|
10
(1) |
11
(3) |
12
(3) |
13
|
14
|
15
|
16
|
17
(4) |
18
(1) |
19
(3) |
20
|
21
(2) |
22
|
23
|
24
|
25
|
26
|
27
(2) |
28
(4) |
29
(1) |
30
|
31
(2) |
|
|
|
|
|
From: Ashutosh B. <ash...@us...> - 2011-10-19 04:23:40
|
Project "Postgres-XC". The branch, master has been updated via d6917fc7629b2a99651d4fab5465ddb8e723cd4b (commit) from 9fe8dc04625176fd12bad9b13ab5ec0b483b3f84 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d6917fc7629b2a99651d4fab5465ddb8e723cd4b commit d6917fc7629b2a99651d4fab5465ddb8e723cd4b Author: Ashutosh Bapat <ash...@en...> Date: Wed Oct 19 09:50:42 2011 +0530 The member is_single_step in RemoteQuery node is only assigned values to but never read and used. Hence removing this member. M src/backend/nodes/copyfuncs.c M src/backend/parser/analyze.c M src/backend/pgxc/plan/planner.c M src/include/pgxc/planner.h ----------------------------------------------------------------------- Summary of changes: src/backend/nodes/copyfuncs.c | 1 - src/backend/parser/analyze.c | 1 - src/backend/pgxc/plan/planner.c | 6 ------ src/include/pgxc/planner.h | 1 - 4 files changed, 0 insertions(+), 9 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@gm...> - 2011-10-19 04:07:26
|
On Wed, Oct 19, 2011 at 12:51 PM, Ashutosh Bapat < ash...@en...> wrote: > Thanks for your reply. > > I think I am using this code to my advantage for FQS, so no need to worry > about it. Thanks. This is good to know. -- Michael Paquier http://michael.otacoo.com |
From: Ashutosh B. <ash...@en...> - 2011-10-19 03:51:27
|
Thanks for your reply. I think I am using this code to my advantage for FQS, so no need to worry about it. On Wed, Oct 19, 2011 at 5:10 AM, Michael Paquier <mic...@gm...>wrote: > > > On Mon, Oct 17, 2011 at 8:04 PM, Ashutosh Bapat < > ash...@en...> wrote: > >> Hi All, >> In transformExecDirectStmt() we set sql_statement to NULL. >> 2353 /* Default list of parameters to set */ >> 2354 step->is_single_step = true; >> 2355 step->sql_statement = NULL; >> 2356 step->exec_nodes = makeNode(ExecNodes); >> 2357 step->combine_type = COMBINE_TYPE_NONE; >> 2358 step->sort = NULL; >> >> Later in pgxc_planner() we deparse the Query node and build the SQL >> statement. Why don't we use the sql_statement in the Query node itself or >> set RemoteQuery->sql_statement in this function itself? Why do we need to >> deparse it in pgxc_planner()? >> > We do not need to parse the query, sending a raw string is enough. This is > what I could call a bug :) > I haven't been through this code in months, and unfortunately the fixes I > did in this part were kind of made in a hurry, so there may be other issues. > I will try to rework this code by the end of the month if possible as I've > been kept busy now with release stuff, etc. > Regards, > -- > Michael Paquier > http://michael.otacoo.com > -- Best Wishes, Ashutosh Bapat EntepriseDB Corporation The Enterprise Postgres Company |