[COMMITTERS] pgsql: pg_lsn should not be marked typispreferred.

2014-05-27 Thread Tom Lane
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

[COMMITTERS] pgsql: Fix obsolete config-module-exclusion logic in vcregress.pl.

2014-05-27 Thread Tom Lane
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

[COMMITTERS] pgsql: Propagate system identifier generation improvement into pg_reset

2014-05-27 Thread Tom Lane
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 ---

[COMMITTERS] pgsql: doc: improve ssl_ecdh_curve descriptions

2014-05-27 Thread Bruce Momjian
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

[COMMITTERS] pgsql: Support BSD and e2fsprogs UUID libraries alongside OSSP UUID lib

2014-05-27 Thread Tom Lane
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

Re: [COMMITTERS] pgsql: Improve generation algorithm for database system identifier.

2014-05-27 Thread Tom Lane
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

Re: [COMMITTERS] pgsql: Improve generation algorithm for database system identifier.

2014-05-27 Thread Andres Freund
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