pg_lsn should not be marked typispreferred.
In general it's not a good idea for built-in types in the 'U' category
to be marked preferred; they could draw behavior away from user-defined
types with similarly-named operators. pg_lsn is probably at low risk
of that right now given the lack of casts
Fix obsolete config-module-exclusion logic in vcregress.pl.
The recent addition of regression tests to uuid-ossp exposed the fact
that the MSVC build system wasn't being consistent about whether it was
building/testing that contrib module, ie, it would try to test the module
even when it hadn't bu
Propagate system identifier generation improvement into pg_resetxlog.
Commit 5035701e07e8bd395aa878465a102afd7b74e8c3 improved xlog.c's method
for creating a database system identifier, but I neglected to fix the
copy of that code appearing in pg_resetxlog.c. Spotted by Andres Freund.
Branch
---
doc: improve ssl_ecdh_curve descriptions
Patch by Marko Kreen
Branch
--
master
Details
---
http://git.postgresql.org/pg/commitdiff/49cf2cd815d61e1399fe46f9532347f09c3ed2f9
Modified Files
--
doc/src/sgml/config.sgml | 18 ++
doc/src/sgml/release-9.4.sgm
Support BSD and e2fsprogs UUID libraries alongside OSSP UUID library.
Allow the contrib/uuid-ossp extension to be built atop any one of these
three popular UUID libraries. (The extension's name is now arguably a
misnomer, but we'll keep it the same so as not to cause unnecessary
compatibility iss
Andres Freund writes:
> I just noticed that pg_resetxlog.c has a copy of the identifer
> generation algorithm that's not been adjusted by that commit.
Oh, I'd forgotten about that :-(. Thanks, will fix.
regards, tom lane
--
Sent via pgsql-committers mailing list (pgsq
Hi Tom,
On 2014-04-26 19:11:14 +, Tom Lane wrote:
> Improve generation algorithm for database system identifier.
>
> As noted some time ago, the original coding had a typo ("|" for "^")
> that made the result less unique than intended. Even the intended
> behavior is obsolete since it was ba