[COMMITTERS] pgsql: Tag refs/tags/REL9_3_11 was created

2016-02-09 Thread pgsql
Tag refs/tags/REL9_3_11 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_4_6 was created

2016-02-09 Thread pgsql
Tag refs/tags/REL9_4_6 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_5_1 was created

2016-02-09 Thread pgsql
Tag refs/tags/REL9_5_1 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_1_20 was created

2016-02-09 Thread pgsql
Tag refs/tags/REL9_1_20 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_2_15 was created

2016-02-09 Thread pgsql
Tag refs/tags/REL9_2_15 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Add still more chattiness in server shutdown.

2016-02-09 Thread Tom Lane
Add still more chattiness in server shutdown. Further investigation says that there may be some slow operations after we've finished ShutdownXLOG(), so add some more log messages to try to isolate that. This is all temporary code too. Branch -- master Details --- http://git.postgresql.o

[COMMITTERS] pgsql: postgres_fdw: Remove unstable regression test.

2016-02-09 Thread Robert Haas
postgres_fdw: Remove unstable regression test. Per Tom Lane and the buildfarm. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/bb4df42e6a394ce77801b6952b6dc8b43d91fea7 Modified Files -- contrib/postgres_fdw/expected/postgres_fdw.out | 15 ---

Re: [COMMITTERS] pgsql: postgres_fdw: Push down joins to remote servers.

2016-02-09 Thread Tom Lane
Robert Haas writes: > postgres_fdw: Push down joins to remote servers. The buildfarm is not very impressed with this patch. regards, tom lane -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.po

[COMMITTERS] pgsql: postgres_fdw: Push down joins to remote servers.

2016-02-09 Thread Robert Haas
postgres_fdw: Push down joins to remote servers. If we've got a relatively straightforward join between two tables, this pushes that join down to the remote server instead of fetching the rows for each table and performing the join locally. Some cases are not handled yet, such as SEMI and ANTI jo

[COMMITTERS] pgsql: Add more chattiness in server shutdown.

2016-02-09 Thread Tom Lane
Add more chattiness in server shutdown. Early returns from the buildfarm show that there's a bit of a gap in the logging I added in 3971f64843b02e4a: the portion of CreateCheckPoint() after CheckPointGuts() can take a fair amount of time. Add a few more log messages in that section of code. This