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
|
3
|
4
(2) |
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
(3) |
14
|
15
|
16
|
17
|
18
(4) |
19
(1) |
20
|
21
|
22
|
23
|
24
|
25
|
26
(1) |
27
(2) |
28
(6) |
29
|
30
|
31
|
|
|
|
|
|
|
From: Pavan D. <pa...@us...> - 2010-10-27 10:48:12
|
Project "Postgres-XC". The branch, PGXC-sqlmed has been updated via eb50a76cb929fbe4a31d093b43e1589382c892a0 (commit) from 69bb66c62f71b9be918475ea65931adb3bbfba20 (commit) - Log ----------------------------------------------------------------- commit eb50a76cb929fbe4a31d093b43e1589382c892a0 Author: Pavan Deolasee <pav...@gm...> Date: Wed Oct 27 16:09:28 2010 +0530 Set remote relation stats (pages, rows etc) to a lower value so that NestLoop joins are preferred over other join types. This is necessary until we can handle other join types for remote join reduction diff --git a/src/backend/optimizer/util/relnode.c b/src/backend/optimizer/util/relnode.c index 957a515..b1c8bcb 100644 --- a/src/backend/optimizer/util/relnode.c +++ b/src/backend/optimizer/util/relnode.c @@ -102,6 +102,20 @@ build_simple_rel(PlannerInfo *root, int relid, RelOptKind reloptkind) case RTE_RELATION: /* Table --- retrieve statistics from the system catalogs */ get_relation_info(root, rte->relid, rte->inh, rel); +#ifdef PGXC + /* + * This is a remote table... we have no idea how many pages/rows + * we may get from a scan of this table. However, we should set the + * costs in such a manner that cheapest paths should pick up the + * ones involving these remote rels + * + * These allow for maximum query shipping to the remote + * side later during the planning phase + */ + rel->pages = 1; + rel->tuples = 1; + rel->rows = 1; +#endif break; case RTE_SUBQUERY: case RTE_FUNCTION: ----------------------------------------------------------------------- Summary of changes: src/backend/optimizer/util/relnode.c | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) hooks/post-receive -- Postgres-XC |
From: Michael P. <mic...@us...> - 2010-10-27 00:07:14
|
Project "Postgres-XC". The branch, master has been updated via d7d492eaeca181add193b4705de58637f5ba7c58 (commit) from fee989010d22b6ca6c47b72d2d9b0620e4ab42b8 (commit) - Log ----------------------------------------------------------------- commit d7d492eaeca181add193b4705de58637f5ba7c58 Author: Michael P <mic...@us...> Date: Wed Oct 27 09:06:15 2010 +0900 Deletion of a DEBUG message in postmaster.c When opening a child under postmaster, there was always a message written in log telling about the PID number. This was written for bug pruposes only. diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 56974b0..0add0e6 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -3181,10 +3181,6 @@ BackendStartup(Port *port) pid = fork_process(); if (pid == 0) /* child */ { - //// FOR DEBUG - printf("The session started: %d\n", getpid()); - //sleep(60); - //// FOR DEBUG free(bn); /* ----------------------------------------------------------------------- Summary of changes: src/backend/postmaster/postmaster.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) hooks/post-receive -- Postgres-XC |