Release Date
2016-??-??
- Current as of 2016-06-18 (commit 100340e2d)
+ Current as of 2016-07-16 (commit 606ccc5e7)
Add pg_stat_wal_receiver>
Extend pg_start_backup()> and pg_stop_backup()>
Consider performing joins of foreign tables remotely only when the
- applicable user mappings match (Shigeru Hanada, Ashutosh Bapat)
+ tables will be accessed under the same role ID (Shigeru Hanada,
+ Ashutosh Bapat, Etsuro Fujita)
of security entirely up to individual foreign data wrappers, but it
would be easy for an FDW to inadvertently open up subtle security
holes that way. So, make it the core code's job to determine which
- user mapping OID is relevant, and don't attempt join pushdown unless
+ role ID will access each table, and don't attempt join pushdown unless
it's the same for all relevant relations.
+ Do not show the same subplan twice in EXPLAIN> output
+ (Tom Lane)
+
+
+ In certain cases, typically involving SubPlan nodes in index
+ conditions, EXPLAIN> would print data for the same
+ subplan twice.
+
+
+
+
+
Improve full-text search to support searching for phrases, that is,
lexemes appearing adjacent to each other in a specific order, or with
- at most a specified distance between them
+ a specified distance between them
(Teodor Sigaev, Oleg Bartunov, Dmitry Ivanov)
using the new operators <->> and
<N>>. The former means that
the lexemes before and after it must appear adjacent to each other in
- that order. The latter means they can be separated by up
- to N> other lexemes.
+ that order. The latter means they must be exactly N>
+ lexemes apart.
Extend PL/Python's error-reporting and message-reporting functions to
+
+
+ Make \df+> show function access privileges and
+ parallel-safety attributes (Michael Paquier)
+
+
+
2016-01-07 [c44d01383] Delay creation of subplan tlist until after create_plan(
2016-02-18 [19a541143] Add an explicit representation of the output targetlist
2016-03-07 [3fc6e2d7f] Make the upper part of the planner work by generating an
+2016-07-01 [5ce5e4a12] Set consider_parallel correctly for upper planner rels.
+2016-07-01 [9e703987a] Rethink the GetForeignUpperPaths API (again).
-->
Make the planner deal with post-scan/join query steps by generating
Support partial aggregation (David Rowley, Simon Riggs)
+
+
+ Provide a makefile target to build all generated headers (Michael
+ Paquier, Tom Lane)
+
+
+ submake-generated-headers> can now be invoked to ensure
+ that generated backend header files are up-to-date. This is useful in
+ subdirectories that might be built standalone>.
+
+
+
Add configuration parameter pg_trgm.similarity_threshold>
Add contrib/pg_visibility> module to allow examining