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
(1) |
3
(1) |
4
(1) |
5
|
6
(1) |
7
|
8
|
9
|
10
|
11
(2) |
12
|
13
(6) |
14
(4) |
15
(2) |
16
|
17
(4) |
18
|
19
|
20
(1) |
21
(1) |
22
(6) |
23
(4) |
24
(3) |
25
|
26
|
27
(1) |
28
(4) |
29
(2) |
30
|
31
|
|
From: Michael P. <mic...@us...> - 2012-08-11 06:25:13
|
Project "Postgres-XC". The branch, master has been updated via 157c4f51214d94abea4f9f7342aa9a8e6d2db776 (commit) from 8de999e83155cac69ace5a87e3e02f68e69711ea (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=157c4f51214d94abea4f9f7342aa9a8e6d2db776 commit 157c4f51214d94abea4f9f7342aa9a8e6d2db776 Author: Michael Paquier <mi...@ot...> Date: Sat Aug 11 14:58:01 2012 +0900 Fix for bug 3556031: pgadmin3 connection error pgadmin3 parses the output of "SELECT version();" to determine the server version it is connecting to. For Postgres-XC, this output result was changed and completed with Postgres-XC and PostgreSQL version. pgadmin thought that the version of server was the one of XC, meaning 1.0 for 1.0 stable and 1.1 for master branch. In consequence to that, SQL queries with very old catalog were run to server, and of course errors were reported to client, and pgadmin cannot work correctly. This is solved with changing back version() to its former output. An additional function pgxc_function() is added to provide a way for application to inform about Postgres-XC version and the PostgreSQL version it is based on. Change is backpatched to all supported versions. M configure M doc-xc/src/sgml/func.sgmlin M src/backend/utils/adt/version.c M src/include/catalog/pg_proc.h M src/include/pg_config.h.in M src/include/pg_config.h.win32 M src/include/utils/builtins.h ----------------------------------------------------------------------- Summary of changes: configure | 6 +++++- doc-xc/src/sgml/func.sgmlin | 9 ++++++--- src/backend/utils/adt/version.c | 8 ++++++++ src/include/catalog/pg_proc.h | 4 ++++ src/include/pg_config.h.in | 3 +++ src/include/pg_config.h.win32 | 3 +++ src/include/utils/builtins.h | 3 +++ 7 files changed, 32 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-08-11 06:25:07
|
Project "Postgres-XC". The branch, REL1_0_STABLE has been updated via 031680bb2d43f7d242767e1aa364bd0d59fdad47 (commit) from bf509a6da86123b0ee9829f2f5cacbc1c974f622 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=031680bb2d43f7d242767e1aa364bd0d59fdad47 commit 157c4f51214d94abea4f9f7342aa9a8e6d2db776 Author: Michael Paquier <mi...@ot...> Date: Sat Aug 11 14:58:01 2012 +0900 Fix for bug 3556031: pgadmin3 connection error pgadmin3 parses the output of "SELECT version();" to determine the server version it is connecting to. For Postgres-XC, this output result was changed and completed with Postgres-XC and PostgreSQL version. pgadmin thought that the version of server was the one of XC, meaning 1.0 for 1.0 stable and 1.1 for master branch. In consequence to that, SQL queries with very old catalog were run to server, and of course errors were reported to client, and pgadmin cannot work correctly. This is solved with changing back version() to its former output. An additional function pgxc_function() is added to provide a way for application to inform about Postgres-XC version and the PostgreSQL version it is based on. Change is backpatched to all supported versions. M configure M doc-xc/src/sgml/func.sgmlin M src/backend/utils/adt/version.c M src/include/catalog/pg_proc.h M src/include/pg_config.h.in M src/include/pg_config.h.win32 M src/include/utils/builtins.h ----------------------------------------------------------------------- Summary of changes: configure | 6 +++++- doc-xc/src/sgml/func.sgmlin | 9 ++++++--- src/backend/utils/adt/version.c | 8 ++++++++ src/include/catalog/pg_proc.h | 4 ++++ src/include/pg_config.h.in | 3 +++ src/include/pg_config.h.win32 | 3 +++ src/include/utils/builtins.h | 3 +++ 7 files changed, 32 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |