|
7 | 7 | <note> |
8 | 8 | <title>Release Date</title> |
9 | 9 | <simpara>2016-??-??</simpara> |
10 | | - <simpara>Current as of 2016-05-05 (commit 7a622b273)</simpara> |
| 10 | + <simpara>Current as of 2016-05-08 (commit 6f69b9639)</simpara> |
11 | 11 | </note> |
12 | 12 |
|
13 | 13 | <sect2> |
|
405 | 405 | <listitem> |
406 | 406 | <!-- |
407 | 407 | 2016-04-08 [848ef42bb] Add the "snapshot too old" feature |
| 408 | +2016-05-06 [2cc41acd8] Fix hash index vs "snapshot too old" problemms |
| 409 | +2016-05-06 [7e3da1c47] Mitigate "snapshot too old" performance regression on NU |
408 | 410 | --> |
409 | 411 | <para> |
410 | 412 | Allow old MVCC snapshots to be invalidated after a configurable |
|
430 | 432 | 2016-03-31 [f9aefcb91] Support using index-only scans with partial indexes in m |
431 | 433 | --> |
432 | 434 | <para> |
433 | | - Allow using an index-only scan with a partial index when the index's |
434 | | - predicate involves column(s) not stored in the index |
435 | | - (Tomas Vondra, Kyotaro Horiguchi) |
| 435 | + Allow using an <link linkend="indexes-index-only-scans">index-only |
| 436 | + scan</link> with a partial index when the index's predicate involves |
| 437 | + column(s) not stored in the index (Tomas Vondra, Kyotaro Horiguchi) |
436 | 438 | </para> |
437 | 439 |
|
438 | 440 | <para> |
439 | 441 | An index-only scan is now allowed if the query mentions such columns |
440 | | - only in <literal>WHERE</> clauses that match the index predicate (and |
441 | | - hence need not be rechecked at runtime). |
| 442 | + only in <literal>WHERE</> clauses that match the index predicate. |
442 | 443 | </para> |
443 | 444 | </listitem> |
444 | 445 |
|
|
762 | 763 | waiting for a heavyweight lock. Now waits for lightweight locks |
763 | 764 | and buffer pins are also shown in <structname>pg_stat_activity</>. |
764 | 765 | Also, the type of lock being waited for is now visible. |
| 766 | + These changes replace the <structfield>waiting</> column |
| 767 | + with <structfield>wait_event_type</> and <structfield>wait_event</>. |
765 | 768 | </para> |
766 | 769 | </listitem> |
767 | 770 |
|
|
782 | 785 | --> |
783 | 786 | <para> |
784 | 787 | Add <link linkend="view-pg-config"><structname>pg_config</></link> |
785 | | - system view to expose the same information available from |
786 | | - the <application>pg_config</> utility (Joe Conway) |
| 788 | + system view (Joe Conway) |
| 789 | + </para> |
| 790 | + |
| 791 | + <para> |
| 792 | + This view exposes the same information available from |
| 793 | + the <application>pg_config</> utility, namely assorted compile-time |
| 794 | + configuration information for <productname>PostgreSQL</>. |
787 | 795 | </para> |
788 | 796 | </listitem> |
789 | 797 |
|
@@ -1192,7 +1200,8 @@ XXX this is pending backpatch, may need to remove |
1192 | 1200 |
|
1193 | 1201 | <para> |
1194 | 1202 | The number of standby servers that must acknowledge a commit before |
1195 | | - it's considered done is now configurable. |
| 1203 | + it's considered done is now configurable as part of the |
| 1204 | + <xref linkend="guc-synchronous-standby-names"> parameter. |
1196 | 1205 | </para> |
1197 | 1206 | </listitem> |
1198 | 1207 |
|
@@ -1545,6 +1554,8 @@ XXX this is pending backpatch, may need to remove |
1545 | 1554 | <listitem> |
1546 | 1555 | <!-- |
1547 | 1556 | 2016-04-08 [293007898] Reserve the "pg_" namespace for roles |
| 1557 | +2016-05-06 [a89505fd2] Remove various special checks around default roles |
| 1558 | +2016-05-08 [7df974ee0] Disallow superuser names starting with 'pg_' in initdb |
1548 | 1559 | --> |
1549 | 1560 | <para> |
1550 | 1561 | Treat role names beginning with <literal>pg_</> as reserved |
@@ -1844,6 +1855,7 @@ XXX this is pending backpatch, may need to remove |
1844 | 1855 | <listitem> |
1845 | 1856 | <!-- |
1846 | 1857 | 2016-03-11 [6943a946c] Tsvector editing functions |
| 1858 | +2016-05-05 [0b9a23443] Rename tsvector delete() to ts_delete(), and filter() to |
1847 | 1859 | --> |
1848 | 1860 | <para> |
1849 | 1861 | Add new functions for <type>tsvector</> data (Stas Kelvich) |
@@ -2208,6 +2220,8 @@ This commit is also listed under psql and PL/pgSQL |
2208 | 2220 | 2016-04-06 [a9f0e8e5a] In pg_dump, use a bitmap to represent what to include |
2209 | 2221 | 2016-04-06 [d217b2c36] In pg_dump, split "dump" into "dump" and "dump_contains" |
2210 | 2222 | 2016-04-06 [23f34fa4b] In pg_dump, include pg_catalog and extension ACLs, if ch |
| 2223 | +2016-05-06 [5d589993c] pg_dump performance and other fixes |
| 2224 | +2016-05-06 [e1b120a8c] Only issue LOCK TABLE commands when necessary |
2211 | 2225 | --> |
2212 | 2226 | <para> |
2213 | 2227 | In <application>pg_dump</>, |
@@ -2305,6 +2319,7 @@ This commit is also listed under psql and PL/pgSQL |
2305 | 2319 | <listitem> |
2306 | 2320 | <!-- |
2307 | 2321 | 2015-07-03 [8eb6407aa] Add psql \ev and \sv commands for editing and showing vi |
| 2322 | +2016-05-06 [9b66aa006] Fix psql's \ev and \sv commands so that they handle view |
2308 | 2323 | --> |
2309 | 2324 | <para> |
2310 | 2325 | Add <literal>\ev</> and <literal>\sv</> commands |
@@ -2463,6 +2478,7 @@ This commit is also listed under libpq and PL/pgSQL |
2463 | 2478 | 2016-03-01 [7e137f846] Extend pgbench's expression syntax to support a few buil |
2464 | 2479 | 2016-03-28 [86c43f4e2] pgbench: Support double constants and functions. |
2465 | 2480 | 2016-05-05 [7a622b273] Rename pgbench min/max to least/greatest, and fix handli |
| 2481 | +2016-05-06 [951529948] Improve handling of numeric-valued variables in pgbench. |
2466 | 2482 | --> |
2467 | 2483 | <para> |
2468 | 2484 | Support floating-point arithmetic, as well as |
@@ -2668,10 +2684,11 @@ This commit is also listed under libpq and PL/pgSQL |
2668 | 2684 | 2016-03-03 [2c83f435a] Rework PostgresNode's psql method |
2669 | 2685 | 2016-02-26 [49148645f] Add a test framework for recovery |
2670 | 2686 | 2016-02-26 [74d58425c] Apply last revision of recovery patch |
| 2687 | +2016-05-06 [6bd356c33] Add TAP tests for pg_dump |
2671 | 2688 | --> |
2672 | 2689 | <para> |
2673 | 2690 | Improve TAP testing infrastructure |
2674 | | - (Michael Paquier, Craig Ringer, Álvaro Herrera) |
| 2691 | + (Michael Paquier, Craig Ringer, Álvaro Herrera, Stephen Frost) |
2675 | 2692 | </para> |
2676 | 2693 |
|
2677 | 2694 | <para> |
|
0 commit comments