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: Abbas B. <ga...@us...> - 2012-11-21 16:01:46
|
Project "Postgres-XC".
The branch, master has been updated
via f77605b5cd3cd892affb2d5d03ff82de294a0258 (commit)
from dc6b630fc6138cf55b3300f52b2159592d2ac589 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f77605b5cd3cd892affb2d5d03ff82de294a0258
commit f77605b5cd3cd892affb2d5d03ff82de294a0258
Author: Abbas <abb...@en...>
Date: Wed Nov 21 20:59:09 2012 +0500
Correct a typing mistake in ExecModifyTable while trying to move to the next remote plan
M src/backend/executor/nodeModifyTable.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/executor/nodeModifyTable.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Abbas B. <ga...@us...> - 2012-11-21 16:01:35
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 798f64c85cb9d0a0303a2bb48099a21c2cb5163b (commit)
from 0f1b16884eb28771ede592d46d666709c124d6ee (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=798f64c85cb9d0a0303a2bb48099a21c2cb5163b
commit f77605b5cd3cd892affb2d5d03ff82de294a0258
Author: Abbas <abb...@en...>
Date: Wed Nov 21 20:59:09 2012 +0500
Correct a typing mistake in ExecModifyTable while trying to move to the next remote plan
M src/backend/executor/nodeModifyTable.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/executor/nodeModifyTable.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Ashutosh B. <ash...@us...> - 2012-11-21 08:58:09
|
Project "Postgres-XC".
The branch, master has been updated
via dc6b630fc6138cf55b3300f52b2159592d2ac589 (commit)
from 99c47f0da3b0ad744666940676ce489be5642a00 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=dc6b630fc6138cf55b3300f52b2159592d2ac589
commit dc6b630fc6138cf55b3300f52b2159592d2ac589
Author: Ashutosh Bapat <ash...@en...>
Date: Wed Nov 21 14:17:07 2012 +0530
If the query being shipped to the Datanodes is not the original query, but
something crafted by the planner, there are chances that there exist to
targetlist entries with same aliases (implicit or explicit). While resolving
ORDER BY expressions, first (implicit or explicit) aliases are matched to
find the expressions on which to order. If the order by expression happens to use
one of the duplicate aliased expressions, we will create an ambiguous ORDER BY
entry. Hence instead of using expressions in ORDER BY clause in the query to be
shipped to the Datanode, use the index in the targetlist. If the query is being
shipped as is, there is a chance, that the ORDER BY expression is not part of
the targetlist, in such case, we can not use the index, but have to use the
expression instead.
The patch provides a hook in deparsing logic to decide whether to use the index
or the expression in ORDER BY clause. Since we use same SortGroupClause for
ORDER BY and GROUP By, we use same convention for GROUP BY.
M src/backend/nodes/copyfuncs.c
M src/backend/nodes/outfuncs.c
M src/backend/optimizer/plan/pgxcplan.c
M src/backend/rewrite/rewriteHandler.c
M src/backend/utils/adt/ruleutils.c
M src/include/nodes/parsenodes.h
M src/include/optimizer/pgxcplan.h
M src/include/utils/builtins.h
M src/test/regress/expected/xc_FQS.out
M src/test/regress/expected/xc_groupby.out
M src/test/regress/expected/xc_having.out
M src/test/regress/expected/xc_limit.out
-----------------------------------------------------------------------
Summary of changes:
src/backend/nodes/copyfuncs.c | 3 +-
src/backend/nodes/outfuncs.c | 2 +
src/backend/optimizer/plan/pgxcplan.c | 30 ++--
src/backend/rewrite/rewriteHandler.c | 4 +-
src/backend/utils/adt/ruleutils.c | 261 ++++++--------------------
src/include/nodes/parsenodes.h | 2 -
src/include/optimizer/pgxcplan.h | 6 +
src/include/utils/builtins.h | 5 +-
src/test/regress/expected/xc_FQS.out | 18 +-
src/test/regress/expected/xc_groupby.out | 292 +++++++++++++++---------------
src/test/regress/expected/xc_having.out | 140 +++++++-------
src/test/regress/expected/xc_limit.out | 12 +-
12 files changed, 320 insertions(+), 455 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-15 03:44:16
|
Project "Postgres-XC".
The branch, master has been updated
via 99c47f0da3b0ad744666940676ce489be5642a00 (commit)
from 8cbb49aace7320cede0e83d8bdf6d606061e2646 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=99c47f0da3b0ad744666940676ce489be5642a00
commit 99c47f0da3b0ad744666940676ce489be5642a00
Author: Michael Paquier <mi...@ot...>
Date: Thu Nov 15 12:37:51 2012 +0900
Fix for documentation of pg_ctl with -Z option
Incorrect option arguments were written in docs, leading to some comprehension
mistakes. At the same time some typos are fixed.
M doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-15 03:44:02
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 0f1b16884eb28771ede592d46d666709c124d6ee (commit)
from 19d051e04e431f9e029b59112e0cf393a6f4d5c5 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0f1b16884eb28771ede592d46d666709c124d6ee
commit 99c47f0da3b0ad744666940676ce489be5642a00
Author: Michael Paquier <mi...@ot...>
Date: Thu Nov 15 12:37:51 2012 +0900
Fix for documentation of pg_ctl with -Z option
Incorrect option arguments were written in docs, leading to some comprehension
mistakes. At the same time some typos are fixed.
M doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/ref/pg_ctl-ref.sgmlin | 14 ++++++++------
1 files changed, 8 insertions(+), 6 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-15 00:19:21
|
Project "Postgres-XC".
The branch, master has been updated
via 8cbb49aace7320cede0e83d8bdf6d606061e2646 (commit)
from 0e3a86e527831404c9c27b0f443efb1a3708c3c1 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8cbb49aace7320cede0e83d8bdf6d606061e2646
commit 8cbb49aace7320cede0e83d8bdf6d606061e2646
Author: Michael Paquier <mi...@ot...>
Date: Thu Nov 15 09:15:56 2012 +0900
Correct comment related to unspecified --coordinator and --datanode option
Per report from Matteo Dessalvi
M src/backend/postmaster/postmaster.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/postmaster/postmaster.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-15 00:19:09
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 19d051e04e431f9e029b59112e0cf393a6f4d5c5 (commit)
from 361b5a6bbafc502bf00e0964e4d861128a9416de (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=19d051e04e431f9e029b59112e0cf393a6f4d5c5
commit 8cbb49aace7320cede0e83d8bdf6d606061e2646
Author: Michael Paquier <mi...@ot...>
Date: Thu Nov 15 09:15:56 2012 +0900
Correct comment related to unspecified --coordinator and --datanode option
Per report from Matteo Dessalvi
M src/backend/postmaster/postmaster.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/commands/dbcommands.c | 21 ++++++++++++++++++++-
src/backend/tcop/utility.c | 15 ++++++++++++---
src/include/commands/dbcommands.h | 4 ++++
3 files changed, 36 insertions(+), 4 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Koichi S. <koi...@us...> - 2012-11-14 08:04:29
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 361b5a6bbafc502bf00e0964e4d861128a9416de (commit)
from e597e83a5e07c90c3746a43e77352982eeacc379 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=361b5a6bbafc502bf00e0964e4d861128a9416de
commit 0e3a86e527831404c9c27b0f443efb1a3708c3c1
Merge: 87cdc18 d4cc762
Author: Koichi Suzuki <koi...@gm...>
Date: Wed Nov 14 16:58:36 2012 +0900
Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc
-----------------------------------------------------------------------
Summary of changes:
contrib/pgxc_clean/pgxc_clean.c | 23 +++++++++++++++++++++--
contrib/pgxc_clean/txninfo.c | 10 +++++-----
2 files changed, 26 insertions(+), 7 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Koichi S. <koi...@us...> - 2012-11-14 07:59:56
|
Project "Postgres-XC".
The branch, master has been updated
via 0e3a86e527831404c9c27b0f443efb1a3708c3c1 (commit)
via 87cdc18b19a6b24b09123fc745b7e9ef4596402b (commit)
from d4cc7622bc92d501c24d83c57d74e8d78a87035d (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0e3a86e527831404c9c27b0f443efb1a3708c3c1
commit 0e3a86e527831404c9c27b0f443efb1a3708c3c1
Merge: 87cdc18 d4cc762
Author: Koichi Suzuki <koi...@gm...>
Date: Wed Nov 14 16:58:36 2012 +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=87cdc18b19a6b24b09123fc745b7e9ef4596402b
commit 0e3a86e527831404c9c27b0f443efb1a3708c3c1
Merge: 87cdc18 d4cc762
Author: Koichi Suzuki <koi...@gm...>
Date: Wed Nov 14 16:58:36 2012 +0900
Merge branch 'master' of ssh://postgres-xc.git.sourceforge.net/gitroot/postgres-xc/postgres-xc
-----------------------------------------------------------------------
Summary of changes:
contrib/pgxc_clean/pgxc_clean.c | 23 +++++++++++++++++++++--
contrib/pgxc_clean/txninfo.c | 10 +++++-----
2 files changed, 26 insertions(+), 7 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-14 03:48:27
|
Project "Postgres-XC".
The branch, master has been updated
via d4cc7622bc92d501c24d83c57d74e8d78a87035d (commit)
from e4c3390ad1896c8287f25df3d3777b5dcd1eba59 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=d4cc7622bc92d501c24d83c57d74e8d78a87035d
commit d4cc7622bc92d501c24d83c57d74e8d78a87035d
Author: Michael Paquier <mi...@ot...>
Date: Wed Nov 14 12:12:16 2012 +0900
Fix documentation of INSERT and INSERT SELECT
INSERT SELECT has no restrictions on the distribution of tables it interacts
with, but the documentation said the contrary. This commit cleans up some
other parts of this doc page at the same time.
Per report from Masaki Hisada
M doc-xc/src/sgml/ref/insert.sgmlin
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/ref/insert.sgmlin | 72 +------------------------------------
1 files changed, 1 insertions(+), 71 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-14 03:48:05
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via e597e83a5e07c90c3746a43e77352982eeacc379 (commit)
from 88faabc32ced2afba5b2e11e2c7ad11ddae2dcbe (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e597e83a5e07c90c3746a43e77352982eeacc379
commit d4cc7622bc92d501c24d83c57d74e8d78a87035d
Author: Michael Paquier <mi...@ot...>
Date: Wed Nov 14 12:12:16 2012 +0900
Fix documentation of INSERT and INSERT SELECT
INSERT SELECT has no restrictions on the distribution of tables it interacts
with, but the documentation said the contrary. This commit cleans up some
other parts of this doc page at the same time.
Per report from Masaki Hisada
M doc-xc/src/sgml/ref/insert.sgmlin
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/ref/insert.sgmlin | 72 +------------------------------------
1 files changed, 1 insertions(+), 71 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Koichi S. <koi...@us...> - 2012-11-08 01:21:33
|
Project "Postgres-XC".
The branch, master has been updated
via e4c3390ad1896c8287f25df3d3777b5dcd1eba59 (commit)
from b3208942ba78f26c97cc737a3d33bb359fd78132 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e4c3390ad1896c8287f25df3d3777b5dcd1eba59
commit e4c3390ad1896c8287f25df3d3777b5dcd1eba59
Author: Koichi Suzuki <koi...@gm...>
Date: Thu Nov 8 10:18:44 2012 +0900
This commit fixes inconsistent default value of port option for both gtm and gtm proxy.
M src/gtm/main/gtm_opt.c
M src/gtm/proxy/gtm_proxy_opt.c
-----------------------------------------------------------------------
Summary of changes:
src/gtm/main/gtm_opt.c | 2 +-
src/gtm/proxy/gtm_proxy_opt.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Koichi S. <koi...@us...> - 2012-11-08 00:54:55
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 88faabc32ced2afba5b2e11e2c7ad11ddae2dcbe (commit)
from 18b4519c82045646d202d467ee325a4a36a97108 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=88faabc32ced2afba5b2e11e2c7ad11ddae2dcbe
commit b3208942ba78f26c97cc737a3d33bb359fd78132
Author: Koichi Suzuki <koi...@gm...>
Date: Wed Nov 7 13:54:33 2012 +0900
This commit fixes the bug 3583921, coordinator/slave crash due to
too many KnownAssignedXids.
modified: src/backend/storage/ipc/procarray.c
M src/backend/storage/ipc/procarray.c
-----------------------------------------------------------------------
Summary of changes:
src/gtm/main/gtm_opt.c | 2 +-
src/gtm/proxy/gtm_proxy_opt.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Koichi S. <koi...@us...> - 2012-11-07 05:01:50
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 18b4519c82045646d202d467ee325a4a36a97108 (commit)
from c9465bb80bc8e94f6cf98ac00981e016793201ce (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=18b4519c82045646d202d467ee325a4a36a97108
commit b3208942ba78f26c97cc737a3d33bb359fd78132
Author: Koichi Suzuki <koi...@gm...>
Date: Wed Nov 7 13:54:33 2012 +0900
This commit fixes the bug 3583921, coordinator/slave crash due to
too many KnownAssignedXids.
modified: src/backend/storage/ipc/procarray.c
M src/backend/storage/ipc/procarray.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/storage/ipc/procarray.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Koichi S. <koi...@us...> - 2012-11-07 04:57:10
|
Project "Postgres-XC".
The branch, master has been updated
via b3208942ba78f26c97cc737a3d33bb359fd78132 (commit)
from 462049dade553216b97db4e0233fb8d16e626c8f (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b3208942ba78f26c97cc737a3d33bb359fd78132
commit b3208942ba78f26c97cc737a3d33bb359fd78132
Author: Koichi Suzuki <koi...@gm...>
Date: Wed Nov 7 13:54:33 2012 +0900
This commit fixes the bug 3583921, coordinator/slave crash due to
too many KnownAssignedXids.
modified: src/backend/storage/ipc/procarray.c
M src/backend/storage/ipc/procarray.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/storage/ipc/procarray.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-07 02:16:27
|
Project "Postgres-XC".
The branch, master has been updated
via 462049dade553216b97db4e0233fb8d16e626c8f (commit)
from 2af482674d9e6d7d0a0b008bf9f0a66ef78f7cca (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=462049dade553216b97db4e0233fb8d16e626c8f
commit 462049dade553216b97db4e0233fb8d16e626c8f
Author: Michael Paquier <mi...@ot...>
Date: Wed Nov 7 11:15:14 2012 +0900
Add a note in docs that enable_remote* parameters are XC-only parameters
M doc-xc/src/sgml/config.sgmlin
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/config.sgmlin | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-07 02:16:10
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via c9465bb80bc8e94f6cf98ac00981e016793201ce (commit)
from e5b2b0c18e9f4908a5f8c817bab55edb1eb87fb9 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c9465bb80bc8e94f6cf98ac00981e016793201ce
commit 462049dade553216b97db4e0233fb8d16e626c8f
Author: Michael Paquier <mi...@ot...>
Date: Wed Nov 7 11:15:14 2012 +0900
Add a note in docs that enable_remote* parameters are XC-only parameters
M doc-xc/src/sgml/config.sgmlin
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/config.sgmlin | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-02 04:38:19
|
Project "Postgres-XC".
The branch, master has been updated
via 2af482674d9e6d7d0a0b008bf9f0a66ef78f7cca (commit)
from 7d11a5c727a09c697bb5824f2bfc4575cedd5f66 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2af482674d9e6d7d0a0b008bf9f0a66ef78f7cca
commit 2af482674d9e6d7d0a0b008bf9f0a66ef78f7cca
Author: Michael Paquier <mi...@ot...>
Date: Fri Nov 2 13:37:53 2012 +0900
Add GTM headers in installation to allow compilation of server modules
Some simple modules could not compile correctly because of the GTM headers
missing in installation.
M src/include/Makefile
-----------------------------------------------------------------------
Summary of changes:
src/include/Makefile | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-02 04:38:08
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via e5b2b0c18e9f4908a5f8c817bab55edb1eb87fb9 (commit)
from 7f6b03fc51ea9350fbfc12a359cd353344af3c0b (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e5b2b0c18e9f4908a5f8c817bab55edb1eb87fb9
commit 2af482674d9e6d7d0a0b008bf9f0a66ef78f7cca
Author: Michael Paquier <mi...@ot...>
Date: Fri Nov 2 13:37:53 2012 +0900
Add GTM headers in installation to allow compilation of server modules
Some simple modules could not compile correctly because of the GTM headers
missing in installation.
M src/include/Makefile
-----------------------------------------------------------------------
Summary of changes:
src/include/Makefile | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-02 02:04:24
|
Project "Postgres-XC".
The branch, master has been updated
via 7d11a5c727a09c697bb5824f2bfc4575cedd5f66 (commit)
from f117dc363e05bd79245c8739a12e0428a67c45f4 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=7d11a5c727a09c697bb5824f2bfc4575cedd5f66
commit 7d11a5c727a09c697bb5824f2bfc4575cedd5f66
Author: Michael Paquier <mi...@ot...>
Date: Fri Nov 2 10:58:26 2012 +0900
Add object copy and object equal functions for queries exclusive to Postgres-XC
Support for the following queries is added:
- CREATE NODE
- ALTER NODE
- DROP NODE
- CREATE NODE GROUP
- DROP NODE GROUP
- CLEAN CONNECTION
With those things supported, it is possible to create cached plans for client
applications or drivers using prepared queries like JDBC.
M src/backend/nodes/copyfuncs.c
M src/backend/nodes/equalfuncs.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/nodes/copyfuncs.c | 101 ++++++++++++++++++++++++++++++++++++++++
src/backend/nodes/equalfuncs.c | 79 +++++++++++++++++++++++++++++++
2 files changed, 180 insertions(+), 0 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-02 02:04:12
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 7f6b03fc51ea9350fbfc12a359cd353344af3c0b (commit)
from 853ddc1f80dac002f3e97a195492347a77522cd1 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=7f6b03fc51ea9350fbfc12a359cd353344af3c0b
commit 7d11a5c727a09c697bb5824f2bfc4575cedd5f66
Author: Michael Paquier <mi...@ot...>
Date: Fri Nov 2 10:58:26 2012 +0900
Add object copy and object equal functions for queries exclusive to Postgres-XC
Support for the following queries is added:
- CREATE NODE
- ALTER NODE
- DROP NODE
- CREATE NODE GROUP
- DROP NODE GROUP
- CLEAN CONNECTION
With those things supported, it is possible to create cached plans for client
applications or drivers using prepared queries like JDBC.
M src/backend/nodes/copyfuncs.c
M src/backend/nodes/equalfuncs.c
-----------------------------------------------------------------------
Summary of changes:
src/backend/nodes/copyfuncs.c | 101 ++++++++++++++++++++++++++++++++++++++++
src/backend/nodes/equalfuncs.c | 79 +++++++++++++++++++++++++++++++
2 files changed, 180 insertions(+), 0 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-11-01 00:06:37
|
Project "Postgres-XC".
The branch, master has been updated
via f117dc363e05bd79245c8739a12e0428a67c45f4 (commit)
via 714e09b2b65e268b3ee167c1edf35fdfb05bad85 (commit)
from cdd8b22ce1e59d78576e1e4270b219f2644586a5 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f117dc363e05bd79245c8739a12e0428a67c45f4
commit f117dc363e05bd79245c8739a12e0428a67c45f4
Author: Michael Paquier <mi...@ot...>
Date: Thu Nov 1 09:00:33 2012 +0900
Move gtm_ctl from src/gtm to src/bin
Like initgtm, gtm_ctl is a wrapper helping to perform operations on GTM the
same way pg_ctl operates with PG servers, so it makes sense to move its code
there and clean at the same time a bit the GTM core code tree.
It is important to note that gtm_ctl has dependencies with GTM client libraries
as those functions are used for things like reconnection of a Proxy to a GTM.
M src/bin/Makefile
R100 src/gtm/gtm_ctl/.gitignore src/bin/gtm_ctl/.gitignore
R083 src/gtm/gtm_ctl/Makefile src/bin/gtm_ctl/Makefile
R100 src/gtm/gtm_ctl/gtm_ctl.c src/bin/gtm_ctl/gtm_ctl.c
M src/gtm/Makefile
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=714e09b2b65e268b3ee167c1edf35fdfb05bad85
commit f117dc363e05bd79245c8739a12e0428a67c45f4
Author: Michael Paquier <mi...@ot...>
Date: Thu Nov 1 09:00:33 2012 +0900
Move gtm_ctl from src/gtm to src/bin
Like initgtm, gtm_ctl is a wrapper helping to perform operations on GTM the
same way pg_ctl operates with PG servers, so it makes sense to move its code
there and clean at the same time a bit the GTM core code tree.
It is important to note that gtm_ctl has dependencies with GTM client libraries
as those functions are used for things like reconnection of a Proxy to a GTM.
M src/bin/Makefile
R100 src/gtm/gtm_ctl/.gitignore src/bin/gtm_ctl/.gitignore
R083 src/gtm/gtm_ctl/Makefile src/bin/gtm_ctl/Makefile
R100 src/gtm/gtm_ctl/gtm_ctl.c src/bin/gtm_ctl/gtm_ctl.c
M src/gtm/Makefile
-----------------------------------------------------------------------
Summary of changes:
src/backend/Makefile | 13 ++++-
src/bin/Makefile | 2 +-
src/{gtm => bin}/gtm_ctl/.gitignore | 0
src/bin/gtm_ctl/Makefile | 46 ++++++++++++++++++
src/{gtm => bin}/gtm_ctl/gtm_ctl.c | 0
src/gtm/Makefile | 35 +-------------
src/gtm/client/Makefile | 18 +++----
src/gtm/client/strlcpy.c | 72 -----------------------------
src/gtm/common/Makefile | 28 ++++-------
src/gtm/config/Makefile | 15 ++----
src/gtm/gtm_ctl/Makefile | 34 --------------
src/gtm/libpq/Makefile | 14 ++---
src/gtm/main/Makefile | 40 +++++++++++-----
src/gtm/main/gtm_standby.c | 49 +++++++++++++++++++-
src/gtm/{recovery => main}/register_gtm.c | 45 ------------------
src/gtm/{recovery => main}/replication.c | 0
src/gtm/path/Makefile | 15 ++----
src/gtm/proxy/Makefile | 41 +++++++++++-----
src/gtm/recovery/Makefile | 16 ++----
src/include/gtm/gtm_standby.h | 5 +-
20 files changed, 208 insertions(+), 280 deletions(-)
rename src/{gtm => bin}/gtm_ctl/.gitignore (100%)
create mode 100644 src/bin/gtm_ctl/Makefile
rename src/{gtm => bin}/gtm_ctl/gtm_ctl.c (100%)
delete mode 100644 src/gtm/client/strlcpy.c
delete mode 100644 src/gtm/gtm_ctl/Makefile
rename src/gtm/{recovery => main}/register_gtm.c (91%)
rename src/gtm/{recovery => main}/replication.c (100%)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-10-31 05:24:05
|
Project "Postgres-XC".
The branch, master has been updated
via cdd8b22ce1e59d78576e1e4270b219f2644586a5 (commit)
from bb284ea809a572d58da56bee9c8a0974acb5bd95 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=cdd8b22ce1e59d78576e1e4270b219f2644586a5
commit cdd8b22ce1e59d78576e1e4270b219f2644586a5
Author: Michael Paquier <mi...@ot...>
Date: Wed Oct 31 14:12:23 2012 +0900
Add documentation for XC-specific query plan tuning options
Those options are usually used by applications developers to debug correctly
queries relying on the Postgres server framework like EXPLAIN output. In the
case of PG, all the planner-related parameters are documented and listed in
postgresql.conf. Surprisingly, it was not the case of XC-specific parameters
which are:
- enable_fast_query_shipping, to control FQS planner
- enable_remotejoin, to control remote join planning
- enable_remotegroup, to control remote GROUP BY planning
- enable_remotelimit, to control remote LIMIT planning
Like for PG parameters, all those parameters are enabled by default.
Documentation is also provided, and there corresponding entry is added to
postgresql.conf.
M doc-xc/src/sgml/config.sgmlin
M src/backend/optimizer/path/costsize.c
M src/backend/optimizer/plan/pgxcplan.c
M src/backend/utils/misc/postgresql.conf.sample
M src/include/optimizer/cost.h
M src/include/optimizer/pgxcplan.h
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/config.sgmlin | 75 ++++++++++++++++++++++--
src/backend/optimizer/path/costsize.c | 1 +
src/backend/optimizer/plan/pgxcplan.c | 3 -
src/backend/utils/misc/postgresql.conf.sample | 7 ++
src/include/optimizer/cost.h | 1 +
src/include/optimizer/pgxcplan.h | 3 -
6 files changed, 77 insertions(+), 13 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-10-31 05:23:53
|
Project "Postgres-XC".
The branch, REL1_0_STABLE has been updated
via 853ddc1f80dac002f3e97a195492347a77522cd1 (commit)
from ed3e7121815b943c55e7e8d6ec675883aaa6edd1 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=853ddc1f80dac002f3e97a195492347a77522cd1
commit cdd8b22ce1e59d78576e1e4270b219f2644586a5
Author: Michael Paquier <mi...@ot...>
Date: Wed Oct 31 14:12:23 2012 +0900
Add documentation for XC-specific query plan tuning options
Those options are usually used by applications developers to debug correctly
queries relying on the Postgres server framework like EXPLAIN output. In the
case of PG, all the planner-related parameters are documented and listed in
postgresql.conf. Surprisingly, it was not the case of XC-specific parameters
which are:
- enable_fast_query_shipping, to control FQS planner
- enable_remotejoin, to control remote join planning
- enable_remotegroup, to control remote GROUP BY planning
- enable_remotelimit, to control remote LIMIT planning
Like for PG parameters, all those parameters are enabled by default.
Documentation is also provided, and there corresponding entry is added to
postgresql.conf.
M doc-xc/src/sgml/config.sgmlin
M src/backend/optimizer/path/costsize.c
M src/backend/optimizer/plan/pgxcplan.c
M src/backend/utils/misc/postgresql.conf.sample
M src/include/optimizer/cost.h
M src/include/optimizer/pgxcplan.h
-----------------------------------------------------------------------
Summary of changes:
doc-xc/src/sgml/config.sgmlin | 60 ++++++++++++++++++++++---
src/backend/utils/misc/postgresql.conf.sample | 6 +++
2 files changed, 59 insertions(+), 7 deletions(-)
hooks/post-receive
--
Postgres-XC
|
|
From: Michael P. <mic...@us...> - 2012-10-31 00:25:05
|
Project "Postgres-XC".
The branch, master has been updated
via bb284ea809a572d58da56bee9c8a0974acb5bd95 (commit)
from 8cb32febe56d62b986598cdad0ae66aeffeb1f63 (commit)
- Log -----------------------------------------------------------------
http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=bb284ea809a572d58da56bee9c8a0974acb5bd95
commit bb284ea809a572d58da56bee9c8a0974acb5bd95
Author: Michael Paquier <mi...@ot...>
Date: Wed Oct 31 09:24:33 2012 +0900
Correct typos and add files of test xc_limit forgotten by last commit
The tests were added to parallel and serial schedules, but without files
regressions simply fail.
M src/backend/optimizer/plan/pgxcplan.c
M src/backend/optimizer/plan/planner.c
A src/test/regress/expected/xc_limit.out
A src/test/regress/sql/xc_limit.sql
-----------------------------------------------------------------------
Summary of changes:
src/backend/optimizer/plan/pgxcplan.c | 38 ++--
src/backend/optimizer/plan/planner.c | 2 +-
src/test/regress/expected/xc_limit.out | 407 ++++++++++++++++++++++++++++++++
src/test/regress/sql/xc_limit.sql | 99 ++++++++
4 files changed, 526 insertions(+), 20 deletions(-)
create mode 100644 src/test/regress/expected/xc_limit.out
create mode 100644 src/test/regress/sql/xc_limit.sql
hooks/post-receive
--
Postgres-XC
|