Add support for compiling on
linkend="install-win32-full">64-bit
Windows> and running in 64-bit
- mode
+ mode.
- A dump/restore using
pg_dump is
- required for those wishing to migrate data from any previous
+ A dump/restore using
pg_dump
+ or use of
pg_upgrade is required
+ for those wishing to migrate data from any previous
release.
- Observe the following incompatibilities:
+ Version 9.0 contains a number of changes which selectively break backwards compatibility
+ in order to support new features and code quality improvements. Particularly, users
+ who make extensive use of PL/pgSQL and/or PITR and Warm Standby should test their
+ solutions for breakage. Observe the following incompatibilities:
linkend="guc-geqo-seed">geqo_seed to randomize
the starting value of the random plan generator.
+
+ This gives GEQO query response times and resource usage
+ repeatability and predictability.
+
+
name, which is displayed in
pg_stat_activity> (Dave Page)
+
+ This allows DBAs to characterize database traffic
+ and troubleshoot problems by source application.
+
in the new pg_db_role_setting> system table. A new
psql> \drds> command shows these settings.
Backwards-compatible system views do not show this information.
+ The primary use of this feature is setting schema
+ search_path.
+
+
Log changed parameter values when postgresql.conf> is
reloaded (Peter Eisentraut)
+
+ This lets DBAs and security staff to audit when database settings
+ were changed.
+
+
(Boszormenyi Zoltan)
+ For drivers which support this feature, this saves an entire
+ round-trip to the client, allowing result counts and pagination
+ to be calculated without a second COUNT query.
+
+
psql> does not display these counts.
Such operations either complete fully or are rolled back, so
WAL> archiving can be skipped, unless running in continuous
- archiving mode.
+ archiving mode. This reduces I/O overhead and improves performance.
PQescapeByteaConn()> now uses the hex format
for
PostgreSQL> 9.0 servers.
+
+ The new hex format will be directly compatible with more applications
+ which use binary data, allowing them to store and retrieve
+ it without conversion.
+
+
For example, this is now supported, array_agg(a ORDER BY
b)>. This is useful for aggregates where the order of values is
- significant.
+ significant, and eliminates the need to have a subquery for
+ the ordering.