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
(2) |
6
(2) |
7
|
8
(2) |
9
|
10
|
11
(1) |
12
(1) |
13
|
14
(2) |
15
(2) |
16
|
17
|
18
(1) |
19
|
20
|
21
(2) |
22
|
23
|
24
|
25
(1) |
26
|
27
(2) |
28
(2) |
29
(2) |
30
|
31
|
|
|
|
|
|
|
From: Mason <ma...@us...> - 2011-07-29 12:39:27
|
On Fri, Jul 29, 2011 at 4:57 AM, Ashutosh Bapat <ash...@us...> wrote: > Project "Postgres-XC". > > The branch, master has been updated > via 01f9d0376f95f08f352f96f0f1bdda8c56b610a8 (commit) > from 8ed66ed82f879918a16688e0f0138066afb7ca26 (commit) > > > - Log ----------------------------------------------------------------- > http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h= > > commit 01f9d0376f95f08f352f96f0f1bdda8c56b610a8 > Author: Ashutosh Bapat <ash...@en...> > Date: Fri Jul 29 13:50:49 2011 +0530 > > Allow commands PREPARE and EXECUTE to prepare a statement and execute it resp. > DEALLOCATE is already allowed. > Adds support for parameterised queries. While setting the statement names in > RemoteQuery node, we also set the parameter types. These are used while sending > Parse message to data nodes. The infrastructure to bind the parameter values was > already there. Great. Is this a general solution for multi-step queries, too? Prepared statements are also related to stored function support. Is there any impact on support for that? Thanks, Mason |
From: Ashutosh B. <ash...@us...> - 2011-07-29 08:57:30
|
Project "Postgres-XC". The branch, master has been updated via 01f9d0376f95f08f352f96f0f1bdda8c56b610a8 (commit) from 8ed66ed82f879918a16688e0f0138066afb7ca26 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h= commit 01f9d0376f95f08f352f96f0f1bdda8c56b610a8 Author: Ashutosh Bapat <ash...@en...> Date: Fri Jul 29 13:50:49 2011 +0530 Allow commands PREPARE and EXECUTE to prepare a statement and execute it resp. DEALLOCATE is already allowed. Adds support for parameterised queries. While setting the statement names in RemoteQuery node, we also set the parameter types. These are used while sending Parse message to data nodes. The infrastructure to bind the parameter values was already there. M src/backend/commands/prepare.c M src/backend/nodes/copyfuncs.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/pgxcnode.c M src/backend/tcop/utility.c M src/include/pgxc/pgxcnode.h M src/include/pgxc/planner.h M src/test/regress/expected/domain_1.out M src/test/regress/expected/functional_deps_1.out M src/test/regress/expected/guc_1.out M src/test/regress/expected/plancache_1.out D src/test/regress/expected/prepare_1.out M src/test/regress/output/tablespace_1.source ----------------------------------------------------------------------- Summary of changes: src/backend/commands/prepare.c | 37 +++---- src/backend/nodes/copyfuncs.c | 2 + src/backend/pgxc/pool/execRemote.c | 2 + src/backend/pgxc/pool/pgxcnode.c | 31 ++++-- src/backend/tcop/utility.c | 12 -- src/include/pgxc/pgxcnode.h | 1 + src/include/pgxc/planner.h | 5 + src/test/regress/expected/domain_1.out | 15 ++-- src/test/regress/expected/functional_deps_1.out | 11 +- src/test/regress/expected/guc_1.out | 5 +- src/test/regress/expected/plancache_1.out | 85 ++++++++-------- src/test/regress/expected/prepare_1.out | 126 ----------------------- src/test/regress/output/tablespace_1.source | 5 +- 13 files changed, 104 insertions(+), 233 deletions(-) delete mode 100644 src/test/regress/expected/prepare_1.out hooks/post-receive -- Postgres-XC |