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
(1) |
3
|
4
(1) |
5
(3) |
6
(2) |
7
|
8
|
9
|
10
(1) |
11
|
12
(8) |
13
(2) |
14
|
15
|
16
(6) |
17
(1) |
18
(1) |
19
(2) |
20
(1) |
21
|
22
|
23
|
24
(1) |
25
|
26
(4) |
27
|
28
|
29
|
30
(3) |
31
(1) |
|
|
|
|
From: Ashutosh B. <ash...@us...> - 2012-01-31 09:34:32
|
Project "Postgres-XC". The branch, master has been updated via 5c0b161a0ae728c8c8f62721165b4bcae05d5893 (commit) from eb7b4894c0547f7218759e44ce3894ad7d40f051 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5c0b161a0ae728c8c8f62721165b4bcae05d5893 commit 5c0b161a0ae728c8c8f62721165b4bcae05d5893 Author: Ashutosh Bapat <ash...@en...> Date: Tue Jan 31 15:00:33 2012 +0530 Make utility statements executed through functions work. The original utility statement is sent to the other coordinators and datanodes only once by creating a RemoteQuery node corresponding to that statement. M contrib/pg_stat_statements/pg_stat_statements.c M contrib/sepgsql/hooks.c M src/backend/commands/extension.c M src/backend/commands/schemacmds.c M src/backend/commands/trigger.c M src/backend/executor/functions.c M src/backend/executor/spi.c M src/backend/rewrite/rewriteHandler.c M src/backend/tcop/pquery.c M src/backend/tcop/utility.c M src/include/tcop/utility.h ----------------------------------------------------------------------- Summary of changes: contrib/pg_stat_statements/pg_stat_statements.c | 36 +++++++++++++++++++---- contrib/sepgsql/hooks.c | 15 ++++++++- src/backend/commands/extension.c | 3 ++ src/backend/commands/schemacmds.c | 10 ++++-- src/backend/commands/trigger.c | 6 +++- src/backend/executor/functions.c | 3 ++ src/backend/executor/spi.c | 3 ++ src/backend/rewrite/rewriteHandler.c | 6 +++- src/backend/tcop/pquery.c | 3 ++ src/backend/tcop/utility.c | 36 ++++++++++++++++++---- src/include/tcop/utility.h | 18 +++++++++-- 11 files changed, 116 insertions(+), 23 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-30 23:42:44
|
Project "Postgres-XC". The branch, master has been updated via eb7b4894c0547f7218759e44ce3894ad7d40f051 (commit) from de1a2df8d43f48dcffbe7968559c4a5514a5d87e (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=eb7b4894c0547f7218759e44ce3894ad7d40f051 commit eb7b4894c0547f7218759e44ce3894ad7d40f051 Author: Michael P <mi...@ot...> Date: Tue Jan 31 08:45:17 2012 +0900 Regression test for node DDL This checks grammar and error messages when using node DDL. This test cannot be run in parallel as it changes the cluster configuration. A src/test/regress/expected/xc_node.out M src/test/regress/parallel_schedule M src/test/regress/serial_schedule A src/test/regress/sql/xc_node.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/xc_node.out | 58 +++++++++++++++++++++++++++++++++ src/test/regress/parallel_schedule | 3 ++ src/test/regress/serial_schedule | 1 + src/test/regress/sql/xc_node.sql | 38 +++++++++++++++++++++ 4 files changed, 100 insertions(+), 0 deletions(-) create mode 100644 src/test/regress/expected/xc_node.out create mode 100644 src/test/regress/sql/xc_node.sql hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-01-30 11:29:29
|
Project "Postgres-XC". The branch, master has been updated via de1a2df8d43f48dcffbe7968559c4a5514a5d87e (commit) from 29ac1c6e1bd339bb4027f43957cbdeac122e49a4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=de1a2df8d43f48dcffbe7968559c4a5514a5d87e commit de1a2df8d43f48dcffbe7968559c4a5514a5d87e Author: Ashutosh Bapat <ash...@en...> Date: Mon Jan 30 16:51:16 2012 +0530 The RTEs corresponding to the RemoteQuery nodes created during planning by reducing plan nodes like JOIN/GROUP/AGG are labelled as RTE_REMOTE_DUMMY. The RTE created by JOIN reduction is provided with aliases generated as the column names. M src/backend/nodes/makefuncs.c M src/backend/nodes/nodeFuncs.c M src/backend/nodes/outfuncs.c M src/backend/nodes/print.c M src/backend/nodes/readfuncs.c M src/backend/optimizer/plan/createplan.c M src/backend/parser/parse_target.c M src/backend/utils/adt/ruleutils.c M src/include/nodes/parsenodes.h ----------------------------------------------------------------------- Summary of changes: src/backend/nodes/makefuncs.c | 5 +++++ src/backend/nodes/nodeFuncs.c | 8 ++++++++ src/backend/nodes/outfuncs.c | 5 +++++ src/backend/nodes/print.c | 3 +++ src/backend/nodes/readfuncs.c | 5 +++++ src/backend/optimizer/plan/createplan.c | 17 +++++++++++------ src/backend/parser/parse_target.c | 10 ++++++++++ src/backend/utils/adt/ruleutils.c | 5 +++++ src/include/nodes/parsenodes.h | 3 +++ 9 files changed, 55 insertions(+), 6 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-30 05:15:12
|
Project "Postgres-XC". The branch, master has been updated via 29ac1c6e1bd339bb4027f43957cbdeac122e49a4 (commit) from 6bf92624884bb8884ab750cf1c3acf6a0e8a8a61 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=29ac1c6e1bd339bb4027f43957cbdeac122e49a4 commit 29ac1c6e1bd339bb4027f43957cbdeac122e49a4 Author: Michael P <mi...@ot...> Date: Mon Jan 30 14:17:15 2012 +0900 Extended Node DDL grammar for preferred and primary nodes An optional boolean option can be specified with PREFERRED/PRIMARY in CREATE/ALTER NODE to allow deeper customization of the node behavior on Coordinator in the cluster. Some code duplication has been removed in nodemgr.c and all the error handling is now managed by check_node_options. M doc-xc/src/sgml/ref/alter_node.sgmlin M doc-xc/src/sgml/ref/create_node.sgmlin M src/backend/parser/gram.y M src/backend/pgxc/nodemgr/nodemgr.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/alter_node.sgmlin | 16 +- doc-xc/src/sgml/ref/create_node.sgmlin | 16 +- src/backend/parser/gram.y | 20 +- src/backend/pgxc/nodemgr/nodemgr.c | 368 +++++++++----------------------- 4 files changed, 134 insertions(+), 286 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-26 04:26:53
|
Project "Postgres-XC". The branch, master has been updated via 6bf92624884bb8884ab750cf1c3acf6a0e8a8a61 (commit) from df32af292a9160b0d8be05a704b8f7b230acc20c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6bf92624884bb8884ab750cf1c3acf6a0e8a8a61 commit 6bf92624884bb8884ab750cf1c3acf6a0e8a8a61 Author: Michael P <mi...@ot...> Date: Thu Jan 26 13:29:59 2012 +0900 Move bug report template to doc-xc M doc-xc/bug.template M doc/bug.template ----------------------------------------------------------------------- Summary of changes: doc-xc/bug.template | 14 +++++++------- doc/bug.template | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-26 03:35:46
|
Project "Postgres-XC". The branch, master has been updated via df32af292a9160b0d8be05a704b8f7b230acc20c (commit) from d2e24691a95e5cbda8fe60b9c992c4808ba73adf (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=df32af292a9160b0d8be05a704b8f7b230acc20c commit df32af292a9160b0d8be05a704b8f7b230acc20c Author: Michael P <mi...@ot...> Date: Thu Jan 26 12:24:05 2012 +0900 Make psql commands consistent with Postgres-XC server version M src/bin/psql/describe.c ----------------------------------------------------------------------- Summary of changes: src/bin/psql/describe.c | 276 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 276 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-26 01:41:40
|
Project "Postgres-XC". The branch, master has been updated via d2e24691a95e5cbda8fe60b9c992c4808ba73adf (commit) from 99cf748f6a09e6536f43e87e705ba2b4ccd96c8f (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d2e24691a95e5cbda8fe60b9c992c4808ba73adf commit d2e24691a95e5cbda8fe60b9c992c4808ba73adf Author: Michael P <mi...@ot...> Date: Thu Jan 26 10:40:45 2012 +0900 Stamp HEAD as 1.0devel. M configure M configure.in M doc-xc/src/sgml/Makefile M doc-xc/src/sgml/version.sgmlin M doc/bug.template M src/include/pg_config.h.win32 M src/interfaces/libpq/libpq.rc.in M src/port/win32ver.rc M src/tools/version_stamp.pl ----------------------------------------------------------------------- Summary of changes: configure | 48 +++++++++++++++++++------------------- configure.in | 2 +- doc-xc/src/sgml/Makefile | 2 +- doc-xc/src/sgml/version.sgmlin | 4 +- doc/bug.template | 14 +++++----- src/include/pg_config.h.win32 | 14 +++++----- src/interfaces/libpq/libpq.rc.in | 14 +++++----- src/port/win32ver.rc | 4 +- src/tools/version_stamp.pl | 4 +- 9 files changed, 53 insertions(+), 53 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-26 00:44:25
|
Project "Postgres-XC". The branch, master has been updated via 99cf748f6a09e6536f43e87e705ba2b4ccd96c8f (commit) from ba5f1a0be3b0688bf2a1d04eaddf714ce0e0ae50 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=99cf748f6a09e6536f43e87e705ba2b4ccd96c8f commit 99cf748f6a09e6536f43e87e705ba2b4ccd96c8f Author: Michael P <mi...@ot...> Date: Thu Jan 26 09:44:45 2012 +0900 EXECUTE DIRECT: grammar simplification and filter for utility commands For the time being only CREATE/DROP TABLESPACE are allowed through EXECUTE DIRECT on remote nodes only. Trying to launch EXECUTE DIRECT on local node with a utility command is still blocked. Grammar does not have anymore COORDINATOR/NODE as keyword, now only the node name is necessary. M doc-xc/src/sgml/ref/create_tablespace.sgmlin M doc-xc/src/sgml/ref/drop_tablespace.sgmlin M doc-xc/src/sgml/ref/execute_direct.sgmlin M src/backend/nodes/copyfuncs.c M src/backend/optimizer/path/allpaths.c M src/backend/parser/analyze.c M src/backend/parser/gram.y M src/backend/pgxc/plan/planner.c M src/backend/utils/adt/dbsize.c M src/include/nodes/parsenodes.h M src/pl/plpgsql/src/plpgsql--1.0.sql ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_tablespace.sgmlin | 7 ++ doc-xc/src/sgml/ref/drop_tablespace.sgmlin | 9 ++ doc-xc/src/sgml/ref/execute_direct.sgmlin | 41 ++------ src/backend/nodes/copyfuncs.c | 1 - src/backend/optimizer/path/allpaths.c | 3 +- src/backend/parser/analyze.c | 140 +++++++++++++++++--------- src/backend/parser/gram.y | 17 +--- src/backend/pgxc/plan/planner.c | 7 ++ src/backend/utils/adt/dbsize.c | 2 +- src/include/nodes/parsenodes.h | 8 +- src/pl/plpgsql/src/plpgsql--1.0.sql | 2 +- 11 files changed, 140 insertions(+), 97 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-24 07:36:38
|
Project "Postgres-XC". The branch, master has been updated via ba5f1a0be3b0688bf2a1d04eaddf714ce0e0ae50 (commit) from 8985fe5209bf8270fed7894b8efb6dc737f0e699 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ba5f1a0be3b0688bf2a1d04eaddf714ce0e0ae50 commit ba5f1a0be3b0688bf2a1d04eaddf714ce0e0ae50 Author: Michael P <mi...@ot...> Date: Tue Jan 24 16:36:53 2012 +0900 Support for TABLESPACE TABLESPACE are re-enabled without having any modifications in its grammar. A user defining a location for tablespace needs to be sure that this location exists on all the nodes of the cluster. A suffix with node name is added on the PG_XXX folder created in tablespace to support tablespace in case several nodes are running on the same node. New tablespace folder format is PG_XXX_NodeName. As node name is unique and constant in the cluster, this insures that no conflict will appear at the creation level. For the time begin, DBA has no way to refine location of tablespace for a single node level but this will be added later with extra support of CREATE/DROP TABLESPACE through EXECUTE DIRECT. M doc-xc/src/sgml/ref/create_tablespace.sgmlin M src/backend/catalog/catalog.c M src/backend/commands/tablespace.c M src/backend/pgxc/nodemgr/nodemgr.c M src/backend/storage/file/fd.c M src/backend/storage/file/reinit.c M src/backend/tcop/utility.c M src/backend/utils/adt/dbsize.c M src/backend/utils/adt/misc.c M src/backend/utils/cache/relcache.c M src/include/pgxc/nodemgr.h D src/test/regress/output/tablespace_1.source ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_tablespace.sgmlin | 6 +- src/backend/catalog/catalog.c | 47 +++++++++++++ src/backend/commands/tablespace.c | 38 +++++++++++ src/backend/pgxc/nodemgr/nodemgr.c | 7 ++ src/backend/storage/file/fd.c | 24 ++++++- src/backend/storage/file/reinit.c | 9 +++ src/backend/tcop/utility.c | 18 ++++-- src/backend/utils/adt/dbsize.c | 12 ++++ src/backend/utils/adt/misc.c | 16 +++++ src/backend/utils/cache/relcache.c | 6 ++ src/include/pgxc/nodemgr.h | 2 + src/test/regress/output/tablespace_1.source | 92 -------------------------- 12 files changed, 174 insertions(+), 103 deletions(-) delete mode 100644 src/test/regress/output/tablespace_1.source hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-01-20 06:09:53
|
Project "Postgres-XC". The branch, master has been updated via 8985fe5209bf8270fed7894b8efb6dc737f0e699 (commit) from df11641ab0290817bb3aedac944e6ef1bdcb2bec (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8985fe5209bf8270fed7894b8efb6dc737f0e699 commit 8985fe5209bf8270fed7894b8efb6dc737f0e699 Author: Ashutosh Bapat <ash...@en...> Date: Fri Jan 20 11:37:07 2012 +0530 Add all selected columns in ORDER BY clause to get the output always in same order in tests txid and insert. Remove the alternate output for those tests and modify expected output accordingly. M src/test/regress/expected/insert.out D src/test/regress/expected/insert_1.out M src/test/regress/expected/txid.out D src/test/regress/expected/txid_1.out M src/test/regress/sql/insert.sql M src/test/regress/sql/txid.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/insert.out | 22 +++--- src/test/regress/expected/insert_1.out | 82 --------------------- src/test/regress/expected/txid.out | 2 +- src/test/regress/expected/txid_1.out | 124 -------------------------------- src/test/regress/sql/insert.sql | 4 +- src/test/regress/sql/txid.sql | 2 +- 6 files changed, 15 insertions(+), 221 deletions(-) delete mode 100644 src/test/regress/expected/insert_1.out delete mode 100644 src/test/regress/expected/txid_1.out hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-19 23:57:14
|
Project "Postgres-XC". The branch, master has been updated via df11641ab0290817bb3aedac944e6ef1bdcb2bec (commit) from 1409dad556aa8c7dda5a390e5016bb4388a3120c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=df11641ab0290817bb3aedac944e6ef1bdcb2bec commit df11641ab0290817bb3aedac944e6ef1bdcb2bec Author: Michael P <mi...@ot...> Date: Fri Jan 20 08:58:34 2012 +0900 Correct node selection for preferred node Even if a preferred node was defined, the node selection was enforced on the first node of relation locator info. M src/backend/pgxc/locator/locator.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/locator/locator.c | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-19 23:57:07
|
Project "Postgres-XC". The branch, REL0_9_7_STABLE has been updated via c550bd514c0c15276caf37bf2ee503b5703e3a3e (commit) from 1e9b50692968d429fac286ac265377e7b941a5b5 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c550bd514c0c15276caf37bf2ee503b5703e3a3e commit df11641ab0290817bb3aedac944e6ef1bdcb2bec Author: Michael P <mi...@ot...> Date: Fri Jan 20 08:58:34 2012 +0900 Correct node selection for preferred node Even if a preferred node was defined, the node selection was enforced on the first node of relation locator info. M src/backend/pgxc/locator/locator.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/locator/locator.c | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-01-18 06:14:32
|
Project "Postgres-XC". The branch, master has been updated via 1409dad556aa8c7dda5a390e5016bb4388a3120c (commit) from 780652463a5fffbddf7423ff5df6b79fc268a82e (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=1409dad556aa8c7dda5a390e5016bb4388a3120c commit 1409dad556aa8c7dda5a390e5016bb4388a3120c Author: Ashutosh Bapat <ash...@en...> Date: Wed Jan 18 11:31:32 2012 +0530 Rows with NULL value for distribution columns get inserted on all the datanodes. Fixed the bug by handling the same in GetRelationNodes(). M src/backend/access/hash/hashfunc.c M src/backend/commands/copy.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/locator/locator.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/include/access/hash.h M src/include/pgxc/locator.h M src/test/regress/output/constraints_1.source ----------------------------------------------------------------------- Summary of changes: src/backend/access/hash/hashfunc.c | 15 +----------- src/backend/commands/copy.c | 20 ++++++++++++++-- src/backend/optimizer/plan/createplan.c | 30 ++++++++++++++++++------- src/backend/pgxc/locator/locator.c | 14 +++++++----- src/backend/pgxc/plan/planner.c | 18 ++++++++++++--- src/backend/pgxc/pool/execRemote.c | 28 +++++++++++------------- src/include/access/hash.h | 2 +- src/include/pgxc/locator.h | 4 ++- src/test/regress/output/constraints_1.source | 6 +--- 9 files changed, 81 insertions(+), 56 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-16 02:45:28
|
Project "Postgres-XC documentation". The annotated tag, XC0_9_7_PG9_1 has been created at 225801a3727d77676abcc6cfad6293775dadcf5f (tag) tagging 82f666aaf926978733be9043dec8adb2d53902d9 (commit) replaces XC0_9_6_PG9_1 tagged by Michael P on Mon Jan 16 11:48:15 2012 +0900 - Log ----------------------------------------------------------------- Postgres-XC documentation version 0.9.7 tag Michael P (3): Update install manual, DBT-1 manual and diagrams for 0.9.7 Update pgbench tutorial for 0.9.7 Correct some typo mistakes in install manual ----------------------------------------------------------------------- hooks/post-receive -- Postgres-XC documentation |
From: Michael P. <mic...@us...> - 2012-01-16 02:44:53
|
Project "Postgres-XC documentation". The branch, REL0_9_7_STABLE has been created at 82f666aaf926978733be9043dec8adb2d53902d9 (commit) - Log ----------------------------------------------------------------- ----------------------------------------------------------------------- hooks/post-receive -- Postgres-XC documentation |
From: Michael P. <mic...@us...> - 2012-01-16 02:38:01
|
Project "Postgres-XC documentation". The branch, master has been updated via 82f666aaf926978733be9043dec8adb2d53902d9 (commit) from 9a02a0411dca3ab14c9cce6c54480f973eba9f7f (commit) - Log ----------------------------------------------------------------- commit 82f666aaf926978733be9043dec8adb2d53902d9 Author: Michael P <mic...@us...> Date: Mon Jan 16 11:41:37 2012 +0900 Correct some typo mistakes in install manual diff --git a/PG-XC_InstallManual.odt b/PG-XC_InstallManual.odt index f6a0f53..f9d9413 100644 Binary files a/PG-XC_InstallManual.odt and b/PG-XC_InstallManual.odt differ diff --git a/PG-XC_ReferenceManual.odt b/PG-XC_ReferenceManual.odt deleted file mode 100644 index 76d78bc..0000000 Binary files a/PG-XC_ReferenceManual.odt and /dev/null differ diff --git a/PG-XC_SQL_Limitations.odt b/PG-XC_SQL_Limitations.odt index 395864d..3a0e7a5 100644 Binary files a/PG-XC_SQL_Limitations.odt and b/PG-XC_SQL_Limitations.odt differ ----------------------------------------------------------------------- Summary of changes: PG-XC_InstallManual.odt | Bin 187977 -> 188058 bytes PG-XC_ReferenceManual.odt | Bin 39579 -> 0 bytes PG-XC_SQL_Limitations.odt | Bin 28089 -> 28052 bytes 3 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 PG-XC_ReferenceManual.odt hooks/post-receive -- Postgres-XC documentation |
From: Michael P. <mic...@us...> - 2012-01-16 02:23:38
|
Project "website". The branch, master has been updated via 14346e456f41a3fbedd6a0b150a5e31e2cb185a5 (commit) from e00d20beef0de6852ce92b298e7c7525a08bbf95 (commit) - Log ----------------------------------------------------------------- commit 14346e456f41a3fbedd6a0b150a5e31e2cb185a5 Author: Michael P <mic...@us...> Date: Mon Jan 16 11:27:23 2012 +0900 Fix link to documentation sub-folder diff --git a/menu.html b/menu.html index c52c605..c0fa3b6 100755 --- a/menu.html +++ b/menu.html @@ -23,7 +23,7 @@ <a href="download.html" target="main">Download</a>   <!-- Documentation --> -<a href="http://postgres-xc.git.sourceforge.net/docs/" target="main">Documentation</a> +<a target="_blank" href="http://postgres-xc.sourceforge.net/docs/" target="main">Documentation</a>   <!-- Wiki --> <a href="http://sourceforge.net/apps/mediawiki/postgres-xc/index.php?title=Main_Page" target="_blank">Project Wiki</a> ----------------------------------------------------------------------- Summary of changes: menu.html | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- website |
From: Michael P. <mic...@us...> - 2012-01-16 02:15:31
|
Project "website". The branch, master has been updated via e00d20beef0de6852ce92b298e7c7525a08bbf95 (commit) from 0ad12510f56b14ad7cbe4302a0ac04a0c135ad3d (commit) - Log ----------------------------------------------------------------- commit e00d20beef0de6852ce92b298e7c7525a08bbf95 Author: Michael P <mic...@us...> Date: Mon Jan 16 11:19:18 2012 +0900 Clean up some download materials already available on SourceForge diff --git a/download.html b/download.html index 3d51c53..100e00a 100755 --- a/download.html +++ b/download.html @@ -135,13 +135,6 @@ SQL restrictions available for Postgres-XC 0.9.7.   </h4> -<!-- PGCon2010 Presentation Materials --> -<h4> -<a href="materials/Postgres-XC_20100521.pdf"> -Presentation material for PGCon2010. -</a> - -<!-- previous versions --> <h4> <a href="prev_vers/version0_9.html" target="main">Previous Versions</a>   diff --git a/materials/Postgres-XC_20100521.pdf b/materials/Postgres-XC_20100521.pdf deleted file mode 100644 index 6915b3f..0000000 Binary files a/materials/Postgres-XC_20100521.pdf and /dev/null differ ----------------------------------------------------------------------- Summary of changes: download.html | 7 ------- materials/Postgres-XC_20100521.pdf | Bin 1087782 -> 0 bytes 2 files changed, 0 insertions(+), 7 deletions(-) delete mode 100644 materials/Postgres-XC_20100521.pdf hooks/post-receive -- website |
From: Michael P. <mic...@us...> - 2012-01-16 02:07:49
|
Project "website". The branch, master has been updated via 0ad12510f56b14ad7cbe4302a0ac04a0c135ad3d (commit) from 7281bbb5e84266c84ea0e5732b0b2ff9d7e87367 (commit) - Log ----------------------------------------------------------------- commit 0ad12510f56b14ad7cbe4302a0ac04a0c135ad3d Author: Michael P <mic...@us...> Date: Mon Jan 16 11:11:11 2012 +0900 Addition of documentation repository diff --git a/docs/0_9_7/README_PGXC b/docs/0_9_7/README_PGXC new file mode 100644 index 0000000..a236053 --- /dev/null +++ b/docs/0_9_7/README_PGXC @@ -0,0 +1,4 @@ +README, whereabouts of this repository + +Copy here all the html documentation data generated by REL0_9_7_STABLE +branch in Postgres-XC GIT repository. \ No newline at end of file diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..89601ad --- /dev/null +++ b/docs/index.html @@ -0,0 +1,15 @@ +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<title>Postgres-XC documentation</title> +<meta name="description" content="Postgres-XC documentation, based on PostgreSQL"> +<meta name="keywords" content="pgxc,postgres-xc,documentation,cluster,database,extension,multi-master"> +</head> +<body> +<h1><a href="http://postgres-xc.sourceforge.net/docs/">Postgres-XC documentation</a></h1> +<p>Postgres-XC is a database cluster software based on <a href="http://www.postgresql.org/">PostgreSQL</a>. The following documentation, based on the official <a href="http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=summary">GIT repository</a>, is available on this site:</p> + +<ul> +<li><a href="http://postgres-xc.sourceforge.net/docs/0_9_7/">Release 0.9.7</a></li> +</lu> +</body> diff --git a/menu.html b/menu.html index 209f36c..c52c605 100755 --- a/menu.html +++ b/menu.html @@ -22,6 +22,9 @@ <!-- Download --> <a href="download.html" target="main">Download</a>   +<!-- Documentation --> +<a href="http://postgres-xc.git.sourceforge.net/docs/" target="main">Documentation</a> +  <!-- Wiki --> <a href="http://sourceforge.net/apps/mediawiki/postgres-xc/index.php?title=Main_Page" target="_blank">Project Wiki</a>   ----------------------------------------------------------------------- Summary of changes: docs/0_9_7/README_PGXC | 4 ++++ docs/index.html | 15 +++++++++++++++ menu.html | 3 +++ 3 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 docs/0_9_7/README_PGXC create mode 100644 docs/index.html hooks/post-receive -- website |
From: Amit K. <ami...@us...> - 2012-01-13 10:14:42
|
Project "Postgres-XC". The branch, master has been updated via 780652463a5fffbddf7423ff5df6b79fc268a82e (commit) from 8ef0c48acadec3c9888d302888a7d279d82323e5 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=780652463a5fffbddf7423ff5df6b79fc268a82e commit 780652463a5fffbddf7423ff5df6b79fc268a82e Author: Amit Khandekar <ami...@en...> Date: Fri Jan 13 15:35:36 2012 +0530 First fix out of the work of fixing the functional behaviour of some system administration functions. The basic goal behind these changes is to make them return correct results by making them cluster-aware. This first part includes object size functions. The object size functions pg_database_size, pg_indexes_size, pg_relation_size, pg_table_size, and pg_total_relation_size now return the cumulative size from all the data nodes. For e.g., pg_relation_size returns the sum of disk space used up by the specified fork at all the data nodes where the table is distributed or replicated. If the table is replicated on 3 tables, the size will be 3 times that of individual nodes. If you need to retrieve the local results from a particular coordinator or data node, you should issue these function calls explicitly through EXECUTE DIRECT statement. Doc changes also included. M doc-xc/src/sgml/func.sgmlin M src/backend/pgxc/pool/pgxcnode.c M src/backend/utils/adt/dbsize.c ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/func.sgmlin | 39 ++------ src/backend/pgxc/pool/pgxcnode.c | 1 - src/backend/utils/adt/dbsize.c | 193 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 204 insertions(+), 29 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-13 07:09:35
|
Project "Postgres-XC". The branch, master has been updated via 8ef0c48acadec3c9888d302888a7d279d82323e5 (commit) from 339172abb3f68cc27fef583cd44c6d87a4747765 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8ef0c48acadec3c9888d302888a7d279d82323e5 commit 8ef0c48acadec3c9888d302888a7d279d82323e5 Author: Michael P <mi...@ot...> Date: Fri Jan 13 16:05:00 2012 +0900 Improve target list selection for remote DML queries This commit makes remote DML planning generally available for replicated and hash tables. There are still issues related to node selection for round robin tables though. The target list of UPDATE and DELETE using coordinator quals was set to fetch only CTID when generating SELECT in their inner plan generated by create_remotequery_plan. Their target list is rewritten to include the columns in quals so as to be able to evaluate those quals correctly on Coordinator. In addition remote planning for UPDATE has been improved to be able to target correct node when launching query. A new regression test called xc_remote is added, it uses the parameter enable_fast_query_shipping to force all the queries to go through standard planner. Tests are done on replicated, hash and round robin tables. M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/locator/locator.c M src/backend/rewrite/rewriteHandler.c A src/test/regress/expected/xc_remote.out M src/test/regress/parallel_schedule M src/test/regress/serial_schedule A src/test/regress/sql/xc_remote.sql ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 315 ++++++++++++++++--------------- src/backend/pgxc/locator/locator.c | 4 +- src/backend/rewrite/rewriteHandler.c | 39 ++++ src/test/regress/expected/xc_remote.out | 312 ++++++++++++++++++++++++++++++ src/test/regress/parallel_schedule | 2 +- src/test/regress/serial_schedule | 1 + src/test/regress/sql/xc_remote.sql | 153 +++++++++++++++ 7 files changed, 669 insertions(+), 157 deletions(-) create mode 100644 src/test/regress/expected/xc_remote.out create mode 100644 src/test/regress/sql/xc_remote.sql hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-01-12 10:27:22
|
Project "Postgres-XC". The branch, master has been updated via 339172abb3f68cc27fef583cd44c6d87a4747765 (commit) from ea165bd95d7a0d039f9cb7b36f903ecf8b5758d6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=339172abb3f68cc27fef583cd44c6d87a4747765 commit 339172abb3f68cc27fef583cd44c6d87a4747765 Author: Ashutosh Bapat <ash...@en...> Date: Thu Jan 12 15:51:34 2012 +0530 When the whole row of a table is expected as a single column, while fetching the results from a datanode using a SQL query, we should use tablename instead of *. Otherwise, the results is sent as a set of columns rather than a record. In create_remotequery_plan(), instead of hand-crafting the SQL query to be shipped to the datanode, create a Query structure and deparse it. M src/backend/optimizer/plan/createplan.c M src/test/regress/expected/xc_groupby.out M src/test/regress/expected/xc_having.out ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 172 ++------- src/test/regress/expected/xc_groupby.out | 588 +++++++++++++++--------------- src/test/regress/expected/xc_having.out | 120 +++--- 3 files changed, 393 insertions(+), 487 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-12 05:31:57
|
Project "website". The branch, master has been updated via 7281bbb5e84266c84ea0e5732b0b2ff9d7e87367 (commit) from 0df4836ad19b121877df3faf6e3b848c38a55bd7 (commit) - Log ----------------------------------------------------------------- commit 7281bbb5e84266c84ea0e5732b0b2ff9d7e87367 Author: Michael P <mic...@us...> Date: Thu Jan 12 14:35:46 2012 +0900 Update site for release 0.9.7 diff --git a/download.html b/download.html index 700130e..3d51c53 100755 --- a/download.html +++ b/download.html @@ -36,20 +36,20 @@ the project download page. Please also note tarball files do not include Postgres-XC documents. </p> -<!-- Documents of version 0.9.6 --> +<!-- Documents of version 0.9.7 --> <h4> -Version 0.9.6 +Version 0.9.7 </h4> <p> <ul> -<!-- tarball of 0.9.6, main download--> +<!-- tarball of 0.9.7, main download--> <li> -<code>pgxc_v0.9.6.tar.gz</code>: <br> +<code>pgxc_v0.9.7.tar.gz</code>: <br> Latest version of Postgres-XC available.<br> Please note that Postgres-XC documentation is not included in this file. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/pgxc_v0.9.6.tar.gz/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/pgxc_v0.9.7.tar.gz/download" target="_blank"> (download) </a> </li> @@ -59,7 +59,7 @@ Please note that Postgres-XC documentation is not included in this file. <code>COPYING</code>: <br> License description. Postgres-XC is distributed under the PostgreSQL license. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/COPYING/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/COPYING/download" target="_blank"> (download) </a> </li> @@ -67,61 +67,61 @@ License description. Postgres-XC is distributed under the PostgreSQL license. <!-- Files --> <li> <code>FILES</code>: <br> -Description of files included in Postgres-XC 0.9.6 release. +Description of files included in Postgres-XC 0.9.7 release. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/FILES/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/FILES/download" target="_blank"> (download) </a> </li> <!-- Reference Manual --> <li> -<code>PG-XC_ReferenceManual_v0_9_6.pdf</code>: <br> -Reference of Postgres-XC extension. +<code>PG-XC_ReferenceManual_v0_9_7.pdf</code>: <br> +References of Postgres-XC. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_ReferenceManual_v0_9_6.pdf/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/PG-XC_ReferenceManual_v0_9_7.pdf/download" target="_blank"> (download) </a> </li> <!-- pgbench Tutorial Manual --> <li> -<code>PG-XC_pgbench_Tutorial_v0_9_6.pdf</code>: <br> +<code>PG-XC_pgbench_Tutorial_v0_9_7.pdf</code>: <br> Step by step description how to build and configure pgbench to run with Postgres-XC. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_pgbench_Tutorial_v0_9_6.pdf/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/PG-XC_pgbench_Tutorial_v0_9_7.pdf/download" target="_blank"> (download) </a> </li> <!-- DBT-1 Tutorial Manual --> <li> -<code>PG-XC_DBT1_Tutorial_v0_9_6.pdf</code>: <br> +<code>PG-XC_DBT1_Tutorial_v0_9_7.pdf</code>: <br> Step by step description how to build and configure DBT-1 to run with Postgres-XC. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_DBT1_Tutorial_v0_9_6.pdf/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/PG-XC_DBT1_Tutorial_v0_9_7.pdf/download" target="_blank"> (download) </a> </li> <!-- Install Manual --> <li> -<code>PG-XC_InstallManual_v0_9_6.pdf</code>: <br> +<code>PG-XC_InstallManual_v0_9_7.pdf</code>: <br> Step by step description how to build, install and configure Postgres-XC. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_InstallManual_v0_9_6.pdf/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/PG-XC_InstallManual_v0_9_7.pdf/download" target="_blank"> (download) </a> </li> <!-- SQL limitation manual --> <li> -<code>PG-XC_SQL_Limitations_v0_9_6.pdf</code>: <br> -SQL restrictions available for Postgres-XC 0.9.6. +<code>PG-XC_SQL_Limitations_v0_9_7.pdf</code>: <br> +SQL restrictions available for Postgres-XC 0.9.7. ⇒ -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_SQL_Limitations_v0_9_6.pdf/download" target="_blank"> +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/PG-XC_SQL_Limitations_v0_9_7.pdf/download" target="_blank"> (download) </a> </li> diff --git a/events.html b/events.html index c3f1fcc..ddc1da3 100755 --- a/events.html +++ b/events.html @@ -15,7 +15,7 @@ <p class="plain"> A lot of opportunities to meet the Core developers!! <ul> -<li>Presentation at PGBR2011 (Postgres Brazil), Sao Paulo on Nov 2011</li> +<li>Presentation at PG Session 3 (Paris, France), in February 2012</li> </ul> </p> @@ -33,10 +33,10 @@ Description of this event. UPDATES --> <h2 class="plain">Updates</h2> -<!-- Postgres-XC 0.9.6 download --> +<!-- Postgres-XC 0.9.7 download --> <p class="plain"> -Postgres-XC 0.9.6 is now available!! Download -<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/pgxc_v0.9.6.tar.gz/download" target="_blank"> +Postgres-XC 0.9.7 is now available!! Download +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/pgxc_v0.9.7.tar.gz/download" target="_blank"> here. </a> </p> diff --git a/license.html b/license.html index 639560c..f7b9acf 100755 --- a/license.html +++ b/license.html @@ -23,7 +23,7 @@ License Postgres-XC Cluster Database Management System </p> <p> -Portions Copyright (c) 2010-2011, Nippon Telegraph and Telephone Corporation<br /> +Portions Copyright (c) 2010-2012, Nippon Telegraph and Telephone Corporation<br /> Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group </p> <p> diff --git a/prev_vers/version0_9.html b/prev_vers/version0_9.html index bb8e7d5..cf666d1 100644 --- a/prev_vers/version0_9.html +++ b/prev_vers/version0_9.html @@ -673,5 +673,98 @@ SQL restrictions available for Postgres-XC 0.9.5. </ul> </p> +<!-- Documents of version 0.9.6 --> +<h4> +Version 0.9.6 +</h4> + +<p> +<ul> +<!-- tarball of 0.9.6, main download--> +<li> +<code>pgxc_v0.9.6.tar.gz</code>: <br> +Latest version of Postgres-XC available.<br> +Please note that Postgres-XC documentation is not included in this file. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/pgxc_v0.9.6.tar.gz/download" target="_blank"> +(download) +</a> +</li> + +<!-- License --> +<li> +<code>COPYING</code>: <br> +License description. Postgres-XC is distributed under the PostgreSQL license. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/COPYING/download" target="_blank"> +(download) +</a> +</li> + +<!-- Files --> +<li> +<code>FILES</code>: <br> +Description of files included in Postgres-XC 0.9.6 release. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/FILES/download" target="_blank"> +(download) +</a> +</li> + +<!-- Reference Manual --> +<li> +<code>PG-XC_ReferenceManual_v0_9_6.pdf</code>: <br> +Reference of Postgres-XC extension. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_ReferenceManual_v0_9_6.pdf/download" target="_blank"> +(download) +</a> +</li> + +<!-- pgbench Tutorial Manual --> +<li> +<code>PG-XC_pgbench_Tutorial_v0_9_6.pdf</code>: <br> +Step by step description how to build and configure pgbench to run with +Postgres-XC. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_pgbench_Tutorial_v0_9_6.pdf/download" target="_blank"> +(download) +</a> +</li> + +<!-- DBT-1 Tutorial Manual --> +<li> +<code>PG-XC_DBT1_Tutorial_v0_9_6.pdf</code>: <br> +Step by step description how to build and configure DBT-1 to run with +Postgres-XC. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_DBT1_Tutorial_v0_9_6.pdf/download" target="_blank"> +(download) +</a> +</li> + +<!-- Install Manual --> +<li> +<code>PG-XC_InstallManual_v0_9_6.pdf</code>: <br> +Step by step description how to build, install and configure Postgres-XC. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_InstallManual_v0_9_6.pdf/download" target="_blank"> +(download) +</a> +</li> + +<!-- SQL limitation manual --> +<li> +<code>PG-XC_SQL_Limitations_v0_9_6.pdf</code>: <br> +SQL restrictions available for Postgres-XC 0.9.6. +⇒ +<a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_SQL_Limitations_v0_9_6.pdf/download" target="_blank"> +(download) +</a> +</li> + +</ul> +</p> + </body> </html> diff --git a/roadmap.html b/roadmap.html index cb4e8ac..8090193 100755 --- a/roadmap.html +++ b/roadmap.html @@ -33,29 +33,25 @@ similar to PostgreSQL, except for savepoints. </p> <p> On the other hand, Postgres-XC needs to enhance support for general statements.<br /> -As of Version 0.9.5, Postgres-XC supports statements which can be executed +As of Version 0.9.7, Postgres-XC supports statements which can be executed on a single data node, or on multiple nodes for single and multi step.<br /> This new version adds support for:</p> <ul> -<li>New code base is PostgreSQL 9.1 stable code (Synchronous replication, etc).</li> -<li>HAVING is now supported</li> -<li>GROUP BY push down is optimized</li> -<li>Temporary objects are supported (sequence, view, table, etc.)</li> -<li>Regressions are stabilized for all the possible cluster configurations</li> -<li>PREPARE, EXECUTE are re-enabled and fully supported</li> -<li>make check support has been added</li> -<li>Stabilization of XC with 32b and 64b machines</li> -<li>Support for parametrized queries</li> +<li>Node subsets and sub clusters (table data distributed in a portion of nodes)</li> +<li>Cluster node management with SQL and catalog extensions</li> +<li>Dynamic reload of pool connection information</li> +<li>Window functions</li> +<li>SELECT INTO/CREATE TABLE AS</li> +<li>INSERT SELECT complete support</li> +<li>DML remote planning (partial expression push-down)</li> +<li>DEFAULT values (non-shippable expressions: volatile functions, etc.)</li> +<li>GTM Standby synchronous, asynchronous recovery</li> </ul> -<p>However there are some limitations please refer to <a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.6/PG-XC_SQL_Limitations_v0_9_6.pdf/download" target="_blank"> +<p>However there are some limitations please refer to <a href="https://sourceforge.net/projects/postgres-xc/files/Version_0.9.7/PG-XC_SQL_Limitations_v0_9_7.pdf/download" target="_blank"> SQL Limitations </a> document for further details. </p> -<p> -There is no support yet for -<code>SELECT</code> in <code>FROM</code> clause. -</p> -<p>In the next months, we will expand HA features with GTM standby improvement and synchronous streaming replication. Another focus is the support of CTAS (CREATE TABLE AS), stable/volatile function pushdown, subqueries, SELECT INTO, etc.</p> +<p>In the next months, we will expand on overall stabilization of Postgres-XC, mainly bug fix and regression diff fix. TABLESPACE, TRIGGER and cluster bootstrap will be additional release guidelines.</p> <!-- ==== Planned feature === --> <h3> Upcoming Releases and Features @@ -85,43 +81,37 @@ Forward Cursor (w/o <code>ORDER BY</code>)<br> subqueries<br> </p> --> -<!-- ==== For Version 1.0 ==== --> <h4> -Version 0.9.7 (December 2011, January 2012) +Next release V??? (April 2012) </h4> <p class="inner"> <ul> -<li>Node subsets and sub clusters (table data distributed in a portion of nodes)</li> -<li>Cluster node management with SQL and catalog extensions</li> -<li>Window functions</li> -<li>SELECT INTO/CREATE TABLE AS</li> <li>SERIAL</li> -<li>BARRIER timeout</li> +<li>TABLESPACE</li> +<li>TRIGGER</li> +<li>Regression stabilization</li> +<li>Relation-size functions</li> +<li>Fast query shipping</li> +<li>Cluster bootstrap</li> </ul> </p> <!-- === Beyond Version 1.0 === ---> <h4> -After Version 0.9.7, on the way to Version 1.0 +Beyond 1.0 </h4> <p class="inner"> <ul> -<li>PITR cluster-wide recovery</li> -<li>Standby node method based on PostgreSQL's HOT Standby</li> -<li>Trigger</li> -<li>Tablespace</li> <li>SSL connection protocol for pooler (secure your cluster!)</li> <li>HOT standby full support</li> <li>Cross-node operation optimization</li> -<li>GTM-Standby</li> <li>Savepoint</li> -<li>Backward cursor</li> <li>Batch, statement pushdown</li> <li>Global constraints</li> <li>Tuple relocation (distribute key update)</li> -<li>Regression tests</li> +<li>Node addition/deletion</li> </ul> </p> ----------------------------------------------------------------------- Summary of changes: download.html | 40 ++++++++++---------- events.html | 8 ++-- license.html | 2 +- prev_vers/version0_9.html | 93 +++++++++++++++++++++++++++++++++++++++++++++ roadmap.html | 52 ++++++++++--------------- 5 files changed, 139 insertions(+), 56 deletions(-) hooks/post-receive -- website |
From: Michael P. <mic...@us...> - 2012-01-12 05:07:44
|
Project "website". The branch, master has been updated via 0df4836ad19b121877df3faf6e3b848c38a55bd7 (commit) from 061a3f00422fdfb209977184f7be479fa0f0d63d (commit) - Log ----------------------------------------------------------------- commit 0df4836ad19b121877df3faf6e3b848c38a55bd7 Author: Michael P <mic...@us...> Date: Thu Jan 12 14:04:52 2012 +0900 Remove dummy file diff --git a/dummy.html b/dummy.html deleted file mode 100755 index 3b1b4e6..0000000 --- a/dummy.html +++ /dev/null @@ -1,13 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C/DTD HTML4.01//EN" - "http://www.w3.org/TR/html4/strict.dtd"> - -<html lang="en"> -<head> -<meta http-equiv="Content-Type" content="text/html"> -<link rel="stylesheet" type="text/css" href="pgcx_1.css"> -<title>Postgres-XC project Page</title> -</head> -<p> -Dummy -</p> -</html> ----------------------------------------------------------------------- Summary of changes: dummy.html | 13 ------------- 1 files changed, 0 insertions(+), 13 deletions(-) delete mode 100755 dummy.html hooks/post-receive -- website |
From: Michael P. <mic...@us...> - 2012-01-12 04:58:53
|
Project "Postgres-XC". The branch, master has been updated via ea165bd95d7a0d039f9cb7b36f903ecf8b5758d6 (commit) from adcdf144576a6e7222c591b89a454611592093c2 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ea165bd95d7a0d039f9cb7b36f903ecf8b5758d6 commit ea165bd95d7a0d039f9cb7b36f903ecf8b5758d6 Author: Michael P <mi...@ot...> Date: Thu Jan 12 14:02:26 2012 +0900 Correct reference to pgxc_node_id in docs M doc-xc/src/sgml/legal.sgmlin M doc-xc/src/sgml/runtime.sgmlin ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/legal.sgmlin | 4 ++-- doc-xc/src/sgml/runtime.sgmlin | 11 ++++------- 2 files changed, 6 insertions(+), 9 deletions(-) hooks/post-receive -- Postgres-XC |