You can subscribe to this list here.
2010 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(28) |
Jun
(12) |
Jul
(11) |
Aug
(12) |
Sep
(5) |
Oct
(19) |
Nov
(14) |
Dec
(12) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2011 |
Jan
(18) |
Feb
(30) |
Mar
(115) |
Apr
(89) |
May
(50) |
Jun
(44) |
Jul
(22) |
Aug
(13) |
Sep
(11) |
Oct
(30) |
Nov
(28) |
Dec
(39) |
2012 |
Jan
(38) |
Feb
(18) |
Mar
(43) |
Apr
(91) |
May
(108) |
Jun
(46) |
Jul
(37) |
Aug
(44) |
Sep
(33) |
Oct
(29) |
Nov
(36) |
Dec
(15) |
2013 |
Jan
(35) |
Feb
(611) |
Mar
(5) |
Apr
(55) |
May
(30) |
Jun
(28) |
Jul
(458) |
Aug
(34) |
Sep
(9) |
Oct
(39) |
Nov
(22) |
Dec
(32) |
2014 |
Jan
(16) |
Feb
(16) |
Mar
(42) |
Apr
(179) |
May
(7) |
Jun
(6) |
Jul
(9) |
Aug
|
Sep
(4) |
Oct
|
Nov
(3) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
(4) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
|
2
(4) |
3
|
4
(2) |
5
(2) |
6
(2) |
7
|
8
|
9
|
10
(8) |
11
(1) |
12
(1) |
13
(1) |
14
|
15
|
16
(8) |
17
(8) |
18
(3) |
19
(2) |
20
(3) |
21
(3) |
22
(1) |
23
(4) |
24
(11) |
25
(2) |
26
(9) |
27
(6) |
28
|
29
(4) |
30
(6) |
|
|
|
|
|
From: Amit K. <ami...@us...> - 2012-04-30 14:05:22
|
Project "Postgres-XC". The branch, master has been updated via 26e073f38d8a301c8f5de116613c6459903a50df (commit) from 64f749fcd29cacca13ed28996c2275333a348cb3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=26e073f38d8a301c8f5de116613c6459903a50df commit 26e073f38d8a301c8f5de116613c6459903a50df Author: Amit Khandekar <ami...@en...> Date: Mon Apr 30 19:33:17 2012 +0530 Fix for Bug 3498157 : pg_relation_size bug For exec-direct, the super-user restriction is applied in parse/analyse phase. So, create SPI function SPI_execute_direct() specially to allow running internal SQLs directly on other nodes, transparent to the user. This function bypasses the parsing stage by creating an ExecDirectStmt node manually and then does the usual analyze, rewrite, plan and execute using the usual SPI interface functions. This allows us to bypass the super-user restriction which is now shifted from analyze phase to parse phase. So for this release 1.0 we leave the exec-direct super-user restriction, but allow to propagate SQLs to other nodes through backend code. This prevents normal users from accidentally doing table writes using exec-direct but at the same time allows transparently to propagate system functions like pg_relation_size, pg_advisory_lock() etc to be propagated to coordinators and/or datanodes transparently. M src/backend/executor/spi.c M src/backend/parser/analyze.c M src/backend/parser/gram.y M src/backend/utils/adt/dbsize.c M src/include/executor/spi.h ----------------------------------------------------------------------- Summary of changes: src/backend/executor/spi.c | 74 ++++++++++++++++++++++++++++++++++++++- src/backend/parser/analyze.c | 5 --- src/backend/parser/gram.y | 6 +++ src/backend/utils/adt/dbsize.c | 5 +-- src/include/executor/spi.h | 4 ++ 5 files changed, 83 insertions(+), 11 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-30 13:37:48
|
Project "Postgres-XC". The branch, master has been updated via 64f749fcd29cacca13ed28996c2275333a348cb3 (commit) from 63bfc97691117d2bc738ec318b971d7d7ccada7a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=64f749fcd29cacca13ed28996c2275333a348cb3 commit 64f749fcd29cacca13ed28996c2275333a348cb3 Author: Michael Paquier <mi...@ot...> Date: Mon Apr 30 22:11:17 2012 +0900 Addition of new output files for collate, tsearch and xc_distkey Those tests are using additional ORDER BY clauses on some queries to make data obtained in the cluster consistent but those three tests might have ordering output that can change depending on the environment where XC is running. A src/test/regress/expected/collate_2.out A src/test/regress/expected/tsearch_2.out A src/test/regress/expected/xc_distkey_1.out ----------------------------------------------------------------------- Summary of changes: .../expected/{collate_1.out => collate_2.out} | 2 +- .../expected/{tsearch_1.out => tsearch_2.out} | 34 ++++++++++---------- .../expected/{xc_distkey.out => xc_distkey_1.out} | 2 +- 3 files changed, 19 insertions(+), 19 deletions(-) copy src/test/regress/expected/{collate_1.out => collate_2.out} (100%) copy src/test/regress/expected/{tsearch_1.out => tsearch_2.out} (100%) copy src/test/regress/expected/{xc_distkey.out => xc_distkey_1.out} (100%) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-30 06:15:40
|
Project "Postgres-XC". The branch, master has been updated via 63bfc97691117d2bc738ec318b971d7d7ccada7a (commit) from 99448b33fd6e5d462cd506732fc1fca1724be08a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=63bfc97691117d2bc738ec318b971d7d7ccada7a commit 63bfc97691117d2bc738ec318b971d7d7ccada7a Author: Abbas <abb...@en...> Date: Mon Apr 30 11:11:21 2012 +0500 Fix the test case create_index. The test case was failing because of the following reasons 1. There was a problem in CTAS. While doing the create table step QueryRewriteCTAS was wrongly assuming that the new table to be created has to be created with NOT NULL constraint for all columns, where as in PG the table created as a result of CTAS has no such constraint added by default, even if the table from which we are selecting has any such constraint. 2. We added an id column to the polygon_tbl. This change had an impact on a couple of test cases here too. 3. In XC, EXPLAIN show the plan of coordinator only, whereas in this test case there seems to be a need to show the plans of data node. Added a feature request 3522479 for this and changed the expected output file for now. 4. Removed alternate expected output file. M src/backend/rewrite/rewriteHandler.c M src/test/regress/expected/create_index.out D src/test/regress/expected/create_index_1.out M src/test/regress/sql/create_index.sql ----------------------------------------------------------------------- Summary of changes: src/backend/rewrite/rewriteHandler.c | 2 +- src/test/regress/expected/create_index.out | 390 ++++++----- src/test/regress/expected/create_index_1.out | 953 -------------------------- src/test/regress/sql/create_index.sql | 66 +- 4 files changed, 243 insertions(+), 1168 deletions(-) delete mode 100644 src/test/regress/expected/create_index_1.out hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-30 05:21:00
|
Project "Postgres-XC". The branch, master has been updated via 99448b33fd6e5d462cd506732fc1fca1724be08a (commit) from 1c805696f62ee41786a1d5954bcdd53c83ce58e3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=99448b33fd6e5d462cd506732fc1fca1724be08a commit 99448b33fd6e5d462cd506732fc1fca1724be08a Author: Amit Khandekar <ami...@en...> Date: Mon Apr 30 10:46:58 2012 +0530 pg_regress: rowtypes.sql : An update having references like column.* generates ERROR: Cannot generate remote UPDATE plan. Since we are not going to fix the issue in release 1.0, this commit accommodates this ERROR message in rowtypes_1.out so as to make the test pass. rowtypes_1.out also had some old changes which are not required now, so removed those. M src/test/regress/expected/rowtypes_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/rowtypes_1.out | 18 +++++++----------- 1 files changed, 7 insertions(+), 11 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-30 03:40:14
|
Project "Postgres-XC". The branch, master has been updated via 1c805696f62ee41786a1d5954bcdd53c83ce58e3 (commit) from 44d9ca48ae57065cb63d7b9615adc76a3fefbe1d (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=1c805696f62ee41786a1d5954bcdd53c83ce58e3 commit 1c805696f62ee41786a1d5954bcdd53c83ce58e3 Author: Abbas <abb...@en...> Date: Mon Apr 30 08:37:53 2012 +0500 Fix for test case sanity_check XC has added three catalog tables hence they are expected in the output. Composite indexes are not supported so creation of such an index on func_index_heap fails. M src/test/regress/expected/sanity_check.out D src/test/regress/expected/sanity_check_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/sanity_check.out | 7 +- src/test/regress/expected/sanity_check_1.out | 170 -------------------------- 2 files changed, 5 insertions(+), 172 deletions(-) delete mode 100644 src/test/regress/expected/sanity_check_1.out hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-30 03:37:00
|
Project "Postgres-XC". The branch, master has been updated via 44d9ca48ae57065cb63d7b9615adc76a3fefbe1d (commit) from 10cf12dc51866950c5e70c3318ffce0fefd2f7d8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=44d9ca48ae57065cb63d7b9615adc76a3fefbe1d commit 44d9ca48ae57065cb63d7b9615adc76a3fefbe1d Author: Abbas <abb...@en...> Date: Mon Apr 30 08:15:52 2012 +0500 Block creation of SQL functions containing utility statements To support these functions we need to first implement a deparser for all utility statements and then use the deparsed utility statement while adding remote query node in ProcessUtility function. Currently we are using "queryString" which can contain multiple statements in case of SQL functions, some of which can be utility and the last one has to be a select. Having such a combination in a single remote query node creates problems while processing results. Since that deparser is not there yet, we have to block creation of such SQL functions. By setting the GUC check_function_bodies of OFF, one can by-pass the code to block the creation of such functions. This patch makes the necessary changes to make sure that such SQL functions do not produce any crash, although they still won't run successfully. The documentation is changed to let the users know of this limitation. A few test cases are also added. M doc-xc/src/sgml/config.sgmlin M doc-xc/src/sgml/ref/create_function.sgmlin M src/backend/catalog/pg_proc.c M src/backend/executor/functions.c M src/backend/pgxc/plan/planner.c M src/include/pgxc/planner.h M src/test/regress/expected/xc_misc.out M src/test/regress/sql/xc_misc.sql ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/config.sgmlin | 11 +++++++ doc-xc/src/sgml/ref/create_function.sgmlin | 15 ++++++++- src/backend/catalog/pg_proc.c | 5 +++ src/backend/executor/functions.c | 21 +++++++----- src/backend/pgxc/plan/planner.c | 24 +++++++++++++++ src/include/pgxc/planner.h | 1 + src/test/regress/expected/xc_misc.out | 40 ++++++++++++++++++++++++ src/test/regress/sql/xc_misc.sql | 45 ++++++++++++++++++++++++++++ 8 files changed, 152 insertions(+), 10 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-29 13:32:33
|
Project "Postgres-XC". The branch, master has been updated via 10cf12dc51866950c5e70c3318ffce0fefd2f7d8 (commit) from 5a7ae7abc59e32e3585b3123ff7ae4ef1dc33393 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=10cf12dc51866950c5e70c3318ffce0fefd2f7d8 commit 10cf12dc51866950c5e70c3318ffce0fefd2f7d8 Author: Michael Paquier <mi...@ot...> Date: Sun Apr 29 22:29:58 2012 +0900 Fix for regression test privileges Strengthen consistency of test in cluster by adding a couple of ORDER BY clauses and correct output in consequence of commit 8b70821 that reallowed non-superusers to create stable and volatile functions. M src/test/regress/expected/privileges_1.out M src/test/regress/sql/privileges.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/privileges_1.out | 98 +++++++++++++--------------- src/test/regress/sql/privileges.sql | 33 +++++----- 2 files changed, 62 insertions(+), 69 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-29 12:41:57
|
Project "Postgres-XC". The branch, master has been updated via 5a7ae7abc59e32e3585b3123ff7ae4ef1dc33393 (commit) from 21a658a6dc1d3bd7f127a84a9b5da46134bfaf49 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5a7ae7abc59e32e3585b3123ff7ae4ef1dc33393 commit 5a7ae7abc59e32e3585b3123ff7ae4ef1dc33393 Author: Amit Khandekar <ami...@en...> Date: Sun Apr 29 18:05:28 2012 +0530 While generating remote column aliases, make use of user-supplied column aliases if available, and use the physical table attributes only if user has not supplied column aliases. The issue was: if a remote join query has user column aliases, they were not getting used in the quals of remote join query, and so the query used to give error such as: SELECT '' AS "xxx", t1.a, t2.e FROM J1_TBL t1 (a, b, c), J2_TBL t2 (d, e) WHERE t1.a = t2.d ORDER BY a, e; ERROR: column in_1.i does not exist M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 30 +++++++++++++++++------------- 1 files changed, 17 insertions(+), 13 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-29 07:54:18
|
Project "Postgres-XC". The branch, master has been updated via 21a658a6dc1d3bd7f127a84a9b5da46134bfaf49 (commit) from 8c579ff58656330512b4e66a89836ae5f3286b90 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=21a658a6dc1d3bd7f127a84a9b5da46134bfaf49 commit 21a658a6dc1d3bd7f127a84a9b5da46134bfaf49 Author: Michael Paquier <mi...@ot...> Date: Sun Apr 29 16:47:50 2012 +0900 Addition of an alternate output file for test select_implicit Former PostgreSQL has 3 different output files due to diffs in ORDER BY of test_missing_target. Up to now only one file was used for XC but the same diffs are reproducible depending on environment used. Hence a necessary output file is added. A src/test/regress/expected/select_implicit_4.out ----------------------------------------------------------------------- Summary of changes: ...select_implicit_3.out => select_implicit_4.out} | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) copy src/test/regress/expected/{select_implicit_3.out => select_implicit_4.out} (100%) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-29 00:52:05
|
Project "Postgres-XC". The branch, master has been updated via 8c579ff58656330512b4e66a89836ae5f3286b90 (commit) from eb356aee558bafed6e2112da117c9eb7f68b1116 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8c579ff58656330512b4e66a89836ae5f3286b90 commit 8c579ff58656330512b4e66a89836ae5f3286b90 Author: Michael Paquier <mi...@ot...> Date: Sun Apr 29 09:28:23 2012 +0900 Callback mechanism on GTM for sequence renaming Addition of a callback at transaction abort to change a sequence on GTM back to its former name in case it has been changed during this transaction. A new regression test called xc_sequence is added with test cases for sequence creation and drop callback, and renaming callback. M src/backend/catalog/dependency.c M src/backend/commands/sequence.c M src/backend/commands/tablecmds.c M src/include/commands/sequence.h A src/test/regress/expected/xc_sequence.out M src/test/regress/parallel_schedule M src/test/regress/serial_schedule A src/test/regress/sql/xc_sequence.sql ----------------------------------------------------------------------- Summary of changes: src/backend/catalog/dependency.c | 3 + src/backend/commands/sequence.c | 74 ++++++++++++ src/backend/commands/tablecmds.c | 9 ++ src/include/commands/sequence.h | 5 +- src/test/regress/expected/xc_sequence.out | 178 +++++++++++++++++++++++++++++ src/test/regress/parallel_schedule | 2 +- src/test/regress/serial_schedule | 1 + src/test/regress/sql/xc_sequence.sql | 86 ++++++++++++++ 8 files changed, 356 insertions(+), 2 deletions(-) create mode 100644 src/test/regress/expected/xc_sequence.out create mode 100644 src/test/regress/sql/xc_sequence.sql hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-27 10:23:45
|
Project "Postgres-XC". The branch, master has been updated via eb356aee558bafed6e2112da117c9eb7f68b1116 (commit) from 8b70821d42a517273f3ce44934f5fd892af45af7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=eb356aee558bafed6e2112da117c9eb7f68b1116 commit eb356aee558bafed6e2112da117c9eb7f68b1116 Author: Amit Khandekar <ami...@en...> Date: Fri Apr 27 15:41:01 2012 +0530 Fix for bug ID : 3515461: DELETE query with non-pushable clauses does not work. Two issues were fixed: 1. When the target list is not in the order of the table columns, WHERE clause was not getting correctly applied. So, at the time of applying the quals, re-arrange the slot values into an intermediate slot, so as to make the values ordered in line with the order of the table attributes, and then apply the qual. 2. When WHERE clause contains subquery that refers to attributes in outer query, the DELETE query fails, because the function pull_var_clause() that is used to extract the qual vars into the target list does not peek into subquery. So replaced this walker with a new walker that extracts vars from subquery as well. More details about the fix are available in the bug comments. M src/backend/pgxc/pool/execRemote.c M src/backend/rewrite/rewriteHandler.c M src/include/pgxc/execRemote.h M src/test/regress/expected/xc_remote.out M src/test/regress/sql/xc_remote.sql ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 123 +++++++++++-- src/backend/rewrite/rewriteHandler.c | 78 ++++++++- src/include/pgxc/execRemote.h | 2 + src/test/regress/expected/xc_remote.out | 310 +++++++++++++++++++++++++++++++ src/test/regress/sql/xc_remote.sql | 107 +++++++++++ 5 files changed, 601 insertions(+), 19 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-27 08:45:08
|
Project "Postgres-XC". The branch, master has been updated via 8b70821d42a517273f3ce44934f5fd892af45af7 (commit) from c4eeddf1846a426f1ed81b94004c6a9982b47b6a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8b70821d42a517273f3ce44934f5fd892af45af7 commit 8b70821d42a517273f3ce44934f5fd892af45af7 Author: Michael Paquier <mi...@ot...> Date: Fri Apr 27 17:49:47 2012 +0900 Remove old error message at function creation M src/backend/commands/functioncmds.c ----------------------------------------------------------------------- Summary of changes: src/backend/commands/functioncmds.c | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-27 06:33:31
|
Project "Postgres-XC". The branch, master has been updated via c4eeddf1846a426f1ed81b94004c6a9982b47b6a (commit) from 58aac20e2a5a40c267ae92109813896e0df39e09 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c4eeddf1846a426f1ed81b94004c6a9982b47b6a commit c4eeddf1846a426f1ed81b94004c6a9982b47b6a Author: Michael Paquier <mi...@ot...> Date: Fri Apr 27 15:37:18 2012 +0900 Fix for regression test alter_table Output is updated without any alternate file. Some tables have their distribution type changed to round robin or replication to get rid of restrictions on distribution column involved by XC. M src/test/regress/expected/alter_table.out M src/test/regress/sql/alter_table.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/alter_table.out | 68 +++++++++++++++-------------- src/test/regress/sql/alter_table.sql | 64 ++++++++++++++------------- 2 files changed, 68 insertions(+), 64 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-27 05:53:18
|
Project "Postgres-XC". The branch, master has been updated via 58aac20e2a5a40c267ae92109813896e0df39e09 (commit) from e66eac055505eac710bfe076dc0834f9544dc2a4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=58aac20e2a5a40c267ae92109813896e0df39e09 commit 58aac20e2a5a40c267ae92109813896e0df39e09 Author: Michael Paquier <mi...@ot...> Date: Fri Apr 27 14:39:57 2012 +0900 Rename a SERIAL sequence on GTM when its table namespace is changed This was an issue appearing in test case alter_table. Following SQL test was failing: create schema alter1; create schema alter2; create table alter1.t1(f1 serial primary key, f2 int check (f2 > 0)); alter table alter1.t1 set schema alter2; drop schema alter1; drop schema alter2 cascade; As the sequence name did not get modified on GTM, the cascade drop failed with an error about non-existing sequence on GTM. M src/backend/commands/tablecmds.c ----------------------------------------------------------------------- Summary of changes: src/backend/commands/tablecmds.c | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-27 04:01:58
|
Project "Postgres-XC". The branch, master has been updated via e66eac055505eac710bfe076dc0834f9544dc2a4 (commit) from 10ea0a85e09f3303ae9f56c7b850410048737011 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=e66eac055505eac710bfe076dc0834f9544dc2a4 commit e66eac055505eac710bfe076dc0834f9544dc2a4 Author: Michael Paquier <mi...@ot...> Date: Fri Apr 27 13:04:16 2012 +0900 Correction for test with and remove alternate output file Addition of some ORDER BY missing in test with. An alternate output file is removed. It was a pretty old one dating of before adding support for CTAS in XC. M src/test/regress/expected/with.out D src/test/regress/expected/with_1.out M src/test/regress/sql/with.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/with.out | 6 +- src/test/regress/expected/with_1.out | 1271 ---------------------------------- src/test/regress/sql/with.sql | 6 +- 3 files changed, 6 insertions(+), 1277 deletions(-) delete mode 100644 src/test/regress/expected/with_1.out hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-27 02:15:36
|
Project "Postgres-XC". The branch, master has been updated via 10ea0a85e09f3303ae9f56c7b850410048737011 (commit) from 0fd627ee70886c49859e244ceb1d8c4e25ba8eb3 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=10ea0a85e09f3303ae9f56c7b850410048737011 commit 10ea0a85e09f3303ae9f56c7b850410048737011 Author: Michael Paquier <mi...@ot...> Date: Fri Apr 27 11:13:03 2012 +0900 Fix for bug 3489478: DML involving dropped attributes When dropping a relation column, dropped columns were taken into account in query generated for INSERT and UPDATE. Dropped columns are not taken into account anymore in those queries and dropped parameters are casted in the parameter list sent to remote nodes as int4, based on what Postgres returns from the inner scan plan. A new regression test called xc_alter_table is added to do some additional check on those queries. The drop of the distribution column is now blocked for safety, as this could cause damages on hash and Modulo tables. M src/backend/commands/tablecmds.c M src/backend/optimizer/plan/createplan.c A src/test/regress/expected/xc_alter_table.out M src/test/regress/parallel_schedule M src/test/regress/serial_schedule A src/test/regress/sql/xc_alter_table.sql ----------------------------------------------------------------------- Summary of changes: src/backend/commands/tablecmds.c | 38 +++++ src/backend/optimizer/plan/createplan.c | 67 +++++--- src/test/regress/expected/xc_alter_table.out | 219 ++++++++++++++++++++++++++ src/test/regress/parallel_schedule | 2 +- src/test/regress/serial_schedule | 1 + src/test/regress/sql/xc_alter_table.sql | 59 +++++++ 6 files changed, 362 insertions(+), 24 deletions(-) create mode 100644 src/test/regress/expected/xc_alter_table.out create mode 100644 src/test/regress/sql/xc_alter_table.sql hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-26 12:05:49
|
Project "Postgres-XC". The branch, master has been updated via 0fd627ee70886c49859e244ceb1d8c4e25ba8eb3 (commit) from 8acce2d82e3c9973e62263c27a4267675bd84c51 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0fd627ee70886c49859e244ceb1d8c4e25ba8eb3 commit 0fd627ee70886c49859e244ceb1d8c4e25ba8eb3 Author: Ashutosh Bapat <ash...@en...> Date: Thu Apr 26 17:32:50 2012 +0530 Missed alternate output file for testcase inherit in last commit. Adding it. A src/test/regress/expected/inherit_1.out ----------------------------------------------------------------------- Summary of changes: .../expected/{inherit.out => inherit_1.out} | 494 ++++---------------- 1 files changed, 96 insertions(+), 398 deletions(-) copy src/test/regress/expected/{inherit.out => inherit_1.out} (84%) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-26 11:15:34
|
Project "Postgres-XC". The branch, master has been updated via 8acce2d82e3c9973e62263c27a4267675bd84c51 (commit) from 5bc59426628ecf8af5b7f830e2d323e73e6d053c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8acce2d82e3c9973e62263c27a4267675bd84c51 commit 8acce2d82e3c9973e62263c27a4267675bd84c51 Author: Ashutosh Bapat <ash...@en...> Date: Thu Apr 26 16:34:00 2012 +0530 Fix for testcase inherit. Since the OIDs across nodes in XC are not consistent, the queries with conditions like tablename.tableoid = pg_class.oid do not produce any results. Added alternate expected output for such cases. Added SQL queries to check the data sanity of inherited tables. Added explicit distribution for some tables to take care of partition column updation problem and global constraints problem. M src/test/regress/expected/inherit.out M src/test/regress/sql/inherit.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/inherit.out | 624 +++++++++++++++++++++++++++++++-- src/test/regress/sql/inherit.sql | 94 ++++- 2 files changed, 666 insertions(+), 52 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-26 08:03:28
|
Project "Postgres-XC". The branch, master has been updated via 5bc59426628ecf8af5b7f830e2d323e73e6d053c (commit) from 63ccc71a0da32c15a33bac769aaafd3ec9a4775c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=5bc59426628ecf8af5b7f830e2d323e73e6d053c commit 5bc59426628ecf8af5b7f830e2d323e73e6d053c Author: Michael Paquier <mi...@ot...> Date: Thu Apr 26 17:06:45 2012 +0900 Fix for output of xc_distkey This test was using an interval type in one of the tables, but this output was generated when environment variable intervalstyle was not transmitted correctly to remote nodes. M src/test/regress/expected/xc_distkey.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/xc_distkey.out | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-26 07:40:35
|
Project "Postgres-XC". The branch, master has been updated via 63ccc71a0da32c15a33bac769aaafd3ec9a4775c (commit) from 135cc92c5229d3e2390486f76ee7edd190292204 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=63ccc71a0da32c15a33bac769aaafd3ec9a4775c commit 63ccc71a0da32c15a33bac769aaafd3ec9a4775c Author: Michael Paquier <mi...@ot...> Date: Thu Apr 26 16:43:03 2012 +0900 Fix for alternate file of regression test domain A portion of alternate output file of test domain is corrected here. The portion corrected is consistent with vanilla output. M src/test/regress/expected/domain_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/domain_1.out | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-26 06:42:51
|
Project "Postgres-XC". The branch, master has been updated via 135cc92c5229d3e2390486f76ee7edd190292204 (commit) from 3a1794e8a1c5acf3fa24121b65e72b17ebe755f0 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=135cc92c5229d3e2390486f76ee7edd190292204 commit 135cc92c5229d3e2390486f76ee7edd190292204 Author: Michael Paquier <mi...@ot...> Date: Thu Apr 26 15:46:56 2012 +0900 Pass environment variable intervalstyle to backends through pooler This was causing some diffs in test case alter_table because interval format postgres_verbose used in regressions was not the on remote nodes and Coordinator. M src/backend/pgxc/pool/poolmgr.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/poolmgr.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-26 05:47:56
|
Project "Postgres-XC". The branch, master has been updated via 3a1794e8a1c5acf3fa24121b65e72b17ebe755f0 (commit) from 0ab163163ba39a83016e71fd4f4828a999fe83d4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=3a1794e8a1c5acf3fa24121b65e72b17ebe755f0 commit 3a1794e8a1c5acf3fa24121b65e72b17ebe755f0 Author: Ashutosh Bapat <ash...@en...> Date: Thu Apr 26 11:15:13 2012 +0530 If the original utility command has been sent to other nodes, do not send it again while executing sub-commands resulting from the original command. M src/backend/tcop/utility.c ----------------------------------------------------------------------- Summary of changes: src/backend/tcop/utility.c | 128 +++++++++++++++++++++++--------------------- 1 files changed, 67 insertions(+), 61 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-26 03:00:08
|
Project "Postgres-XC". The branch, master has been updated via 0ab163163ba39a83016e71fd4f4828a999fe83d4 (commit) from 627cbf6d63963da0ae875164929a915fd7498993 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0ab163163ba39a83016e71fd4f4828a999fe83d4 commit 0ab163163ba39a83016e71fd4f4828a999fe83d4 Author: Michael Paquier <mi...@ot...> Date: Thu Apr 26 12:03:40 2012 +0900 Change default port of GTM to 6666 in initgtm to stick with default on nodes Default connection value n Coordinators and Datanodes is 6666. This makes initialization more consistent. M src/bin/initgtm/initgtm.c ----------------------------------------------------------------------- Summary of changes: src/bin/initgtm/initgtm.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-26 01:36:51
|
Project "Postgres-XC documentation". The branch, master has been updated via 868bf622a4b617c10dc424a8cdc72d5ad05d91c0 (commit) from 82f666aaf926978733be9043dec8adb2d53902d9 (commit) - Log ----------------------------------------------------------------- commit 868bf622a4b617c10dc424a8cdc72d5ad05d91c0 Author: Michael P <mic...@us...> Date: Thu Apr 26 10:41:58 2012 +0900 Update release policy diagram with 1.0 releases diff --git a/release_policy/PG-XC_Release_Policy_Diagram.odg b/release_policy/PG-XC_Release_Policy_Diagram.odg index 1cccea6..69da785 100644 Binary files a/release_policy/PG-XC_Release_Policy_Diagram.odg and b/release_policy/PG-XC_Release_Policy_Diagram.odg differ ----------------------------------------------------------------------- Summary of changes: release_policy/PG-XC_Release_Policy_Diagram.odg | Bin 14105 -> 13049 bytes 1 files changed, 0 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC documentation |
From: Michael P. <mic...@us...> - 2012-04-26 00:19:39
|
Project "Postgres-XC". The branch, master has been updated via 627cbf6d63963da0ae875164929a915fd7498993 (commit) from 6eeeaf7960b073f0976cc4b75f1d22476a7f6e3f (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=627cbf6d63963da0ae875164929a915fd7498993 commit 627cbf6d63963da0ae875164929a915fd7498993 Author: Michael Paquier <mi...@ot...> Date: Thu Apr 26 09:23:49 2012 +0900 Complete postgres help with start-up options -C and -X Those options are used to specify if node starts as a Coordinator (-C) or a Datanode (-X). M src/backend/main/main.c ----------------------------------------------------------------------- Summary of changes: src/backend/main/main.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |