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