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-15 08:05:33
|
Project "Postgres-XC". The branch, master has been updated via 280bf2c0a1d14116c85f6111df98d42040b36022 (commit) from 0c6ee90d69c9e34caf1829af090010508e0cf6c6 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=280bf2c0a1d14116c85f6111df98d42040b36022 commit 280bf2c0a1d14116c85f6111df98d42040b36022 Author: Michael Paquier <mi...@ot...> Date: Wed Aug 15 17:05:46 2012 +0900 Refactor pgbench code for XC and add documentation There is an additional mode in pgbench dedicated to Postgres-XC to help testing easily the write-scalability of the system tested. By using option -k at initialization, it is possible to force the tables to be hash-distributed by column bid. When launching a test, once again using -k allows to enforce write queries to use an additional condition on bid column to reduce the node selectivity inside transaction into a single node. This helps testind the write-scalability of the system by dividing write load based on a unique key, and reduces the effects of locks due to the update of pgbench_accounts. At the same time some old bugs are fixed. M contrib/pgbench/pgbench.c M doc-xc/src/sgml/pgbench.sgmlin ----------------------------------------------------------------------- Summary of changes: contrib/pgbench/pgbench.c | 79 ++++++++++++++++++++++++++++++---------- doc-xc/src/sgml/pgbench.sgmlin | 29 +++++++++++++++ 2 files changed, 88 insertions(+), 20 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2012-08-15 06:34:42
|
Project "Postgres-XC". The branch, master has been updated via 0c6ee90d69c9e34caf1829af090010508e0cf6c6 (commit) from fe9985c168d85738e5d88ed9407b840449f31b75 (commit) - Log ----------------------------------------------------------------- http://postgres-xc.git.sourceforge.net/git/gitweb.cgi?p=postgres-xc/postgres-xc;a=commitdiff;h=0c6ee90d69c9e34caf1829af090010508e0cf6c6 commit 0c6ee90d69c9e34caf1829af090010508e0cf6c6 Author: Michael Paquier <mi...@ot...> Date: Wed Aug 15 15:36:15 2012 +0900 Fix some warnings in code for compilation O2 Most of the warnings present in code are fixed, most of them being uninitialized variables. The remaining warnings need some deeper clean-up. M src/backend/access/transam/varsup.c M src/backend/access/transam/xact.c M src/backend/access/transam/xlog.c M src/backend/commands/sequence.c M src/backend/nodes/makefuncs.c M src/backend/optimizer/plan/createplan.c M src/backend/pgxc/locator/locator.c M src/backend/pgxc/locator/redistrib.c M src/backend/pgxc/nodemgr/nodemgr.c M src/backend/pgxc/plan/planner.c M src/backend/pgxc/pool/execRemote.c M src/backend/utils/adt/dbsize.c M src/gtm/client/fe-connect.c M src/gtm/common/gtm_lock.c M src/gtm/main/gtm_standby.c M src/gtm/proxy/proxy_main.c M src/include/gtm/pqexpbuffer.h M src/include/gtm/stringinfo.h M src/test/regress/pg_regress.c ----------------------------------------------------------------------- Summary of changes: src/backend/access/transam/varsup.c | 7 +++++-- src/backend/access/transam/xact.c | 2 +- src/backend/access/transam/xlog.c | 4 ++-- src/backend/commands/sequence.c | 2 +- src/backend/nodes/makefuncs.c | 1 + src/backend/optimizer/plan/createplan.c | 2 +- src/backend/pgxc/locator/locator.c | 2 +- src/backend/pgxc/locator/redistrib.c | 2 +- src/backend/pgxc/nodemgr/nodemgr.c | 3 +-- src/backend/pgxc/plan/planner.c | 5 +++-- src/backend/pgxc/pool/execRemote.c | 4 ++-- src/backend/utils/adt/dbsize.c | 2 +- src/gtm/client/fe-connect.c | 4 ++-- src/gtm/common/gtm_lock.c | 4 ++-- src/gtm/main/gtm_standby.c | 2 +- src/gtm/proxy/proxy_main.c | 3 +-- src/include/gtm/pqexpbuffer.h | 8 ++++++++ src/include/gtm/stringinfo.h | 4 +++- src/test/regress/pg_regress.c | 8 ++++++++ 19 files changed, 45 insertions(+), 24 deletions(-) hooks/post-receive -- Postgres-XC |