-
+
Release 9.0
Migration to Version 9.0
-
CURRENT AS OF 2010-05-12
+
CURRENT AS OF 2010-06-03
A dump/restore using
pg_dump is
-
+
+ Pass trusted SSL root certificate names to the client so the client
+ can return an appropriate client certificate (Craig Ringer)
+
+
+
For example, if a function is defined to take parameters a>
- and b>, it can be called with func(7 AS a, 12
- AS b)> or func(12 AS b, 7 AS a)>.
+ and b>, it can be called with func(a := 7, b
+ := 12)> or func(b := 12, a := 7)>.
+
+ Load SSL certificate chain (Tom Lane)
+
+
+ This improves handling of indirectly-signed SSL client
+ certificates.
+
+
+
+
+ Support long long> types on platforms that already have 64-bit
+ long>s (Michael Meskes))
+
+
+
C++> usage difficult in backend code, there are
still other complexities when using
C++> for backend
functions. extern "C" { }> is still necessary in
- appropriate places.
+ appropriate places (see ).