[COMMITTERS] pgsql: Make XLogFileCopy() look the same as in 9.4.

2015-06-30 Thread Fujii Masao
Make XLogFileCopy() look the same as in 9.4. XLogFileCopy() was changed heavily in commit de76884. However it was partially reverted in commit 7abc685 and most of those changes to XLogFileCopy() were no longer needed. Then commit 7cbee7c removed those unnecessary code, but XLogFileCopy() looked

[COMMITTERS] pgsql: Make XLogFileCopy() look the same as in 9.4.

2015-06-30 Thread Fujii Masao
Make XLogFileCopy() look the same as in 9.4. XLogFileCopy() was changed heavily in commit de76884. However it was partially reverted in commit 7abc685 and most of those changes to XLogFileCopy() were no longer needed. Then commit 7cbee7c removed those unnecessary code, but XLogFileCopy() looked

[COMMITTERS] pgsql: Test -lrt for sched_yield

2015-06-30 Thread Alvaro Herrera
Test -lrt for sched_yield Apparently, this is needed in some Solaris versions. Author: Oskari Saarenmaa Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c538d736324767ef04b9ff9ee0056752a8c59e53 Modified Files -- configure| 88

[COMMITTERS] pgsql: Test -lrt for sched_yield

2015-06-30 Thread Alvaro Herrera
Test -lrt for sched_yield Apparently, this is needed in some Solaris versions. Author: Oskari Saarenmaa Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/a9f886f41d783795a0b35de4c9fc578c3ea41e75 Modified Files -- configure| 88

[COMMITTERS] pgsql: Test -lrt for sched_yield

2015-06-30 Thread Alvaro Herrera
Test -lrt for sched_yield Apparently, this is needed in some Solaris versions. Author: Oskari Saarenmaa Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/ab93f90cd3a4fcdd891cee9478941c3cc65795b8 Modified Files -- configure| 57

[COMMITTERS] pgsql: Stamp HEAD as 9.6devel.

2015-06-30 Thread Tom Lane
Stamp HEAD as 9.6devel. Let the hacking begin ... Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cf8d65de10ebd026f6534eeb275cae46d7bffb4f Modified Files -- configure| 18 +- configure.in |

[COMMITTERS] pgsql: Branch refs/heads/REL9_5_STABLE was created

2015-06-30 Thread pgsql
Branch refs/heads/REL9_5_STABLE was created. View: http://git.postgresql.org/pg/shortlog/refs/heads/REL9_5_STABLE -- 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_ALPHA1 was created

2015-06-30 Thread pgsql
Tag refs/tags/REL9_5_ALPHA1 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: Test -lrt for sched_yield

2015-06-30 Thread Alvaro Herrera
Test -lrt for sched_yield Apparently, this is needed in some Solaris versions. Author: Oskari Saarenmaa Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/pg/commitdiff/b185c42c16d84ed7cfd406d6822459bcfee766a8 Modified Files -- configure| 88

[COMMITTERS] pgsql: Test -lrt for sched_yield

2015-06-30 Thread Alvaro Herrera
Test -lrt for sched_yield Apparently, this is needed in some Solaris versions. Author: Oskari Saarenmaa Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c085e072ff247ad66ec9955c20d24556ab2a92f7 Modified Files -- configure| 88

[COMMITTERS] pgsql: Test -lrt for sched_yield

2015-06-30 Thread Alvaro Herrera
Test -lrt for sched_yield Apparently, this is needed in some Solaris versions. Author: Oskari Saarenmaa Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/ef704ec069fd97c41d91640558f70d37a04b6bd1 Modified Files -- configure| 57

[COMMITTERS] pgsql: Stamp shared-library minor version numbers for 9.6.

2015-06-30 Thread Tom Lane
Stamp shared-library minor version numbers for 9.6. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/019f7813da69da05484faa63b6a29a8df773d19b Modified Files -- src/interfaces/ecpg/compatlib/Makefile |2 +- src/interfaces/ecpg/ecpglib/Makefile|

[COMMITTERS] pgsql: Remove useless check for NULL subexpression.

2015-06-30 Thread Tom Lane
Remove useless check for NULL subexpression. Coverity rightly gripes that it's silly to have a test here when the adjacent ExecEvalExpr() would choke on a NULL expression pointer. Petr Jelinek Branch -- master Details ---

[COMMITTERS] pgsql: Improve 9.5 release notes.

