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-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 |