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
|
From: Michael P. <mic...@us...> - 2012-01-10 03:07:39
|
Project "Postgres-XC". The branch, master has been updated via 52d80a9ee69b94e7be5850a449b5ff9c041eea67 (commit) from c461c74182e6ca61f0c13779f1a3b821e111d888 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=52d80a9ee69b94e7be5850a449b5ff9c041eea67 commit 52d80a9ee69b94e7be5850a449b5ff9c041eea67 Author: Michael P <mi...@ot...> Date: Tue Jan 10 12:05:43 2012 +0900 Support for EXPLAIN with remote DML planning When running an explain query with DML that need Coordinator to be generated, additional remote query plans in ModifyTable are printed. Those plans are created by create_remoteinsert_plan, create_remoteupdate_plan and create_remotedelete_plan in createplan.c This commit also includes a fix for remote DML plans related to the scan relation ID used. The relation ID was used but the correct way is to use its Index when referring to the table list in Scan plan. M src/backend/commands/explain.c M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/commands/explain.c | 149 ++++++++++++++++++++----------- src/backend/optimizer/plan/createplan.c | 11 +-- 2 files changed, 98 insertions(+), 62 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-06 03:58:00
|
Project "Postgres-XC". The branch, master has been updated via c461c74182e6ca61f0c13779f1a3b821e111d888 (commit) from b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c461c74182e6ca61f0c13779f1a3b821e111d888 commit c461c74182e6ca61f0c13779f1a3b821e111d888 Author: Michael P <mi...@ot...> Date: Fri Jan 6 13:00:37 2012 +0900 Support for remote DELETE planning and remove restrictions for UPDATE This adds general support for DELETE query planning in standard planner in case Postgres-XC planner falls back to standard planner. Now all the DML plans follow the same logic by adding remoteQuery nodes to plan steps of ModifyTable plans. UPDATE has its restrictions removed by adding the CTID value for tuple selection on remote nodes as a parameter in WHERE clause and in parameter list associated with extended protocol of remote query. M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 20 ++- src/backend/optimizer/plan/createplan.c | 333 ++++++++++-------------------- 2 files changed, 130 insertions(+), 223 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-06 00:22:32
|
Project "Postgres-XC". The branch, master has been updated via b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 (commit) from 4934c89f160e3c174cec0c3eaef279f458811bb3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 commit b7e0324dba613acb9c72391a511b5cd0bcc0e6f5 Author: Michael P <mi...@ot...> Date: Fri Jan 6 09:19:40 2012 +0900 Support for remote UPDATE planning in standard planning This commit focuses on support of UPDATE queries using non-pushable expressions in SET and WHERE clauses. The UPDATE query is generated based on the output of the SELECT query generated by create_remotequery_plan to select the correct tuples to update remotelly with a top plan that was not generated before. Current implementation has a restriction though: on replicated tables all the columns cannot be updated at once if the query is not entirely pushable. Postgres-XC planner is in charge of analyzing that. For distributed tables, the distribution column cannot be updated so this restriction is not directly applied but this should be taken into account once a tuple relocation mechanism is added. M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/include/pgxc/execRemote.h M src/test/regress/sql/portals.sql ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 19 +++- src/backend/optimizer/plan/createplan.c | 222 ++++++++++++++++++++++++++++++- src/backend/pgxc/plan/planner.c | 5 + src/backend/pgxc/pool/execRemote.c | 18 ++- src/include/pgxc/execRemote.h | 2 +- src/test/regress/sql/portals.sql | 13 +- 6 files changed, 260 insertions(+), 19 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@en...> - 2012-01-05 04:20:09
|
Did he send the patch to all? I don't remember seeing the patch. Last, I remember is Abbas's mail saying there is not patch. On Thu, Jan 5, 2012 at 6:55 AM, Michael Paquier < mic...@us...> wrote: > Project "Postgres-XC". > > The branch, master has been updated > via 6b458351cc1912961949349fd1d78e13bddebe9c (commit) > from a823e2d682fa18866d4cb99d90bd32ab10a5066d (commit) > > > - Log ----------------------------------------------------------------- > > http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6b458351cc1912961949349fd1d78e13bddebe9c > > commit 6b458351cc1912961949349fd1d78e13bddebe9c > Author: Michael P <mic...@us...> > Date: Thu Jan 5 10:24:37 2012 +0900 > > Correct float8 collection > > Bug reported by sch19831106 and patch by the same person > > M src/backend/utils/adt/float.c > > ----------------------------------------------------------------------- > > Summary of changes: > src/backend/utils/adt/float.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > > hooks/post-receive > -- > Postgres-XC > > > ------------------------------------------------------------------------------ > Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex > infrastructure or vast IT resources to deliver seamless, secure access to > virtual desktops. With this all-in-one solution, easily deploy virtual > desktops for less than the cost of PCs and save 60% on VDI infrastructure > costs. Try it free! http://p.sf.net/sfu/Citrix-VDIinabox > _______________________________________________ > Postgres-xc-committers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-committers > -- Best Wishes, Ashutosh Bapat EntepriseDB Corporation The Enterprise Postgres Company |
From: Michael P. <mic...@us...> - 2012-01-05 01:31:18
|
Project "Postgres-XC". The branch, master has been updated via 96fa07124d40d112563b635e5ce231dedc209d46 (commit) from 6b458351cc1912961949349fd1d78e13bddebe9c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=96fa07124d40d112563b635e5ce231dedc209d46 commit 96fa07124d40d112563b635e5ce231dedc209d46 Author: Michael P <mic...@us...> Date: Thu Jan 5 10:34:23 2012 +0900 Fix for regression test privileges Large objects are not supported by Postgres-XC. M src/test/regress/expected/privileges_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/privileges_1.out | 165 ++++++++++++---------------- 1 files changed, 68 insertions(+), 97 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-01-05 01:25:33
|
Project "Postgres-XC". The branch, master has been updated via 6b458351cc1912961949349fd1d78e13bddebe9c (commit) from a823e2d682fa18866d4cb99d90bd32ab10a5066d (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6b458351cc1912961949349fd1d78e13bddebe9c commit 6b458351cc1912961949349fd1d78e13bddebe9c Author: Michael P <mic...@us...> Date: Thu Jan 5 10:24:37 2012 +0900 Correct float8 collection Bug reported by sch19831106 and patch by the same person M src/backend/utils/adt/float.c ----------------------------------------------------------------------- Summary of changes: src/backend/utils/adt/float.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-01-04 23:29:47
|
Project "Postgres-XC". The branch, master has been updated via a823e2d682fa18866d4cb99d90bd32ab10a5066d (commit) from da2fe0454e8344d1cb5b4239c4e87b26364d5e60 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a823e2d682fa18866d4cb99d90bd32ab10a5066d commit a823e2d682fa18866d4cb99d90bd32ab10a5066d Author: Abbas <abb...@en...> Date: Thu Jan 5 02:36:55 2012 +0500 Comment out a test case in rowtypes.sql that causes an assertion failure M src/test/regress/expected/rowtypes_1.out M src/test/regress/sql/rowtypes.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/rowtypes_1.out | 6 +++--- src/test/regress/sql/rowtypes.sql | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@en...> - 2012-01-02 04:47:31
|
Hi Amit, I see that this commit has been pushed into stable 0.9.6. I didn't intend it to be in 0.9.6 stable code. I don't know effect of disabling fast query shipping in 0.9.6, some of the queries may not work. But users are not expected to know this GUC and hence disable it, so I think we are safe. On Fri, Dec 23, 2011 at 6:58 PM, Amit Khandekar < ami...@us...> wrote: > Project "Postgres-XC". > > The branch, REL0_9_6_STABLE has been updated > via 9998d8750f8ae5e81f0a0e0d44714a3e0b62189e (commit) > from 9482b96faed66cca267285f0ac1f19d54a8a55b0 (commit) > > > - Log ----------------------------------------------------------------- > > http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9998d8750f8ae5e81f0a0e0d44714a3e0b62189e > > commit 1b244c116e9cb93253c37236cf722072a719b0e4 > Author: Ashutosh Bapat <ash...@en...> > Date: Thu Dec 22 12:02:05 2011 +0530 > > Add following GUCs related to optimizations during remote query planning > 1. enable_remotegroup - to enable or disable remote grouping > optimization in > create_remotegrouping_plan(). > 2. enable_fast_query_shipping - to enable or disable fast query > shipping. > > These GUCs are to be used only for debugging, and should not be used in > production environment or user deployments. > > M src/backend/optimizer/path/costsize.c > M src/backend/optimizer/plan/createplan.c > M src/backend/pgxc/plan/planner.c > M src/backend/utils/misc/guc.c > M src/include/optimizer/cost.h > M src/include/pgxc/planner.h > > ----------------------------------------------------------------------- > > Summary of changes: > src/backend/Makefile | 4 ++++ > src/gtm/Makefile.global | 3 ++- > 2 files changed, 6 insertions(+), 1 deletions(-) > > > hooks/post-receive > -- > Postgres-XC > > > ------------------------------------------------------------------------------ > Write once. Port to many. > Get the SDK and tools to simplify cross-platform app development. Create > new or port existing apps to sell to consumers worldwide. Explore the > Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join > http://p.sf.net/sfu/intel-appdev > _______________________________________________ > Postgres-xc-committers mailing list > Pos...@li... > https://lists.sourceforge.net/lists/listinfo/postgres-xc-committers > -- Best Wishes, Ashutosh Bapat EntepriseDB Corporation The Enterprise Postgres Company |
From: Abbas B. <ga...@us...> - 2011-12-28 09:05:23
|
Project "Postgres-XC". The branch, master has been updated via da2fe0454e8344d1cb5b4239c4e87b26364d5e60 (commit) from c06dfe06aa8d8d0ac1b6d2a445f0ae93cee9bac3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=da2fe0454e8344d1cb5b4239c4e87b26364d5e60 commit da2fe0454e8344d1cb5b4239c4e87b26364d5e60 Author: Abbas <abb...@en...> Date: Tue Dec 27 21:05:59 2011 +0500 Some changes in test cases and expected output files related to composite types. D src/test/regress/expected/create_type_1.out M src/test/regress/expected/rowtypes_1.out M src/test/regress/expected/typed_table_1.out M src/test/regress/sql/rowtypes.sql M src/test/regress/sql/typed_table.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/create_type_1.out | 122 --------------------------- src/test/regress/expected/rowtypes_1.out | 6 +- src/test/regress/expected/typed_table_1.out | 21 +++-- src/test/regress/sql/rowtypes.sql | 3 +- src/test/regress/sql/typed_table.sql | 13 ++-- 5 files changed, 24 insertions(+), 141 deletions(-) delete mode 100644 src/test/regress/expected/create_type_1.out hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2011-12-26 12:41:34
|
Project "Postgres-XC". The branch, master has been updated via c06dfe06aa8d8d0ac1b6d2a445f0ae93cee9bac3 (commit) from 1b244c116e9cb93253c37236cf722072a719b0e4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c06dfe06aa8d8d0ac1b6d2a445f0ae93cee9bac3 commit c06dfe06aa8d8d0ac1b6d2a445f0ae93cee9bac3 Author: Koichi Suzuki <koi...@gm...> Date: Mon Dec 26 21:41:30 2011 +0900 This commit adds error handling in gtm_proxy so that it now check GTM communication error and handle the error so that: If GTM connectin retry is specified by configuration parameters gtm_connect_retry_idle, gtm_connect_retry_count and gtm_connect_retry_interval, gtm_proxy will retry to establish connection to GTM, while waiting for reconnect request from gtm_ctl. If retry failed, then it will wait for reconnect request from gtm_ctl as specified by err_wait_idle, err_wait_cound and err_wait_interval. GTM error should be detected, gtm-standby should be promoted to ACT and gtm_proxy should should be reconnected to the promoted gtm within these timers. M doc-xc/src/sgml/ref/gtm_proxy.sgmlin M src/gtm/client/fe-misc.c M src/gtm/libpq/pqcomm.c M src/gtm/main/gtm.conf.sample M src/gtm/proxy/gtm_proxy.conf.sample M src/gtm/proxy/gtm_proxy_opt.c M src/gtm/proxy/proxy_main.c M src/include/gtm/gtm_c.h M src/include/gtm/gtm_client.h M src/include/gtm/gtm_opt.h M src/include/gtm/gtm_proxy.h M src/include/gtm/libpq-be.h M src/include/gtm/libpq-fe.h M src/include/gtm/libpq-int.h ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/gtm_proxy.sgmlin | 96 +++++++++++++- src/gtm/client/fe-misc.c | 13 ++ src/gtm/libpq/pqcomm.c | 8 + src/gtm/main/gtm.conf.sample | 2 +- src/gtm/proxy/gtm_proxy.conf.sample | 48 +++++-- src/gtm/proxy/gtm_proxy_opt.c | 135 ++++++++++++++----- src/gtm/proxy/proxy_main.c | 244 ++++++++++++++++++++++++++++------ src/include/gtm/gtm_c.h | 9 ++ src/include/gtm/gtm_client.h | 50 ++++---- src/include/gtm/gtm_opt.h | 5 +- src/include/gtm/gtm_proxy.h | 9 +- src/include/gtm/libpq-be.h | 26 ++-- src/include/gtm/libpq-fe.h | 18 ++-- src/include/gtm/libpq-int.h | 38 +++--- 14 files changed, 535 insertions(+), 166 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2011-12-23 13:28:42
|
Project "Postgres-XC". The branch, REL0_9_6_STABLE has been updated via 9998d8750f8ae5e81f0a0e0d44714a3e0b62189e (commit) from 9482b96faed66cca267285f0ac1f19d54a8a55b0 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9998d8750f8ae5e81f0a0e0d44714a3e0b62189e commit 1b244c116e9cb93253c37236cf722072a719b0e4 Author: Ashutosh Bapat <ash...@en...> Date: Thu Dec 22 12:02:05 2011 +0530 Add following GUCs related to optimizations during remote query planning 1. enable_remotegroup - to enable or disable remote grouping optimization in create_remotegrouping_plan(). 2. enable_fast_query_shipping - to enable or disable fast query shipping. These GUCs are to be used only for debugging, and should not be used in production environment or user deployments. M src/backend/optimizer/path/costsize.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c M src/backend/utils/misc/guc.c M src/include/optimizer/cost.h M src/include/pgxc/planner.h ----------------------------------------------------------------------- Summary of changes: src/backend/Makefile | 4 ++++ src/gtm/Makefile.global | 3 ++- 2 files changed, 6 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2011-12-22 06:39:22
|
Project "Postgres-XC". The branch, master has been updated via 1b244c116e9cb93253c37236cf722072a719b0e4 (commit) from 2140b647f169e236dbe652106245e240ce2aa865 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=1b244c116e9cb93253c37236cf722072a719b0e4 commit 1b244c116e9cb93253c37236cf722072a719b0e4 Author: Ashutosh Bapat <ash...@en...> Date: Thu Dec 22 12:02:05 2011 +0530 Add following GUCs related to optimizations during remote query planning 1. enable_remotegroup - to enable or disable remote grouping optimization in create_remotegrouping_plan(). 2. enable_fast_query_shipping - to enable or disable fast query shipping. These GUCs are to be used only for debugging, and should not be used in production environment or user deployments. M src/backend/optimizer/path/costsize.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c M src/backend/utils/misc/guc.c M src/include/optimizer/cost.h M src/include/pgxc/planner.h ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/path/costsize.c | 1 + src/backend/optimizer/plan/createplan.c | 3 +++ src/backend/pgxc/plan/planner.c | 5 +++++ src/backend/utils/misc/guc.c | 24 +++++++++++++++++++++--- src/include/optimizer/cost.h | 1 + src/include/pgxc/planner.h | 2 ++ 6 files changed, 33 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2011-12-22 05:05:34
|
Project "Postgres-XC". The branch, master has been updated via 2140b647f169e236dbe652106245e240ce2aa865 (commit) from ef0e9f95e51e4828f69da452f0eb97b413bbc2c9 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2140b647f169e236dbe652106245e240ce2aa865 commit 2140b647f169e236dbe652106245e240ce2aa865 Author: Amit Khandekar <ami...@en...> Date: Thu Dec 22 10:17:17 2011 +0530 Fix for Bug id:3425212: Failed to build on Ubuntu 11.10 Ubuntu 11 no longer has the libpthread.so in the usual locations like /lib or /usr/lib. We have hardcoded -lpthread linker option used in gtm module. The fix is to instead use PTHREAD_CFLAGS macro that is defined in src/Makefile.global. This macro has the correct pthread options already. In this particular issue, the -pthread (not -lpthread) option was the one that was needed to resolve the compile errors. The backend postgres executable also needs this option in case of XC, because it uses functions from src/interfaces/libpq/fe-secure.c which in turn uses pthread calls. M src/backend/Makefile M src/gtm/main/Makefile M src/gtm/proxy/Makefile ----------------------------------------------------------------------- Summary of changes: src/backend/Makefile | 4 ++++ src/gtm/main/Makefile | 4 ++++ src/gtm/proxy/Makefile | 4 ++++ 3 files changed, 12 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2011-12-20 14:34:08
|
Project "Postgres-XC". The branch, master has been updated via ef0e9f95e51e4828f69da452f0eb97b413bbc2c9 (commit) via da267bcdda5995604f1a7d5503485bc48333e45d (commit) from 9394b60405c43e7da174bcf6bafb42335e9d2ad3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ef0e9f95e51e4828f69da452f0eb97b413bbc2c9 commit ef0e9f95e51e4828f69da452f0eb97b413bbc2c9 Merge: da267bc 9394b60 Author: Abbas <abb...@en...> Date: Tue Dec 20 19:00:51 2011 +0500 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=da267bcdda5995604f1a7d5503485bc48333e45d commit ef0e9f95e51e4828f69da452f0eb97b413bbc2c9 Merge: da267bc 9394b60 Author: Abbas <abb...@en...> Date: Tue Dec 20 19:00:51 2011 +0500 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/portals_1.out | 304 +++++--- src/test/regress/expected/portals_2.out | 1288 ------------------------------- 2 files changed, 197 insertions(+), 1395 deletions(-) delete mode 100644 src/test/regress/expected/portals_2.out hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-20 08:04:15
|
Project "Postgres-XC". The branch, master has been updated via 9394b60405c43e7da174bcf6bafb42335e9d2ad3 (commit) from 295aa93245d68ff0d7038ec6de931ee777ae03a6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9394b60405c43e7da174bcf6bafb42335e9d2ad3 commit 9394b60405c43e7da174bcf6bafb42335e9d2ad3 Author: Michael P <mic...@us...> Date: Tue Dec 20 17:07:14 2011 +0900 Remove useless file introduced by last commit D doc-xc/src/sgml/ref/#create_user_mapping.sgmlin# ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/#create_user_mapping.sgmlin# | 132 ---------------------- 1 files changed, 0 insertions(+), 132 deletions(-) delete mode 100644 doc-xc/src/sgml/ref/#create_user_mapping.sgmlin# hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-20 08:02:23
|
Project "Postgres-XC". The branch, master has been updated via 295aa93245d68ff0d7038ec6de931ee777ae03a6 (commit) from 25db704c09aedb8cf2015d88739cc213fcec2635 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=295aa93245d68ff0d7038ec6de931ee777ae03a6 commit 295aa93245d68ff0d7038ec6de931ee777ae03a6 Author: Michael P <mic...@us...> Date: Tue Dec 20 16:58:43 2011 +0900 Block the usage of large objects Regressions are modified in consequence. M doc-xc/src/sgml/lobj.sgmlin A doc-xc/src/sgml/ref/#create_user_mapping.sgmlin# M doc-xc/src/sgml/ref/alter_large_object.sgmlin M doc-xc/src/sgml/ref/create_user_mapping.sgmlin M src/backend/libpq/be-fsstubs.c A src/test/regress/output/largeobject_3.source ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/lobj.sgmlin | 10 +- ...mapping.sgmlin => #create_user_mapping.sgmlin#} | 2 +- doc-xc/src/sgml/ref/alter_large_object.sgmlin | 12 ++- doc-xc/src/sgml/ref/create_user_mapping.sgmlin | 2 +- src/backend/libpq/be-fsstubs.c | 105 ++++++++++++++++ .../{largeobject_2.source => largeobject_3.source} | 130 ++++++++------------ 6 files changed, 175 insertions(+), 86 deletions(-) copy doc-xc/src/sgml/ref/{create_user_mapping.sgmlin => #create_user_mapping.sgmlin#} (99%) copy src/test/regress/output/{largeobject_2.source => largeobject_3.source} (81%) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2011-12-20 07:37:42
|
Project "Postgres-XC". The branch, REL0_9_6_STABLE has been updated via 9482b96faed66cca267285f0ac1f19d54a8a55b0 (commit) from cbe89af7f1c010947a24d5d6079f5ebafdc98c61 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9482b96faed66cca267285f0ac1f19d54a8a55b0 commit 25db704c09aedb8cf2015d88739cc213fcec2635 Merge: 6d55afd f47b660 Author: Koichi Suzuki <koi...@gm...> Date: Tue Dec 20 16:32:29 2011 +0900 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc ----------------------------------------------------------------------- Summary of changes: src/gtm/proxy/proxy_main.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2011-12-20 07:32:14
|
Project "Postgres-XC". The branch, master has been updated via 25db704c09aedb8cf2015d88739cc213fcec2635 (commit) via 6d55afd00e3a35ee28ae5a7640bd8afa3c758f3d (commit) from f47b660ce3b37fe71de5ec486e57c578282e3280 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=25db704c09aedb8cf2015d88739cc213fcec2635 commit 25db704c09aedb8cf2015d88739cc213fcec2635 Merge: 6d55afd f47b660 Author: Koichi Suzuki <koi...@gm...> Date: Tue Dec 20 16:32:29 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=6d55afd00e3a35ee28ae5a7640bd8afa3c758f3d commit 25db704c09aedb8cf2015d88739cc213fcec2635 Merge: 6d55afd f47b660 Author: Koichi Suzuki <koi...@gm...> Date: Tue Dec 20 16:32:29 2011 +0900 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc ----------------------------------------------------------------------- Summary of changes: src/gtm/proxy/proxy_main.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-20 06:52:54
|
Project "Postgres-XC". The branch, master has been updated via f47b660ce3b37fe71de5ec486e57c578282e3280 (commit) from f255e931ffb3ece1b06264463401da8e2d8b3b99 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f47b660ce3b37fe71de5ec486e57c578282e3280 commit f47b660ce3b37fe71de5ec486e57c578282e3280 Author: Michael P <mic...@us...> Date: Tue Dec 20 14:53:30 2011 +0900 Support for DEFAULT with non-shippable expressions In case default values are related to non-shippable expressions, their values are now evaluated on Coordinator and then sent down to Datanodes with values already calculated. Regarding sequences, now sequences are created on all the nodes to maintain consistency among default expressions created among the cluster. Their values are exclusively generated at Coordinator level though so value unicity is insured whatever the table type and its node list on which table data is distributed. This is particularly useful for tables using sequence-related functions this way: CREATE TABLE example (col int default nextval('seq')); M src/backend/catalog/heap.c M src/backend/parser/parse_expr.c M src/backend/parser/parse_func.c M src/backend/pgxc/pool/postgresql_fdw.c M src/backend/tcop/utility.c M src/include/parser/parse_expr.h M src/include/parser/parse_func.h M src/test/regress/expected/dependency_1.out M src/test/regress/expected/domain_1.out M src/test/regress/expected/uuid_1.out M src/test/regress/output/constraints_1.source ----------------------------------------------------------------------- Summary of changes: src/backend/catalog/heap.c | 24 +--- src/backend/parser/parse_expr.c | 23 --- src/backend/parser/parse_func.c | 97 ------------ src/backend/pgxc/pool/postgresql_fdw.c | 5 + src/backend/tcop/utility.c | 44 +++--- src/include/parser/parse_expr.h | 4 - src/include/parser/parse_func.h | 3 - src/test/regress/expected/dependency_1.out | 2 - src/test/regress/expected/domain_1.out | 7 +- src/test/regress/expected/uuid_1.out | 153 +++++++++--------- src/test/regress/output/constraints_1.source | 218 +++++++++++--------------- 11 files changed, 192 insertions(+), 388 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-20 02:35:15
|
Project "Postgres-XC". The branch, master has been updated via f255e931ffb3ece1b06264463401da8e2d8b3b99 (commit) from 0269204ed137edcb569a586d6796a2bc576fb011 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f255e931ffb3ece1b06264463401da8e2d8b3b99 commit f255e931ffb3ece1b06264463401da8e2d8b3b99 Author: Michael P <mic...@us...> Date: Tue Dec 20 11:05:23 2011 +0900 Improve expression push-down in INSERT queries In XC planner, if non-shippable expression is found in the target list of INSERT values, redirect query through standard planner. This fix allows to run INSERT queries with non-foreign expression as stable and volatile functions among other things. This commit has consequences on the regression test largeobject but we do not intend to support that for the time being. M src/backend/pgxc/plan/planner.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/plan/planner.c | 52 +++++++++++++++++++++++++++++++------- 1 files changed, 42 insertions(+), 10 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2011-12-19 21:55:36
|
Project "Postgres-XC". The branch, master has been updated via 0269204ed137edcb569a586d6796a2bc576fb011 (commit) via 6e6c62c81747e0c446d391152b137dd67496e9d3 (commit) from aeab6bbfc39ccccf4be2bc29c1485c46a2fb7613 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0269204ed137edcb569a586d6796a2bc576fb011 commit 0269204ed137edcb569a586d6796a2bc576fb011 Author: Abbas <abb...@en...> Date: Mon Dec 19 23:29:30 2011 +0500 This commit adds an alternate expected output for portals test case, fixes a compilation eror and a warning M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/pgxcnode.c A src/test/regress/expected/portals_2.out http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6e6c62c81747e0c446d391152b137dd67496e9d3 commit 0269204ed137edcb569a586d6796a2bc576fb011 Author: Abbas <abb...@en...> Date: Mon Dec 19 23:29:30 2011 +0500 This commit adds an alternate expected output for portals test case, fixes a compilation eror and a warning M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/pgxcnode.c A src/test/regress/expected/portals_2.out ----------------------------------------------------------------------- Summary of changes: src/backend/executor/execCurrent.c | 23 +- src/backend/parser/parse_expr.c | 6 - src/backend/parser/parse_relation.c | 8 +- src/backend/pgxc/plan/planner.c | 790 ++++++++++++-------- src/backend/pgxc/pool/pgxcnode.c | 36 + src/include/catalog/pg_proc.h | 2 + src/include/executor/executor.h | 4 + src/include/parser/parse_relation.h | 4 + src/include/pgxc/pgxcnode.h | 1 + src/include/utils/builtins.h | 3 + .../expected/{portals_1.out => portals_2.out} | 304 +++++--- src/test/regress/sql/portals.sql | 20 +- 12 files changed, 773 insertions(+), 428 deletions(-) copy src/test/regress/expected/{portals_1.out => portals_2.out} (94%) hooks/post-receive -- Postgres-XC |
From: Pavan D. <pa...@us...> - 2011-12-16 04:08:08
|
Project "Postgres-XC". The branch, master has been updated via aeab6bbfc39ccccf4be2bc29c1485c46a2fb7613 (commit) via 6ad7894a594a67783a9b110f249304ffa4ea443c (commit) from d2bc38399e5c76c7bc059af3fa1d17c07d0b21d0 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=aeab6bbfc39ccccf4be2bc29c1485c46a2fb7613 commit aeab6bbfc39ccccf4be2bc29c1485c46a2fb7613 Merge: 6ad7894 d2bc383 Author: Pavan Deolasee <pav...@gm...> Date: Fri Dec 16 09:36:46 2011 +0530 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc into PGXC-master MM src/backend/tcop/utility.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6ad7894a594a67783a9b110f249304ffa4ea443c commit aeab6bbfc39ccccf4be2bc29c1485c46a2fb7613 Merge: 6ad7894 d2bc383 Author: Pavan Deolasee <pav...@gm...> Date: Fri Dec 16 09:36:46 2011 +0530 Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc into PGXC-master MM src/backend/tcop/utility.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 107 +++++++++++++++--------------------- src/backend/tcop/utility.c | 27 --------- src/backend/utils/misc/guc.c | 40 ------------- 3 files changed, 45 insertions(+), 129 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-16 02:28:51
|
Project "Postgres-XC". The branch, master has been updated via d2bc38399e5c76c7bc059af3fa1d17c07d0b21d0 (commit) from 5dd6ebf2e1ae9348e5cfaa5b85eb4fc6603556c6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d2bc38399e5c76c7bc059af3fa1d17c07d0b21d0 commit d2bc38399e5c76c7bc059af3fa1d17c07d0b21d0 Author: Michael P <mic...@us...> Date: Fri Dec 16 11:30:40 2011 +0900 Update documentation about FDW (SERVER/FDW/USER MAPPING) regarding commands blocked M doc-xc/src/sgml/ref/alter_foreign_data_wrapper.sgmlin M doc-xc/src/sgml/ref/alter_server.sgmlin M doc-xc/src/sgml/ref/alter_user_mapping.sgmlin M doc-xc/src/sgml/ref/create_foreign_data_wrapper.sgmlin M doc-xc/src/sgml/ref/create_server.sgmlin M doc-xc/src/sgml/ref/create_user_mapping.sgmlin M doc-xc/src/sgml/ref/drop_foreign_data_wrapper.sgmlin M doc-xc/src/sgml/ref/drop_server.sgmlin M doc-xc/src/sgml/ref/drop_user_mapping.sgmlin ----------------------------------------------------------------------- Summary of changes: .../src/sgml/ref/alter_foreign_data_wrapper.sgmlin | 21 +++++++------------ doc-xc/src/sgml/ref/alter_server.sgmlin | 20 +++++++----------- doc-xc/src/sgml/ref/alter_user_mapping.sgmlin | 20 +++++++----------- .../sgml/ref/create_foreign_data_wrapper.sgmlin | 19 ++++++----------- doc-xc/src/sgml/ref/create_server.sgmlin | 20 +++++++----------- doc-xc/src/sgml/ref/create_user_mapping.sgmlin | 19 ++++++----------- .../src/sgml/ref/drop_foreign_data_wrapper.sgmlin | 20 +++++++----------- doc-xc/src/sgml/ref/drop_server.sgmlin | 20 +++++++----------- doc-xc/src/sgml/ref/drop_user_mapping.sgmlin | 20 +++++++----------- 9 files changed, 70 insertions(+), 109 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-16 01:55:36
|
Project "Postgres-XC". The branch, master has been updated via 5dd6ebf2e1ae9348e5cfaa5b85eb4fc6603556c6 (commit) from 742082938b2e9691fe086fdbc960032e4b2ae802 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5dd6ebf2e1ae9348e5cfaa5b85eb4fc6603556c6 commit 5dd6ebf2e1ae9348e5cfaa5b85eb4fc6603556c6 Author: Michael P <mic...@us...> Date: Fri Dec 16 10:58:17 2011 +0900 Update docs about SELECT INTO It is now supported as CREATE TABLE AS. M doc-xc/src/sgml/ref/select_into.sgmlin ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/select_into.sgmlin | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-16 00:43:19
|
Project "Postgres-XC". The branch, master has been updated via 742082938b2e9691fe086fdbc960032e4b2ae802 (commit) from 5753e6aa180e7bb05afc7bad8f0846044098e2c2 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=742082938b2e9691fe086fdbc960032e4b2ae802 commit 742082938b2e9691fe086fdbc960032e4b2ae802 Author: Michael P <mic...@us...> Date: Fri Dec 16 09:45:24 2011 +0900 Block USER MAPPING, SERVER and FOREIGN DATA WRAPPER Those functionalities need some extensions to work properly in XC. Regressions are updated in consequence. M src/backend/tcop/utility.c A src/test/regress/expected/foreign_data_1.out ----------------------------------------------------------------------- Summary of changes: src/backend/tcop/utility.c | 18 + src/test/regress/expected/foreign_data_1.out | 1019 ++++++++++++++++++++++++++ 2 files changed, 1037 insertions(+), 0 deletions(-) create mode 100644 src/test/regress/expected/foreign_data_1.out hooks/post-receive -- Postgres-XC |