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: Michael P. <mic...@gm...> - 2011-10-18 23:40:17
|
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 |