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: Michael P. <mic...@us...> - 2012-04-25 09:02:13
|
Project "Postgres-XC". The branch, master has been updated via 6eeeaf7960b073f0976cc4b75f1d22476a7f6e3f (commit) from 02befd8a5a8fd3c74e5cb9c14b497ba5433f79a8 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6eeeaf7960b073f0976cc4b75f1d22476a7f6e3f commit 6eeeaf7960b073f0976cc4b75f1d22476a7f6e3f Author: Michael Paquier <mi...@ot...> Date: Wed Apr 25 18:01:07 2012 +0900 Fix for warning executable-not-elf-or-script related to debian packaging gtm.conf.sample and gtm_proxy.conf.sample were installed as binaries but they are simply configuration files. M src/gtm/Makefile ----------------------------------------------------------------------- Summary of changes: src/gtm/Makefile | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-25 01:49:05
|
Project "Postgres-XC". The branch, master has been updated via b4242db3f7f3e60ffccc07075c6e14c8bfecb77e (commit) from 63fceec5c5e21223c91a0ca94c7832ee2734a137 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b4242db3f7f3e60ffccc07075c6e14c8bfecb77e commit b4242db3f7f3e60ffccc07075c6e14c8bfecb77e Author: Abbas <abb...@en...> Date: Wed Apr 25 06:47:44 2012 +0500 Add a few missing ORDER BY in collate test case M src/test/regress/expected/collate_1.out M src/test/regress/sql/collate.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/collate_1.out | 16 ++++++++-------- src/test/regress/sql/collate.sql | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-24 13:46:14
|
Project "Postgres-XC". The branch, master has been updated via 63fceec5c5e21223c91a0ca94c7832ee2734a137 (commit) from a6bf59fc92023e20bc039fdcf0bf393d60025143 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=63fceec5c5e21223c91a0ca94c7832ee2734a137 commit 63fceec5c5e21223c91a0ca94c7832ee2734a137 Author: Abbas <abb...@en...> Date: Tue Apr 24 18:37:49 2012 +0500 Fix for constraints test case. The test case was failing for the following reasons 1. Partition column cannot be updated. Distributed the tables by replication to make sure the test case do test constraints. Added test test case name in feature request 3520518. 2. There was a problem in function pgxc_node_remote_prepare. The function was sending PREPARE TRANSACTION command to the data nodes and was checking the response from the data nodes. However it was ignoring the fact that the data nodes might have responded with ROLLBACK. Even if the data nodes responded with ROLLBACK, meaning that the transaction was not prepared, still the coordinator was under the impression it got prepared and was trying to commit it. To solve this problem we have added an option in the system to enable response checking in HandleCommandComplete. If response checking is enable then the system would compare the response with ROLLBACK and if found it would indicate that to the caller. The function pgxc_node_remote_prepare would then be able to know ROLLBACK was received in response to PREPARE TRANSACTION and would not issue a COMMIT. M src/backend/pgxc/pool/execRemote.c M src/include/pgxc/pgxcnode.h M src/test/regress/input/constraints.source M src/test/regress/output/constraints_1.source ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 38 ++++++- src/include/pgxc/pgxcnode.h | 28 +++++ src/test/regress/input/constraints.source | 12 +- src/test/regress/output/constraints_1.source | 157 ++++++++++--------------- 4 files changed, 131 insertions(+), 104 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-24 10:48:46
|
Project "Postgres-XC". The branch, master has been updated via a6bf59fc92023e20bc039fdcf0bf393d60025143 (commit) from ba13c73845855573c28d16fc4a4d5919b3e0946c (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a6bf59fc92023e20bc039fdcf0bf393d60025143 commit a6bf59fc92023e20bc039fdcf0bf393d60025143 Author: Michael Paquier <mi...@ot...> Date: Tue Apr 24 19:53:20 2012 +0900 Correct regression test tablespace Its output is generated depending on environment. R096 src/test/regress/expected/tablespace_1.out src/test/regress/output/tablespace_1.source ----------------------------------------------------------------------- Summary of changes: .../tablespace_1.source} | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) rename src/test/regress/{expected/tablespace_1.out => output/tablespace_1.source} (96%) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-24 10:45:21
|
Project "Postgres-XC". The branch, master has been updated via ba13c73845855573c28d16fc4a4d5919b3e0946c (commit) from f12afa86e544f581c7c6d7a0fdf02502c4a0aed9 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ba13c73845855573c28d16fc4a4d5919b3e0946c commit ba13c73845855573c28d16fc4a4d5919b3e0946c Author: Michael Paquier <mi...@ot...> Date: Tue Apr 24 19:48:41 2012 +0900 Fix standard remote DML plans using inherited tables Simple test cases like this one were not possible for 4 reasons: create table p1 (f1 int); create table c1 (f2 text, f3 int) inherits (p1); alter table p1 add column a1 int check (a1 > 0); alter table p1 add column f2 text; insert into p1 values (1,2,'abc'); insert into c1 values(11,'xyz',33,22); update p1 set a1 = a1 + 1, f2 = upper(f2); 1) When generating a remote DDL query, the parent relation name was used instead of the child name. 2) UPDATE and DELETE did not use ONLY when generating query, causing subtables to be deleted or updated twice. Well deletion is not so much a problem but UPDATE leaded to inconsistencies for stuff updated like "column = column + expression()" 3) Remote DDL executor was always using the parent plan, leading to inconsistencies in parameters pushed down 4) In query generated for remote UPDATE, the attribute number used was the one from target list. In case of parent it is correct, but not always for child tables. This commit fixes some issues in tests alter_table and plpgsql. M src/backend/executor/nodeModifyTable.c M src/backend/optimizer/plan/createplan.c M src/test/regress/expected/xc_FQS_join.out ----------------------------------------------------------------------- Summary of changes: src/backend/executor/nodeModifyTable.c | 15 +++++++---- src/backend/optimizer/plan/createplan.c | 37 +++++++++++++++++----------- src/test/regress/expected/xc_FQS_join.out | 8 +++--- 3 files changed, 35 insertions(+), 25 deletions(-) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-24 09:52:04
|
Project "Postgres-XC". The branch, master has been updated via f12afa86e544f581c7c6d7a0fdf02502c4a0aed9 (commit) via fcf60e947d785e0f2be79840e096cb18bcbd34b4 (commit) from a127a85b198ecfb37f4530a804781c0e15ff50d2 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=f12afa86e544f581c7c6d7a0fdf02502c4a0aed9 commit f12afa86e544f581c7c6d7a0fdf02502c4a0aed9 Author: Ashutosh Bapat <ash...@en...> Date: Tue Apr 24 15:18:31 2012 +0530 Updates using views or those involving inheritance may cause an error because the row marks for them are not available at the coordinator. These errors will not be fixed in this release. Hence add alternate output file rules_1.out to pass the regression. A src/test/regress/expected/rules_1.out http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=fcf60e947d785e0f2be79840e096cb18bcbd34b4 commit f12afa86e544f581c7c6d7a0fdf02502c4a0aed9 Author: Ashutosh Bapat <ash...@en...> Date: Tue Apr 24 15:18:31 2012 +0530 Updates using views or those involving inheritance may cause an error because the row marks for them are not available at the coordinator. These errors will not be fixed in this release. Hence add alternate output file rules_1.out to pass the regression. A src/test/regress/expected/rules_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/rules.out | 27 ++++++------ .../regress/expected/{rules.out => rules_1.out} | 43 +++++++++++-------- src/test/regress/serial_schedule | 1 - src/test/regress/sql/rules.sql | 24 +++++----- 4 files changed, 51 insertions(+), 44 deletions(-) copy src/test/regress/expected/{rules.out => rules_1.out} (98%) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-24 07:16:56
|
Project "Postgres-XC". The branch, master has been updated via a127a85b198ecfb37f4530a804781c0e15ff50d2 (commit) from 81d571c54c11d946aa67fea2804dadf654432d01 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a127a85b198ecfb37f4530a804781c0e15ff50d2 commit a127a85b198ecfb37f4530a804781c0e15ff50d2 Author: Ashutosh Bapat <ash...@en...> Date: Tue Apr 24 12:40:12 2012 +0530 Revert "Alternative regression output for test inherit" This reverts commit dfda23e7547f457e15d79054f81d30e826faeecf, which added the queries which used 'table name'::regclass instead of tablename.tableoid. These two things are not the same and hence the new set of queries added does not server the same purpose as old queries. Hence reverting the commit. Conflicts: src/test/regress/expected/inherit_1.out D src/test/regress/expected/inherit_1.out M src/test/regress/sql/inherit.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/inherit_1.out | 1355 ------------------------------- src/test/regress/sql/inherit.sql | 45 - 2 files changed, 0 insertions(+), 1400 deletions(-) delete mode 100644 src/test/regress/expected/inherit_1.out hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-24 06:10:36
|
Project "Postgres-XC". The branch, master has been updated via 81d571c54c11d946aa67fea2804dadf654432d01 (commit) from 2cd592680ce90e91776f1452d277af888670d71a (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=81d571c54c11d946aa67fea2804dadf654432d01 commit 81d571c54c11d946aa67fea2804dadf654432d01 Author: Amit Khandekar <ami...@en...> Date: Tue Apr 24 11:36:28 2012 +0530 Block create-table-as-execute syntax because we do not support this yet. And add prepare_1.out and wthout_oid_1.out to accommodate the diffs caused by this feature restriction. without_1.out also has another diff accommodated : SELECT min(relpages) < max(relpages), min(reltuples) - max(reltuples) FROM pg_class The relpages in XC does not reflect the data stored in datanodes. So it is always 0. So min(relpages) < max(relpages) returns false in XC, whereas it returns true in PG. There's nothing much we can do about it. So added this diff in without_1.out. M src/backend/parser/gram.y A src/test/regress/expected/prepare_1.out A src/test/regress/expected/tablespace_1.out A src/test/regress/expected/without_oid_1.out ----------------------------------------------------------------------- Summary of changes: src/backend/parser/gram.y | 5 ++++ .../expected/{prepare.out => prepare_1.out} | 24 +++---------------- .../tablespace_1.out} | 13 +++++----- .../{without_oid.out => without_oid_1.out} | 18 ++++++++------ 4 files changed, 25 insertions(+), 35 deletions(-) copy src/test/regress/expected/{prepare.out => prepare_1.out} (78%) copy src/test/regress/{output/tablespace.source => expected/tablespace_1.out} (92%) copy src/test/regress/expected/{without_oid.out => without_oid_1.out} (88%) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-24 05:51:55
|
Project "Postgres-XC". The branch, master has been updated via 2cd592680ce90e91776f1452d277af888670d71a (commit) from 06928f2a3493248f6b6564a010c6304bd75cb41d (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2cd592680ce90e91776f1452d277af888670d71a commit 2cd592680ce90e91776f1452d277af888670d71a Author: Michael Paquier <mi...@ot...> Date: Tue Apr 24 14:45:18 2012 +0900 Fix crash in remote UPDATE planning due to a list moving to next element with lnext in foreach loop. This was not spotted by regressions. M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-24 04:23:28
|
Project "Postgres-XC". The branch, master has been updated via 06928f2a3493248f6b6564a010c6304bd75cb41d (commit) from cea3d90164373a4b86018563390ec9c024f2f972 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=06928f2a3493248f6b6564a010c6304bd75cb41d commit 06928f2a3493248f6b6564a010c6304bd75cb41d Author: Amit Khandekar <ami...@en...> Date: Tue Apr 24 09:52:31 2012 +0530 While generating create-table query for CTAS, include all reloptions as well. The issue was, when WITH OIDS exists in create-table-as-select type of stmt, the oids are not created on datanodes. This happens because the deparsed create-table query generated for datanodes does not include WITH OIDS. So this fix generates all reloptions that are supplied by the user into the deparsed query. M src/backend/utils/adt/ruleutils.c ----------------------------------------------------------------------- Summary of changes: src/backend/utils/adt/ruleutils.c | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-24 04:21:59
|
Project "Postgres-XC". The branch, master has been updated via cea3d90164373a4b86018563390ec9c024f2f972 (commit) from 15e875d0d72a5d8a378e6d7cdf1266c8f6453c28 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=cea3d90164373a4b86018563390ec9c024f2f972 commit cea3d90164373a4b86018563390ec9c024f2f972 Author: Amit Khandekar <ami...@en...> Date: Tue Apr 24 09:50:57 2012 +0530 pg_regress: with.sql : 1. In WITH statements, the RETURNING clause *inside* WITH clause did not get identified as having RETURNING clause in the main query, these statements produce unexpected results instead of erroring out. So, added "RETURNING not supported" restriction in addRangeTableEntryForCTE(). 2. Addeded ORDER BY clauses in the plain select statements in the with.sql. 3. Adjusted expected file to accommodate above changes. M src/backend/parser/parse_relation.c M src/test/regress/expected/with.out M src/test/regress/sql/with.sql ----------------------------------------------------------------------- Summary of changes: src/backend/parser/parse_relation.c | 7 + src/test/regress/expected/with.out | 656 ++++++++++------------------------- src/test/regress/sql/with.sql | 46 ++-- 3 files changed, 207 insertions(+), 502 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-24 04:18:25
|
Project "Postgres-XC". The branch, master has been updated via 15e875d0d72a5d8a378e6d7cdf1266c8f6453c28 (commit) from 739e32b0097cc63bb3c066c0daf08150a916b5c7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=15e875d0d72a5d8a378e6d7cdf1266c8f6453c28 commit 15e875d0d72a5d8a378e6d7cdf1266c8f6453c28 Author: Michael Paquier <mi...@ot...> Date: Tue Apr 24 13:21:42 2012 +0900 Fix for remote UPDATE planning with inherited relations This fix permits adds an additional scan on RowMarks regarding entries whose parent target entry is different than the child one. With this fix, the test case rules in now bug-free. M src/backend/optimizer/plan/createplan.c ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 28 +++++++++++++++++++--------- 1 files changed, 19 insertions(+), 9 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-24 00:58:36
|
Project "Postgres-XC". The branch, master has been updated via 739e32b0097cc63bb3c066c0daf08150a916b5c7 (commit) from eedafabec0a0ca8700c2f6b6d07e0648d1815531 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=739e32b0097cc63bb3c066c0daf08150a916b5c7 commit 739e32b0097cc63bb3c066c0daf08150a916b5c7 Author: Michael Paquier <mi...@ot...> Date: Tue Apr 24 10:01:08 2012 +0900 Support for TAB completion with XC queries in psql The new commands recognized are CREATE/ALTER/DROP NODE/NODE GROUP, CLEAN CONNECTION, EXECUTE DIRECT. Patch by Koichi Suzuki M src/bin/psql/tab-complete.c ----------------------------------------------------------------------- Summary of changes: src/bin/psql/tab-complete.c | 203 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 203 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-23 08:23:55
|
Project "Postgres-XC". The branch, master has been updated via b0a013d46f52f78d5ca66825bd87517522df4277 (commit) from a6e99adc71ec5571edc4bc831112e30960d5a22d (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=b0a013d46f52f78d5ca66825bd87517522df4277 commit b0a013d46f52f78d5ca66825bd87517522df4277 Author: Michael Paquier <mi...@ot...> Date: Mon Apr 23 17:25:58 2012 +0900 Remove additional output for test arrays The distribution type of table used to check indexes on arrays is changed to replication. Normally, a table with no supported distribution types uses round robin as distribution but in the case of a constraint being specified, round robin cannot be safely used to check constraints on remote nodes and hash is enforced. Related to feature request 3520520, this distribution type should be changed to its initial value once global constraints are supported in XC. M src/test/regress/expected/arrays.out D src/test/regress/expected/arrays_1.out M src/test/regress/sql/arrays.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/arrays.out | 7 +- src/test/regress/expected/arrays_1.out | 1578 -------------------------------- src/test/regress/sql/arrays.sql | 7 +- 3 files changed, 12 insertions(+), 1580 deletions(-) delete mode 100644 src/test/regress/expected/arrays_1.out hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-23 07:54:03
|
Project "Postgres-XC". The branch, master has been updated via a6e99adc71ec5571edc4bc831112e30960d5a22d (commit) from 68c4856640cea27102c2ac27085db291ed38d7e4 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a6e99adc71ec5571edc4bc831112e30960d5a22d commit a6e99adc71ec5571edc4bc831112e30960d5a22d Author: Michael Paquier <mi...@ot...> Date: Mon Apr 23 16:55:06 2012 +0900 Fix for regression test privileges Related to issue 3520503, this test is failing because remote join query scan in XC needs to more columns than necessary, sometimes including columns to which users might not have access. Reducing the target list on remote query scan is not that easy, so for the time being this regression test is updated by being aware of this issue. 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 | 36 ++++++++++----------------- src/test/regress/sql/privileges.sql | 13 ++++++---- 2 files changed, 21 insertions(+), 28 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-23 07:05:04
|
Project "Postgres-XC". The branch, master has been updated via 68c4856640cea27102c2ac27085db291ed38d7e4 (commit) from 8184d17849ad8fdfcfd569311384c80eb32cebd7 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=68c4856640cea27102c2ac27085db291ed38d7e4 commit 68c4856640cea27102c2ac27085db291ed38d7e4 Author: Michael Paquier <mi...@ot...> Date: Mon Apr 23 16:07:45 2012 +0900 Fix for regression test misc Test is corrected and realigned with PostgreSQL test. M src/test/regress/input/misc.source M src/test/regress/output/misc.source A src/test/regress/output/misc_1.source ----------------------------------------------------------------------- Summary of changes: src/test/regress/input/misc.source | 4 +- src/test/regress/output/misc.source | 4 +- .../regress/output/{misc.source => misc_1.source} | 36 +++++++++----------- 3 files changed, 20 insertions(+), 24 deletions(-) copy src/test/regress/output/{misc.source => misc_1.source} (98%) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-23 06:27:58
|
Project "Postgres-XC". The branch, master has been updated via 8184d17849ad8fdfcfd569311384c80eb32cebd7 (commit) via da7b8cdb99db658c0df80490f08e1d77fa139204 (commit) from 77087e3504f35308c7fd0d53c2a21dbaefd5e8a6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8184d17849ad8fdfcfd569311384c80eb32cebd7 commit 8184d17849ad8fdfcfd569311384c80eb32cebd7 Author: Ashutosh Bapat <ash...@en...> Date: Mon Apr 23 11:55:56 2012 +0530 The rules are applied on coordinator and hence are not needed to be available on the datanodes. Do not ship any utilities on rules to datanodes. M src/backend/tcop/utility.c http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=da7b8cdb99db658c0df80490f08e1d77fa139204 commit 8184d17849ad8fdfcfd569311384c80eb32cebd7 Author: Ashutosh Bapat <ash...@en...> Date: Mon Apr 23 11:55:56 2012 +0530 The rules are applied on coordinator and hence are not needed to be available on the datanodes. Do not ship any utilities on rules to datanodes. M src/backend/tcop/utility.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/plan/planner.c | 10 +++++- src/backend/tcop/utility.c | 56 +++++++++++++++++++++++++------------- 2 files changed, 45 insertions(+), 21 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-22 03:10:52
|
Project "Postgres-XC". The branch, master has been updated via 77087e3504f35308c7fd0d53c2a21dbaefd5e8a6 (commit) from 9da4c2ebb0a209c3589f28a3f00254ad4c5f10aa (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=77087e3504f35308c7fd0d53c2a21dbaefd5e8a6 commit 77087e3504f35308c7fd0d53c2a21dbaefd5e8a6 Author: Abbas <abb...@en...> Date: Sun Apr 22 08:07:44 2012 +0500 Fix for collate test case. The test case was failing because of 3 issues 1. CTAS was passing even if there is a clash in collation - bug ID 3519790 2. A few order by clauses were missing. 3. While adding a FK to a table, the column to reference in the PK table is optional. If it is not specified the system picks the PK column in the PK table automatically. This PK column will for sure be the column used to distribute the PK table. Hence the check to make sure that the column used while specifying pk column is the same as used to distribute it makes sense only when the user has specified it. The function checkLocalFKConstraints is therefore changed accordingly. M src/backend/parser/parse_utilcmd.c A src/test/regress/expected/collate_1.out M src/test/regress/expected/truncate_1.out M src/test/regress/sql/collate.sql ----------------------------------------------------------------------- Summary of changes: src/backend/parser/parse_utilcmd.c | 32 +++++++++++++------- .../expected/{collate.out => collate_1.out} | 18 +++++------ src/test/regress/expected/truncate_1.out | 11 +++---- src/test/regress/sql/collate.sql | 4 +- 4 files changed, 36 insertions(+), 29 deletions(-) copy src/test/regress/expected/{collate.out => collate_1.out} (96%) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-21 03:48:20
|
Project "Postgres-XC". The branch, master has been updated via 9da4c2ebb0a209c3589f28a3f00254ad4c5f10aa (commit) from 2e3a84e79e8c715fdc17fea31a0a6fb0f44c2f5e (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=9da4c2ebb0a209c3589f28a3f00254ad4c5f10aa commit 9da4c2ebb0a209c3589f28a3f00254ad4c5f10aa Author: Abbas <abb...@en...> Date: Sat Apr 21 08:36:54 2012 +0500 Enable FETCH statements in all queries involving FOR UPDATE in portals test case After the fix for FOR UPDATE these statements work fine now. M src/test/regress/expected/portals_1.out M src/test/regress/sql/portals.sql ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/portals_1.out | 48 +++++++++++++++++++++--------- src/test/regress/sql/portals.sql | 25 ++++++--------- 2 files changed, 43 insertions(+), 30 deletions(-) hooks/post-receive -- Postgres-XC |
From: Abbas B. <ga...@us...> - 2012-04-21 03:32:32
|
Project "Postgres-XC". The branch, master has been updated via 2e3a84e79e8c715fdc17fea31a0a6fb0f44c2f5e (commit) from 26550e3ff3853b49a51c404fa532084db140acda (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=2e3a84e79e8c715fdc17fea31a0a6fb0f44c2f5e commit 2e3a84e79e8c715fdc17fea31a0a6fb0f44c2f5e Author: Abbas <abb...@en...> Date: Sat Apr 21 08:28:58 2012 +0500 Fix for test case stats The test case was failing because of 2 problems 1. CTAS does not work for selects on views. This one is fixed by this commit. XC rewrites CTAS into CREATE TABLE and INSERT SELECT. The reason of failure was that function QueryRewriteCTAS was skipping re-writer step for the INSERT SELECT query. 2. XC shows wrong statistics. Added feature request 3519733 to track this. Changed expected output for now. M src/backend/rewrite/rewriteHandler.c M src/test/regress/expected/stats_1.out M src/test/regress/sql/stats.sql ----------------------------------------------------------------------- Summary of changes: src/backend/rewrite/rewriteHandler.c | 3 +-- src/test/regress/expected/stats_1.out | 29 ++++++++++++++++------------- src/test/regress/sql/stats.sql | 2 ++ 3 files changed, 19 insertions(+), 15 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-21 02:01:21
|
Project "Postgres-XC". The branch, master has been updated via 26550e3ff3853b49a51c404fa532084db140acda (commit) from 6d2fe633ba6791b5b41000e70d6ddd1b1b42091f (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=26550e3ff3853b49a51c404fa532084db140acda commit 26550e3ff3853b49a51c404fa532084db140acda Author: Michael Paquier <mi...@ot...> Date: Sat Apr 21 10:54:43 2012 +0900 Fix for regression test array and simplify remote planner xc_node_id has been introduced previously to insure that tuples fetched from remote nodes are identified consistently in cluster. UPDATE and DELETE remote planning has been simplified to use only xc_node_id and ctid in WHERE clauses generated to be sure to interact with the good tuple. This had consequences on arrays test where a check on a NULL array value was done with = operator where it should have been an operator like IS NULL or IS NOT NULL. Such an addition to WHERE clauses is unnecessary since xc_node_id has been implemented. M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/plan/planner.c A src/test/regress/expected/arrays_1.out M src/test/regress/expected/xc_FQS_join.out ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/plan/createplan.c | 100 ++++++++------------ src/backend/pgxc/plan/planner.c | 10 ++- .../regress/expected/{arrays.out => arrays_1.out} | 40 +++++--- src/test/regress/expected/xc_FQS_join.out | 24 +++--- 4 files changed, 86 insertions(+), 88 deletions(-) copy src/test/regress/expected/{arrays.out => arrays_1.out} (98%) hooks/post-receive -- Postgres-XC |
From: Ashutosh B. <ash...@us...> - 2012-04-20 06:09:21
|
Project "Postgres-XC". The branch, master has been updated via 6d2fe633ba6791b5b41000e70d6ddd1b1b42091f (commit) from a6123bce9ad2b1266f149cf9b516cc40fb8e7047 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=6d2fe633ba6791b5b41000e70d6ddd1b1b42091f commit 6d2fe633ba6791b5b41000e70d6ddd1b1b42091f Author: Ashutosh Bapat <ash...@en...> Date: Fri Apr 20 11:37:34 2012 +0530 Comments on rules on views should not be sent to datanodes, since views are not available on datanodes. M src/backend/commands/comment.c M src/backend/tcop/utility.c M src/include/commands/comment.h ----------------------------------------------------------------------- Summary of changes: src/backend/commands/comment.c | 37 --------------- src/backend/tcop/utility.c | 95 +++++++++++++++++++++++++++++++++------ src/include/commands/comment.h | 4 -- 3 files changed, 80 insertions(+), 56 deletions(-) hooks/post-receive -- Postgres-XC |
From: Amit K. <ami...@us...> - 2012-04-20 03:41:33
|
Project "Postgres-XC". The branch, master has been updated via a6123bce9ad2b1266f149cf9b516cc40fb8e7047 (commit) from c8039d89b42944f722d76c858b790e18201dfb98 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=a6123bce9ad2b1266f149cf9b516cc40fb8e7047 commit a6123bce9ad2b1266f149cf9b516cc40fb8e7047 Author: Amit Khandekar <ami...@en...> Date: Fri Apr 20 09:06:30 2012 +0530 Fixed regression expected output file rangefuncs_1.out so as to make the rangefuncs.sql test pass. The diffs were due to "RETURNING not supported" errors. Checked that test scenarios were specifically testing the combination of range functions that return rows returned by INSERT..RETURNING. Since we don't support yet RETURNING yet, there isn't much we can do other than just adjust the expected out file to accommodate these diffs. No other feature testing is masked because of these errors. M src/test/regress/expected/rangefuncs_1.out ----------------------------------------------------------------------- Summary of changes: src/test/regress/expected/rangefuncs_1.out | 178 +++++++--------------------- 1 files changed, 43 insertions(+), 135 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-20 00:30:30
|
Project "Postgres-XC". The branch, master has been updated via c8039d89b42944f722d76c858b790e18201dfb98 (commit) from 8d8c58f7265d7fc6e51671a20500a7ea12a9a64e (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=c8039d89b42944f722d76c858b790e18201dfb98 commit c8039d89b42944f722d76c858b790e18201dfb98 Author: Michael P <mi...@ot...> Date: Fri Apr 20 09:33:19 2012 +0900 Remove warning message in gtm_snap.c A boolean used only on GTM Proxy was stored on GTM side also even if it was not used at all, so consume the byte and bypass its save. M src/gtm/main/gtm_snap.c ----------------------------------------------------------------------- Summary of changes: src/gtm/main/gtm_snap.c | 12 +++++------- 1 files changed, 5 insertions(+), 7 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-04-19 07:00:39
|
Project "Postgres-XC". The branch, master has been updated via 8d8c58f7265d7fc6e51671a20500a7ea12a9a64e (commit) from 579474806dbda204eea2d6c634b533471970e0be (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=8d8c58f7265d7fc6e51671a20500a7ea12a9a64e commit 8d8c58f7265d7fc6e51671a20500a7ea12a9a64e Author: Michael P <mi...@ot...> Date: Thu Apr 19 16:02:33 2012 +0900 Fix a couple of warnings in XC code Those issues were related to variables set but never in use. Warnings have been found in GTM, pooler and remote executor code. M src/backend/pgxc/pool/execRemote.c M src/backend/pgxc/pool/poolutils.c M src/gtm/main/gtm_txn.c M src/gtm/proxy/proxy_main.c M src/gtm/recovery/standby_utils.c ----------------------------------------------------------------------- Summary of changes: src/backend/pgxc/pool/execRemote.c | 70 ++++++++---------------------------- src/backend/pgxc/pool/poolutils.c | 7 ---- src/gtm/main/gtm_txn.c | 15 ++++---- src/gtm/proxy/proxy_main.c | 3 -- src/gtm/recovery/standby_utils.c | 2 +- 5 files changed, 23 insertions(+), 74 deletions(-) hooks/post-receive -- Postgres-XC |