You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(10) |
May
(17) |
Jun
(3) |
Jul
|
Aug
|
Sep
(8) |
Oct
(18) |
Nov
(51) |
Dec
(74) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(47) |
Feb
(44) |
Mar
(44) |
Apr
(102) |
May
(35) |
Jun
(25) |
Jul
(56) |
Aug
(69) |
Sep
(32) |
Oct
(37) |
Nov
(31) |
Dec
(16) |
2012 |
Jan
(34) |
Feb
(127) |
Mar
(218) |
Apr
(252) |
May
(80) |
Jun
(137) |
Jul
(205) |
Aug
(159) |
Sep
(35) |
Oct
(50) |
Nov
(82) |
Dec
(52) |
2013 |
Jan
(107) |
Feb
(159) |
Mar
(118) |
Apr
(163) |
May
(151) |
Jun
(89) |
Jul
(106) |
Aug
(177) |
Sep
(49) |
Oct
(63) |
Nov
(46) |
Dec
(7) |
2014 |
Jan
(65) |
Feb
(128) |
Mar
(40) |
Apr
(11) |
May
(4) |
Jun
(8) |
Jul
(16) |
Aug
(11) |
Sep
(4) |
Oct
(1) |
Nov
(5) |
Dec
(16) |
2015 |
Jan
(5) |
Feb
|
Mar
(2) |
Apr
(5) |
May
(4) |
Jun
(12) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
(3) |
8
|
9
(1) |
10
(1) |
11
(10) |
12
(4) |
13
(8) |
14
(2) |
15
|
16
|
17
(1) |
18
(2) |
19
(1) |
20
|
21
(1) |
22
|
23
|
24
|
25
(1) |
26
(3) |
27
(2) |
28
(6) |
29
(1) |
30
|
31
|
|
|
|
|
|
From: xiong w. <wan...@gm...> - 2011-01-12 08:45:18
|
Hi Michael, I noticed you added IsConnFromCoord() after macro IS_PGXC_COORDINATOR in all your committed code today and yesterday. I doubt whether it's right. In this patch, if (IS_PGXC_COORDINATOR && IsConnFromCoord()) //I consider IsConnFromCoord() should not be added here because the coordinator which is connected by psql cann't execute the code below. { RemoteQueryExecType remoteExecType = EXEC_ON_ALL_NODES; RenameStmt *stmt = (RenameStmt *) parsetree; if (stmt->renameType == OBJECT_SEQUENCE) remoteExecType = EXEC_ON_COORDS; else if (stmt->renameType == OBJECT_TABLE) { Oid relid = RangeVarGetRelid(stmt->relation, false); if (get_rel_relkind(relid) == RELKIND_SEQUENCE) remoteExecType = EXEC_ON_COORDS; } ExecUtilityStmtOnNodes(queryString, NULL, false, remoteExecType);//There is "if (!IsConnFromCoord())" clause in this function. It can control the execution flow. } Regards, Benny > Hi, > > Just to let you know that this patch has been committed in git repository > with this ID: > 28da86b88e667b5e45e6deef831cc839ccba2703 > > The logic of the patch was OK, I don't really have comments. > Well 1 perhaps... > Be sure to respect the 4-space tab :) > This is a PostgreSQL convention. > > Regards, > > -- > Michael Paquier > http://michaelpq.users.sourceforge.net > > |
From: Michael P. <mic...@gm...> - 2011-01-12 06:59:14
|
Hi, Just to let you know that this patch has been committed in git repository with this ID: 28da86b88e667b5e45e6deef831cc839ccba2703 The logic of the patch was OK, I don't really have comments. Well 1 perhaps... Be sure to respect the 4-space tab :) This is a PostgreSQL convention. Regards, -- Michael Paquier http://michaelpq.users.sourceforge.net |
From: xiong w. <wan...@gm...> - 2011-01-12 05:06:55
|
2011/1/12 Michael Paquier <mic...@gm...>: > On Tue, Jan 11, 2011 at 11:57 AM, xiong wang <wan...@gm...> wrote: >> >> > I think there is still the multiple INSERT patch you wrote that needs >> > some >> > review, no? >> > >> >> Yes. It will be much appreciated if you can review. Should I revise >> and submit my patch now or after your recent release? > > Sorry for my late reply. > I would say the faster the better, so feel free to submit your patch to the > mailing list before the next release. > > If you could realign your code with the latest head, > I'll be pleased to have a look at it and give you some feedback. > Ok, I will submit the patch soon. Regards, Benny > Regards, > -- > Michael Paquier > http://michaelpq.users.sourceforge.net > > |
From: Michael P. <mic...@gm...> - 2011-01-12 04:28:53
|
On Tue, Jan 11, 2011 at 11:57 AM, xiong wang <wan...@gm...> wrote: > > I think there is still the multiple INSERT patch you wrote that needs > some > > review, no? > > > > Yes. It will be much appreciated if you can review. Should I revise > and submit my patch now or after your recent release? > Sorry for my late reply. I would say the faster the better, so feel free to submit your patch to the mailing list before the next release. If you could realign your code with the latest head, I'll be pleased to have a look at it and give you some feedback. Regards, -- Michael Paquier http://michaelpq.users.sourceforge.net |