Release date:
-
2019-??-?? AS OF 2019-05-04
+
2019-??-?? AS OF 2019-05-09
-Previously, a normally-invisible OID column could be specified during table creation using WITH OIDS; that ability has been removed. Columns can still be explicitly
-specified as type OID. pg_dump and pg_upgrade operations on databases using WITH OIDS will need adjustment. Many system tables now have an 'oid' column that will be
-expanded with SELECT * by default.
+Previously, a normally-invisible OID column could be specified during table
+creation using WITH OIDS; that ability has been removed. Columns can
+still be explicitly specified as type OID. Operations on tables that
+have columns named 'oid' (created using WITH OIDS) will need adjustment.
+Many system tables now have an 'oid' column that will be expanded with
+SELECT * by default.
-recovery.conf is no longer used, and recovery.signal and standby.signal are used to switch into non-primary mode.
+recovery.conf is no longer used, and the server will not start if the
+file exists. recovery.signal and standby.signal are now used to switch into non-primary mode.
trigger_file has been renamed to promote_trigger_file. The standby_mode setting has been removed.
+
+
+
+Avoid performing unnecessary rounding of REAL and DOUBLE PRECISION values (Andrew Gierth)
+
+
+This dramatically speeds up processing of floating-point values, though
+trailing digits are display slightly differently. Users who wish to have output that is rounded can set
+extra_float_digits=0.
+
+
+
-
-Avoid performing unnecessary rounding of REAL and DOUBLE PRECISION values (Andrew Gierth)
-
-
-This dramatically speeds up processing of floating-point values. Users who wish to have output that is rounded can set extra_float_digits=0.
-
-
-
-
-
-
-Avoid creation of the free space map files for small table (John Naylor, Amit Kapila)
-
-
-Such files are not useful.
-
-
-
-Use pread() and pwrite() for random I/O (Thomas Munro)
+Use pread() and pwrite() for random I/O (Oskari Saarenmaa, Thomas Munro)
-Add CREATE TABLE option to prevent VACUUM from truncating trailing empty pages (Tsunakawa Takayuki)
+Add VACUUM and CREATE TABLE options to prevent VACUUM from truncating trailing empty pages (Tsunakawa Takayuki)
-This allows JSON values to be selected using an SQL-standard language.
+This allows execution of complex queries on JSON values using an SQL-standard language.
-->
-Add CREATE ACCESS METHOD command to create new table types (Haribabu Kommi, Andres Freund, Alvaro Herrera, Dimitri Golgov)
+Add CREATE ACCESS METHOD command to create new table types (Haribabu Kommi, Andres Freund, Alvaro Herrera, Dimitri Dolgov)
-->
-Specify a range of oids (9000-9999) to be used for external extensions (Andres Freund)
+Reserve a range of oids (9000-9999) to be used for external extensions (Andres Freund)
2018-12-04 [f8f6e4467] postgres_fdw: Improve cost and size estimation for aggre
Author: Etsuro Fujita
2019-01-24 [fd1afdbaf] postgres_fdw: Account for tlist eval costs in estimate_p
+Author: Etsuro Fujita
+2019-05-09 [edbcbe277] postgres_fdw: Fix cost estimation for aggregate pushdown
-->
-->
-Update unaccent rules with new new punctuation and symbols (Hugh Ranalli, Michael Paquier)
+Update unaccent rules with new punctuation and symbols (Hugh Ranalli, Michael Paquier)