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
(1) |
2
(2) |
3
|
4
|
5
|
6
(1) |
7
(1) |
8
(3) |
9
|
10
|
11
|
12
(2) |
13
(3) |
14
(2) |
15
(7) |
16
(4) |
17
|
18
|
19
(1) |
20
(7) |
21
|
22
(2) |
23
(1) |
24
|
25
|
26
(1) |
27
|
28
(1) |
29
|
30
|
31
|
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 |
From: Michael P. <mic...@us...> - 2011-12-15 05:36:10
|
Project "Postgres-XC". The branch, master has been updated via 5753e6aa180e7bb05afc7bad8f0846044098e2c2 (commit) from 0e93089b78b8c32abd7bfbd2eb30e536bf4987e6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5753e6aa180e7bb05afc7bad8f0846044098e2c2 commit 5753e6aa180e7bb05afc7bad8f0846044098e2c2 Author: Michael P <mic...@us...> Date: Thu Dec 15 14:39:01 2011 +0900 Fix for regression test prepared_xacts PostgreSQL returns the same results in expected results numbered 0 and 1. So this output is correct. M src/test/regress/expected/prepared_xacts_2.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/prepared_xacts_2.out | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-15 05:21:59
|
Project "Postgres-XC". The branch, master has been updated via 0e93089b78b8c32abd7bfbd2eb30e536bf4987e6 (commit) from 593134cb10d2129d5be5887602138892446a49da (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0e93089b78b8c32abd7bfbd2eb30e536bf4987e6 commit 0e93089b78b8c32abd7bfbd2eb30e536bf4987e6 Author: Michael P <mic...@us...> Date: Thu Dec 15 14:24:53 2011 +0900 Fix for regression test rowtypes PostgreSQL gives the same result on the query that was failing. M src/test/regress/expected/rowtypes_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/rowtypes_1.out | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-15 04:49:55
|
Project "Postgres-XC". The branch, master has been updated via 593134cb10d2129d5be5887602138892446a49da (commit) from af3dc64d6197d400269b1f5d392f1d1ba2477da1 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=593134cb10d2129d5be5887602138892446a49da commit 593134cb10d2129d5be5887602138892446a49da Author: Michael P <mic...@us...> Date: Thu Dec 15 13:52:47 2011 +0900 Fix for regression test temp Since complete support of INSERT SELECT, now test is merged with normal postgres. D src/test/regress/expected/temp_1.out M src/test/regress/sql/temp.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/temp_1.out | 197 ---------------------------------- src/test/regress/sql/temp.sql | 6 +- 2 files changed, 3 insertions(+), 200 deletions(-) delete mode 100644 src/test/regress/expected/temp_1.out hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-15 03:22:56
|
Project "Postgres-XC". The branch, master has been updated via af3dc64d6197d400269b1f5d392f1d1ba2477da1 (commit) from 325d840643aa787252aa8be68e99cbdb3e6aad93 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=af3dc64d6197d400269b1f5d392f1d1ba2477da1 commit af3dc64d6197d400269b1f5d392f1d1ba2477da1 Author: Michael P <mic...@us...> Date: Thu Dec 15 12:25:43 2011 +0900 Fix for regression test create_misc This test was outdated and broken since CTAS commit. M src/test/regress/expected/create_misc.out D src/test/regress/output/create_misc_1.source R100 src/test/regress/input/create_misc.source src/test/regress/sql/create_misc.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/create_misc.out | 22 ++-- src/test/regress/output/create_misc_1.source | 157 -------------------- .../create_misc.source => sql/create_misc.sql} | 0 3 files changed, 11 insertions(+), 168 deletions(-) delete mode 100644 src/test/regress/output/create_misc_1.source rename src/test/regress/{input/create_misc.source => sql/create_misc.sql} (100%) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-15 02:18:20
|
Project "Postgres-XC". The branch, master has been updated via 325d840643aa787252aa8be68e99cbdb3e6aad93 (commit) via 2a4396e5010d22e39d007ec0af6c1c4c3830b6b2 (commit) via 85ebc6efd1c92d54108518f08482f76629abf553 (commit) from caf15543cdadff39db3cae8e076b85d89ed6c8e6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=325d840643aa787252aa8be68e99cbdb3e6aad93 commit 325d840643aa787252aa8be68e99cbdb3e6aad93 Author: Michael P <mic...@us...> Date: Thu Dec 15 11:20:05 2011 +0900 Fix for regression test tablespace This was broken since CREATE TABLE AS commit. M src/test/regress/output/tablespace_1.source http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2a4396e5010d22e39d007ec0af6c1c4c3830b6b2 commit 325d840643aa787252aa8be68e99cbdb3e6aad93 Author: Michael P <mic...@us...> Date: Thu Dec 15 11:20:05 2011 +0900 Fix for regression test tablespace This was broken since CREATE TABLE AS commit. M src/test/regress/output/tablespace_1.source http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=85ebc6efd1c92d54108518f08482f76629abf553 commit 325d840643aa787252aa8be68e99cbdb3e6aad93 Author: Michael P <mic...@us...> Date: Thu Dec 15 11:20:05 2011 +0900 Fix for regression test tablespace This was broken since CREATE TABLE AS commit. M src/test/regress/output/tablespace_1.source ----------------------------------------------------------------------- Summary of changes: src/backend/catalog/pg_proc.c | 15 ++++++++++++ src/backend/pgxc/plan/planner.c | 33 +++++++++++++++++++++++++++ src/include/pgxc/planner.h | 1 + src/test/regress/output/tablespace_1.source | 25 +++++++++----------- src/test/regress/sql/bitmapops.sql | 7 +++-- 5 files changed, 64 insertions(+), 17 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2011-12-15 01:44:35
|
Project "Postgres-XC". The branch, master has been updated via caf15543cdadff39db3cae8e076b85d89ed6c8e6 (commit) from 9636caffda2f38d47c23c1848f4f22d77c958d2a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=caf15543cdadff39db3cae8e076b85d89ed6c8e6 commit caf15543cdadff39db3cae8e076b85d89ed6c8e6 Author: Michael P <mic...@us...> Date: Thu Dec 15 10:45:03 2011 +0900 Support CTAS for node subsets and add documentation CTAS is supports node subsets the same way as CREATE TABLE. This commit includes fixes for warnings of related to CTAS and its documentation. A fix is made with a problem found with the special fix for round robin tables. It happened that other table's sublist were not used anymore, leading to inconsistencies when using INSERT SELECT on a subset of nodes. M doc-xc/src/sgml/ref/create_table.sgmlin M doc-xc/src/sgml/ref/create_table_as.sgmlin M src/backend/nodes/copyfuncs.c M src/backend/optimizer/plan/createplan.c M src/backend/parser/gram.y M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/backend/tcop/utility.c M src/backend/utils/adt/ruleutils.c M src/include/nodes/primnodes.h ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_table.sgmlin | 2 +- doc-xc/src/sgml/ref/create_table_as.sgmlin | 138 +++++++++++++++++++++++++-- src/backend/nodes/copyfuncs.c | 4 + src/backend/optimizer/plan/createplan.c | 5 +- src/backend/parser/gram.y | 3 +- src/backend/pgxc/pool/execRemote.c | 35 +++++-- src/backend/rewrite/rewriteHandler.c | 143 +--------------------------- src/backend/tcop/utility.c | 6 - src/backend/utils/adt/ruleutils.c | 39 ++++++++ src/include/nodes/primnodes.h | 7 +- 10 files changed, 209 insertions(+), 173 deletions(-) hooks/post-receive -- Postgres-XC |
From: Koichi S. <koi...@us...> - 2011-12-15 01:36:14
|
Project "Postgres-XC". The branch, master has been updated via 9636caffda2f38d47c23c1848f4f22d77c958d2a (commit) from 8a05756a702051d55a35ec3f4953f381f977b53a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9636caffda2f38d47c23c1848f4f22d77c958d2a commit 9636caffda2f38d47c23c1848f4f22d77c958d2a Author: Koichi Suzuki <koi...@gm...> Date: Thu Dec 15 10:34:02 2011 +0900 This commit eliminates compilation warning in GTM related to the modified files. modified: src/backend/utils/mmgr/mcxt.c modified: src/gtm/client/gtm_client.c modified: src/gtm/common/gtm_serialize.c modified: src/gtm/common/mcxt.c modified: src/gtm/main/gtm_standby.c modified: src/include/gtm/gtm_standby.h M src/backend/utils/mmgr/mcxt.c M src/gtm/client/gtm_client.c M src/gtm/common/gtm_serialize.c M src/gtm/common/mcxt.c M src/gtm/main/gtm_standby.c M src/include/gtm/gtm_standby.h ----------------------------------------------------------------------- Summary of changes: src/backend/utils/mmgr/mcxt.c | 3 +++ src/gtm/client/gtm_client.c | 1 - src/gtm/common/gtm_serialize.c | 18 ------------------ src/gtm/common/mcxt.c | 1 + src/gtm/main/gtm_standby.c | 3 +-- src/include/gtm/gtm_standby.h | 4 ++++ 6 files changed, 9 insertions(+), 21 deletions(-) hooks/post-receive -- Postgres-XC |
From: Pavan D. <pa...@us...> - 2011-12-14 04:17:03
|
Project "Postgres-XC". The branch, master has been updated via 8a05756a702051d55a35ec3f4953f381f977b53a (commit) from a53dd68ce6ab8a66ae7b4f7487b3b1aa78423894 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8a05756a702051d55a35ec3f4953f381f977b53a commit 8a05756a702051d55a35ec3f4953f381f977b53a Author: Pavan Deolasee <pav...@gm...> Date: Wed Dec 14 09:35:53 2011 +0530 Implement support for CREATE TABLE AS, SELECT INTO and INSERT INTO statements. We start by fixing the INSERT INTO support. For every result relation, we now build a corresponding RemoteQuery node so that the inserts can be carried out at the remote datanodes. Subsequently, at the coordinator at execution time, instead of inserting the resulting tuples in a local heap, we invoke remote execution and insert the rows in the remote datanodes. This works nicely even for prepared queries, multiple values clause for insert as well as any other mechanism of generating tuples. We use this infrastructure to then support CREATE TABLE AS SELECT (CTAS). The query is transformed into a CREATE TABLE statement followed by INSERT INTO statement and then run through normal planning/execution. There are many regression cases that need fixing because these statements now work correctly. This patch fixes many of them. Few might still be failing, but they seem unrelated to the work itself and might be a side-effect. We will fix them once this patch gets in. M src/backend/executor/execMain.c M src/backend/executor/execUtils.c M src/backend/executor/nodeModifyTable.c M src/backend/nodes/copyfuncs.c M src/backend/nodes/outfuncs.c M src/backend/optimizer/plan/createplan.c M src/backend/parser/gram.y M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/backend/tcop/postgres.c M src/backend/utils/adt/ri_triggers.c M src/backend/utils/adt/ruleutils.c M src/include/nodes/execnodes.h M src/include/nodes/plannodes.h M src/include/nodes/primnodes.h M src/include/pgxc/execRemote.h M src/include/rewrite/rewriteHandler.h M src/test/regress/expected/foreign_key_1.out M src/test/regress/expected/privileges_1.out M src/test/regress/expected/select_1.out M src/test/regress/expected/transactions_1.out M src/test/regress/expected/triggers_1.out M src/test/regress/expected/vacuum.out M src/test/regress/input/create_misc.source ----------------------------------------------------------------------- Summary of changes: src/backend/executor/execMain.c | 12 ++ src/backend/executor/execUtils.c | 3 + src/backend/executor/nodeModifyTable.c | 90 +++++++++-- src/backend/nodes/copyfuncs.c | 3 + src/backend/nodes/outfuncs.c | 3 + src/backend/optimizer/plan/createplan.c | 175 +++++++++++++++++++++- src/backend/parser/gram.y | 8 +- src/backend/pgxc/plan/planner.c | 31 +++- src/backend/pgxc/pool/execRemote.c | 59 +++++++- src/backend/rewrite/rewriteHandler.c | 215 +++++++++++++------------- src/backend/tcop/postgres.c | 11 ++ src/backend/utils/adt/ri_triggers.c | 9 + src/backend/utils/adt/ruleutils.c | 110 +++++++++++++ src/include/nodes/execnodes.h | 6 + src/include/nodes/plannodes.h | 3 + src/include/nodes/primnodes.h | 3 + src/include/pgxc/execRemote.h | 1 + src/include/rewrite/rewriteHandler.h | 4 + src/test/regress/expected/foreign_key_1.out | 175 +++++++++++---------- src/test/regress/expected/privileges_1.out | 22 ++- src/test/regress/expected/select_1.out | 69 ++++++-- src/test/regress/expected/transactions_1.out | 46 +++---- src/test/regress/expected/triggers_1.out | 3 +- src/test/regress/expected/vacuum.out | 1 + src/test/regress/input/create_misc.source | 22 --- 25 files changed, 793 insertions(+), 291 deletions(-) hooks/post-receive -- Postgres-XC |