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

2015-12-16 Thread pgsql
Tag refs/tags/REL9_5_RC1 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: Cope with Readline's failure to track SIGWINCH events outside of

2015-12-16 Thread Tom Lane
Cope with Readline's failure to track SIGWINCH events outside of input. It emerges that libreadline doesn't notice terminal window size change events unless they occur while collecting input. This is easy to stumble over if you resize the window while using a pager to look at query output, but it

[COMMITTERS] pgsql: Cope with Readline's failure to track SIGWINCH events outside of

2015-12-16 Thread Tom Lane
Cope with Readline's failure to track SIGWINCH events outside of input. It emerges that libreadline doesn't notice terminal window size change events unless they occur while collecting input. This is easy to stumble over if you resize the window while using a pager to look at query output, but it

[COMMITTERS] pgsql: Cope with Readline's failure to track SIGWINCH events outside of

2015-12-16 Thread Tom Lane
Cope with Readline's failure to track SIGWINCH events outside of input. It emerges that libreadline doesn't notice terminal window size change events unless they occur while collecting input. This is easy to stumble over if you resize the window while using a pager to look at query output, but it

[COMMITTERS] pgsql: Cope with Readline's failure to track SIGWINCH events outside of

2015-12-16 Thread Tom Lane
Cope with Readline's failure to track SIGWINCH events outside of input. It emerges that libreadline doesn't notice terminal window size change events unless they occur while collecting input. This is easy to stumble over if you resize the window while using a pager to look at query output, but it

[COMMITTERS] pgsql: Cope with Readline's failure to track SIGWINCH events outside of

2015-12-16 Thread Tom Lane
Cope with Readline's failure to track SIGWINCH events outside of input. It emerges that libreadline doesn't notice terminal window size change events unless they occur while collecting input. This is easy to stumble over if you resize the window while using a pager to look at query output, but it

[COMMITTERS] pgsql: Cope with Readline's failure to track SIGWINCH events outside of

2015-12-16 Thread Tom Lane
Cope with Readline's failure to track SIGWINCH events outside of input. It emerges that libreadline doesn't notice terminal window size change events unless they occur while collecting input. This is easy to stumble over if you resize the window while using a pager to look at query output, but it

[COMMITTERS] pgsql: Speed up CREATE INDEX CONCURRENTLY's TID sort.

2015-12-16 Thread Robert Haas
Speed up CREATE INDEX CONCURRENTLY's TID sort. Encode TIDs as 64-bit integers to speed up comparisons. This seems to speed things up on all platforms, but is even more beneficial when 8-byte integers are passed by value. Peter Geoghegan. Design suggestions and review by Tom Lane. Review also b

[COMMITTERS] pgsql: Mark CHECK constraints declared NOT VALID valid if created with

2015-12-16 Thread Robert Haas
Mark CHECK constraints declared NOT VALID valid if created with table. FOREIGN KEY constraints have behaved this way for a long time, but for some reason the behavior of CHECK constraints has been inconsistent up until now. Amit Langote and Amul Sul, with assorted tweaks by me. Branch -- mas