2015-06-30 Thread Andres Freund
Improve 9.5 release notes. 1) Add sgml comments referencing commits. This is useful to search for missing items etc. The comments containing the commit notes are an excerpt from: git log --date=short \ --pretty='format:%cd [%h] %(8,trunc)%cN: %(48,trunc)%s%n%n%w(,4,4)%b%n' \

Re: [COMMITTERS] pgsql: Improve 9.5 release notes.

2015-06-30 Thread Peter Geoghegan
On Tue, Jun 30, 2015 at 12:00 PM, Andres Freund and...@anarazel.de wrote: Improve 9.5 release notes. Noticed a typo: compact and cheap to to update by -- Peter Geoghegan -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription:

[COMMITTERS] pgsql: Fix typo and omission in my earlier 9.5 release notes commit.

2015-06-30 Thread Andres Freund
Fix typo and omission in my earlier 9.5 release notes commit. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/1561b541fd43b492ed9fe1b5c907bd88f54d1053 Modified Files -- doc/src/sgml/release-9.5.sgml |4 ++-- 1 file changed, 2 insertions(+), 2

[COMMITTERS] pgsql: Don't call PageGetSpecialPointer() on page until it's been initi

2015-06-30 Thread Heikki Linnakangas
Don't call PageGetSpecialPointer() on page until it's been initialized. After calling XLogInitBufferForRedo(), the page might be all-zeros if it was not in page cache already. btree_xlog_unlink_page initialized the page correctly, but it called PageGetSpecialPointer before initializing it, which

[COMMITTERS] pgsql: Don't call PageGetSpecialPointer() on page until it's been initi

2015-06-30 Thread Heikki Linnakangas
Don't call PageGetSpecialPointer() on page until it's been initialized. After calling XLogInitBufferForRedo(), the page might be all-zeros if it was not in page cache already. btree_xlog_unlink_page initialized the page correctly, but it called PageGetSpecialPointer before initializing it, which

[COMMITTERS] pgsql: Add assertion to check the special size is sane before dereferen

2015-06-30 Thread Heikki Linnakangas
Add assertion to check the special size is sane before dereferencing it. This seems useful to catch errors of the sort I just fixed, where PageGetSpecialPointer is called before initializing the page. Branch -- master Details ---

[COMMITTERS] pgsql: Fix broken link in documentation.

2015-06-30 Thread Tom Lane
Fix broken link in documentation. HP's web server has apparently become case-sensitive sometime recently. Per bug #13479 from Daniel Abraham. Corrected link identified by Alvaro. Branch -- REL9_5_STABLE Details ---

[COMMITTERS] pgsql: Fix broken link in documentation.

2015-06-30 Thread Tom Lane
Fix broken link in documentation. HP's web server has apparently become case-sensitive sometime recently. Per bug #13479 from Daniel Abraham. Corrected link identified by Alvaro. Branch -- REL9_2_STABLE Details ---

[COMMITTERS] pgsql: Fix broken link in documentation.

2015-06-30 Thread Tom Lane
Fix broken link in documentation. HP's web server has apparently become case-sensitive sometime recently. Per bug #13479 from Daniel Abraham. Corrected link identified by Alvaro. Branch -- REL9_3_STABLE Details ---

[COMMITTERS] pgsql: Fix broken link in documentation.

2015-06-30 Thread Tom Lane
Fix broken link in documentation. HP's web server has apparently become case-sensitive sometime recently. Per bug #13479 from Daniel Abraham. Corrected link identified by Alvaro. Branch -- REL9_1_STABLE Details ---

[COMMITTERS] pgsql: Fix broken link in documentation.

2015-06-30 Thread Tom Lane
Fix broken link in documentation. HP's web server has apparently become case-sensitive sometime recently. Per bug #13479 from Daniel Abraham. Corrected link identified by Alvaro. Branch -- REL9_4_STABLE Details ---

[COMMITTERS] pgsql: Fix broken link in documentation.

2015-06-30 Thread Tom Lane
Fix broken link in documentation. HP's web server has apparently become case-sensitive sometime recently. Per bug #13479 from Daniel Abraham. Corrected link identified by Alvaro. Branch -- master Details ---

[COMMITTERS] pgsql: Fix broken link in documentation.

2015-06-30 Thread Tom Lane
Fix broken link in documentation. HP's web server has apparently become case-sensitive sometime recently. Per bug #13479 from Daniel Abraham. Corrected link identified by Alvaro. Branch -- REL9_0_STABLE Details ---