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
|
4
|
5
|
6
|
7
(4) |
8
|
9
(2) |
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
(8) |
19
|
20
|
21
(2) |
22
(4) |
23
(2) |
24
(3) |
25
|
26
|
27
|
28
|
29
|
30
(4) |
31
(6) |
|
|
From: Abbas B. <ga...@us...> - 2013-01-23 08:55:35
|
Project "Postgres-XC". The branch, master has been updated via f4a3652271d80627dcc28171eeccd7620ad397c7 (commit) from e4279c68e3db231511025d4f2115fd459a3398ce (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f4a3652271d80627dcc28171eeccd7620ad397c7 commit f4a3652271d80627dcc28171eeccd7620ad397c7 Author: Abbas <abb...@en...> Date: Wed Jan 23 13:53:14 2013 +0500 Add support for RETURNING clause in DMLs The patch does the following major changes 1. Modifies the DML planning code to send the shippable part of the returning list to the datanodes in the remote query. 2. Modifies the var references in returning list according to the target list that was sent to the datanodes since the tuples returned from the datanodes will contain vars in that order. 3. Modifies remote query execution to make sure that a single response is accepted in case of DMLs on replicated tables with returning lists. 4. Manages the fact that a DML can return tuples during remote query execution. 5. Manages null tuples received from datanodes while counting modified tuples. 6. Uses projection mechanism to show returned tuples 7. Adds test cases. Special thanks to Ashutosh for reviewing the patch. M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/plan/pgxcplan.c M src/backend/optimizer/plan/setrefs.c M src/backend/optimizer/util/pgxcship.c M src/backend/parser/parse_relation.c M src/backend/pgxc/pool/execRemote.c M src/backend/utils/adt/ruleutils.c M src/include/pgxc/execRemote.h M src/include/utils/builtins.h M src/test/regress/expected/plpgsql_1.out M src/test/regress/expected/rangefuncs_1.out M src/test/regress/expected/returning_1.out M src/test/regress/expected/triggers_1.out M src/test/regress/expected/with.out M src/test/regress/expected/xc_create_function.out A src/test/regress/expected/xc_returning.out M src/test/regress/parallel_schedule M src/test/regress/serial_schedule M src/test/regress/sql/returning.sql M src/test/regress/sql/with.sql M src/test/regress/sql/xc_create_function.sql A src/test/regress/sql/xc_returning.sql ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 127 ++- src/backend/optimizer/plan/pgxcplan.c | 125 ++- src/backend/optimizer/plan/setrefs.c | 141 +++- src/backend/optimizer/util/pgxcship.c | 4 + src/backend/parser/parse_relation.c | 7 - src/backend/pgxc/pool/execRemote.c | 303 ++++- src/backend/utils/adt/ruleutils.c | 33 + src/include/pgxc/execRemote.h | 5 +- src/include/utils/builtins.h | 1 + src/test/regress/expected/plpgsql_1.out | 42 +- src/test/regress/expected/rangefuncs_1.out | 178 +++- src/test/regress/expected/returning_1.out | 269 +++-- src/test/regress/expected/triggers_1.out | 12 +- src/test/regress/expected/with.out | 512 +++++++-- src/test/regress/expected/xc_create_function.out | 23 +- src/test/regress/expected/xc_returning.out | 1324 ++++++++++++++++++++++ src/test/regress/parallel_schedule | 3 +- src/test/regress/serial_schedule | 1 + src/test/regress/sql/returning.sql | 18 +- src/test/regress/sql/with.sql | 18 +- src/test/regress/sql/xc_create_function.sql | 24 +- src/test/regress/sql/xc_returning.sql | 1006 ++++++++++++++++ 22 files changed, 3834 insertions(+), 342 deletions(-) create mode 100644 src/test/regress/expected/xc_returning.out create mode 100644 src/test/regress/sql/xc_returning.sql hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2013-01-23 01:16:40
|
Project "Postgres-XC". The branch, master has been updated via e4279c68e3db231511025d4f2115fd459a3398ce (commit) from fae7d02e04e97d3e236c84c07b0c13c1afc3fdac (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e4279c68e3db231511025d4f2115fd459a3398ce commit e4279c68e3db231511025d4f2115fd459a3398ce Author: Koichi Suzuki <koi...@gm...> Date: Wed Jan 23 10:15:13 2013 +0900 Fix for the bug 3553480. Now gtm_ctl start in a shell script returns if invoked with -l option. This behavior is similar to pg_ctl. modified: src/bin/gtm_ctl/gtm_ctl.c M src/bin/gtm_ctl/gtm_ctl.c ----------------------------------------------------------------------- Summary of changes: src/bin/gtm_ctl/gtm_ctl.c | 48 ++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 45 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |