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
|
4
(1) |
5
(3) |
6
(2) |
7
|
8
|
9
|
10
(1) |
11
|
12
(8) |
13
(2) |
14
|
15
|
16
(6) |
17
(1) |
18
(1) |
19
(2) |
20
(1) |
21
|
22
|
23
|
24
(1) |
25
|
26
(4) |
27
|
28
|
29
|
30
(3) |
31
(1) |
|
|
|
|
From: Michael P. <mic...@us...> - 2012-01-24 07:36:38
|
Project "Postgres-XC". The branch, master has been updated via ba5f1a0be3b0688bf2a1d04eaddf714ce0e0ae50 (commit) from 8985fe5209bf8270fed7894b8efb6dc737f0e699 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=ba5f1a0be3b0688bf2a1d04eaddf714ce0e0ae50 commit ba5f1a0be3b0688bf2a1d04eaddf714ce0e0ae50 Author: Michael P <mi...@ot...> Date: Tue Jan 24 16:36:53 2012 +0900 Support for TABLESPACE TABLESPACE are re-enabled without having any modifications in its grammar. A user defining a location for tablespace needs to be sure that this location exists on all the nodes of the cluster. A suffix with node name is added on the PG_XXX folder created in tablespace to support tablespace in case several nodes are running on the same node. New tablespace folder format is PG_XXX_NodeName. As node name is unique and constant in the cluster, this insures that no conflict will appear at the creation level. For the time begin, DBA has no way to refine location of tablespace for a single node level but this will be added later with extra support of CREATE/DROP TABLESPACE through EXECUTE DIRECT. M doc-xc/src/sgml/ref/create_tablespace.sgmlin M src/backend/catalog/catalog.c M src/backend/commands/tablespace.c M src/backend/pgxc/nodemgr/nodemgr.c M src/backend/storage/file/fd.c M src/backend/storage/file/reinit.c M src/backend/tcop/utility.c M src/backend/utils/adt/dbsize.c M src/backend/utils/adt/misc.c M src/backend/utils/cache/relcache.c M src/include/pgxc/nodemgr.h D src/test/regress/output/tablespace_1.source ----------------------------------------------------------------------- Summary of changes: doc-xc/src/sgml/ref/create_tablespace.sgmlin | 6 +- src/backend/catalog/catalog.c | 47 +++++++++++++ src/backend/commands/tablespace.c | 38 +++++++++++ src/backend/pgxc/nodemgr/nodemgr.c | 7 ++ src/backend/storage/file/fd.c | 24 ++++++- src/backend/storage/file/reinit.c | 9 +++ src/backend/tcop/utility.c | 18 ++++-- src/backend/utils/adt/dbsize.c | 12 ++++ src/backend/utils/adt/misc.c | 16 +++++ src/backend/utils/cache/relcache.c | 6 ++ src/include/pgxc/nodemgr.h | 2 + src/test/regress/output/tablespace_1.source | 92 -------------------------- 12 files changed, 174 insertions(+), 103 deletions(-) delete mode 100644 src/test/regress/output/tablespace_1.source hooks/post-receive -- Postgres-XC |