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) |
2
(1) |
3
|
4
|
5
(3) |
6
|
7
|
8
(1) |
9
|
10
(1) |
11
(1) |
12
|
13
|
14
|
15
|
16
|
17
(1) |
18
|
19
(1) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
(1) |
31
(1) |
|
|
|
From: Koichi S. <koi...@us...> - 2011-08-05 07:35:19
|
Project "Postgres-XC". The branch, master has been updated via f1a32c6227136d722aead50b8d4a85fceba7523f (commit) via 694cab5487b60da9b07cf0418bac6b1e41875ea9 (commit) from 8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f1a32c6227136d722aead50b8d4a85fceba7523f commit f1a32c6227136d722aead50b8d4a85fceba7523f Merge: 694cab5 8a15033 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 5 16:38:03 2011 +0900 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=694cab5487b60da9b07cf0418bac6b1e41875ea9 commit f1a32c6227136d722aead50b8d4a85fceba7523f Merge: 694cab5 8a15033 Author: Koichi Suzuki <koi...@gm...> Date: Fri Aug 5 16:38:03 2011 +0900 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_table.sgmlin | 2 +- doc-xc/src/sgml/ref/create_view.sgmlin | 2 +- doc-xc/src/sgml/ref/select.sgmlin | 2 +- doc-xc/src/sgml/sql.sgmlin | 41 +++++++++++++++++++----------- 4 files changed, 29 insertions(+), 18 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-05 07:24:53
|
Project "Postgres-XC". The branch, documentation has been deleted was 4b5e7dbd9ecd43597fb63c14a3f0c830d266ace2 ----------------------------------------------------------------------- 4b5e7dbd9ecd43597fb63c14a3f0c830d266ace2 This commit updates Postgres-XC documentation on manual build and installation. ----------------------------------------------------------------------- hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-08-05 02:26:13
|
Project "Postgres-XC". The branch, master has been updated via 8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 (commit) from 87502bc809b852337e09f391317cbbc0cc35faf8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 commit 8a15033d7d7ae7cbe9a100ea88b8e18f033f0cb4 Author: Michael P <mic...@us...> Date: Fri Aug 5 11:07:38 2011 +0900 Support for temporary TABLE/VIEW Temporary tables and views are supported so as it uses the same interface as PostgreSQL. For Postgres-XC, it is possible for users to create un the cluster temporary tables that are replicated or distributed the same way as permanent tables. As those objects are session-limited, creation is made automatically on the Datanodes at the moment of query launch like normal DDL. Views are created only on local Coordinators. Support for ON COMMIT DROP/PRESERVE ROWS/DELETE ROWS is guarranted the same way as PostgreSQL. Support for INDEX, DROP, RENAME is also guarranted like normal PostgreSQL. One of the main changes is the addition of a DISCARD ALL clean up command run in pooler for pooler connections used during session to Datanodes when session finishes. This command is run the same way as RESET ALL for SET commands at the end of a session. A new regression test case called xc_temp has been added to check JOINs between temporary and persistent tables for the types types of distribution supported by Postgres-XC: REPLICATION, HASH (equivalent to MODULO), ROUND ROBIN. M src/backend/access/transam/xact.c M src/backend/commands/comment.c M src/backend/commands/copy.c M src/backend/commands/schemacmds.c M src/backend/commands/tablecmds.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/poolmgr.c M src/backend/tcop/utility.c M src/include/commands/comment.h M src/include/commands/tablecmds.h M src/include/pgxc/execRemote.h M src/include/pgxc/planner.h M src/include/pgxc/poolmgr.h M src/test/regress/expected/cluster_1.out M src/test/regress/expected/combocid_1.out M src/test/regress/expected/copy2_1.out M src/test/regress/expected/domain_1.out M src/test/regress/expected/foreign_key_1.out M src/test/regress/expected/functional_deps_1.out M src/test/regress/expected/guc_1.out M src/test/regress/expected/polymorphism_1.out M src/test/regress/expected/returning_1.out M src/test/regress/expected/rowtypes_1.out M src/test/regress/expected/select_1.out M src/test/regress/expected/select_distinct_on_1.out M src/test/regress/expected/sequence_2.out M src/test/regress/expected/temp_1.out M src/test/regress/expected/transactions_1.out A src/test/regress/expected/xc_temp.out M src/test/regress/serial_schedule M src/test/regress/sql/cluster.sql M src/test/regress/sql/rowtypes.sql A src/test/regress/sql/xc_temp.sql ----------------------------------------------------------------------- Summary of changes: src/backend/access/transam/xact.c | 17 + src/backend/commands/comment.c | 42 +- src/backend/commands/copy.c | 6 + src/backend/commands/schemacmds.c | 3 +- src/backend/commands/tablecmds.c | 117 +++- src/backend/optimizer/plan/createplan.c | 10 +- src/backend/pgxc/plan/planner.c | 46 +- src/backend/pgxc/pool/execRemote.c | 63 ++- src/backend/pgxc/pool/poolmgr.c | 186 +++- src/backend/tcop/utility.c | 557 ++++++++---- src/include/commands/comment.h | 4 + src/include/commands/tablecmds.h | 8 + src/include/pgxc/execRemote.h | 2 + src/include/pgxc/planner.h | 5 +- src/include/pgxc/poolmgr.h | 25 +- src/test/regress/expected/cluster_1.out | 18 +- src/test/regress/expected/combocid_1.out | 76 +- src/test/regress/expected/copy2_1.out | 83 +- src/test/regress/expected/domain_1.out | 49 +- src/test/regress/expected/foreign_key_1.out | 28 +- src/test/regress/expected/functional_deps_1.out | 30 +- src/test/regress/expected/guc_1.out | 12 +- src/test/regress/expected/polymorphism_1.out | 263 ++++-- src/test/regress/expected/returning_1.out | 12 +- src/test/regress/expected/rowtypes_1.out | 181 ++-- src/test/regress/expected/select_1.out | 247 ++++-- src/test/regress/expected/select_distinct_on_1.out | 3 +- src/test/regress/expected/sequence_2.out | 6 +- src/test/regress/expected/temp_1.out | 106 +-- src/test/regress/expected/transactions_1.out | 15 +- src/test/regress/expected/xc_temp.out | 952 ++++++++++++++++++++ src/test/regress/serial_schedule | 2 +- src/test/regress/sql/cluster.sql | 2 +- src/test/regress/sql/rowtypes.sql | 3 +- src/test/regress/sql/xc_temp.sql | 138 +++ 35 files changed, 2549 insertions(+), 768 deletions(-) create mode 100644 src/test/regress/expected/xc_temp.out create mode 100644 src/test/regress/sql/xc_temp.sql hooks/post-receive -- Postgres-XC |