[COMMITTERS] pgsql: Fix performance regression in dblink connection speed.

2013-12-07 Thread Joe Conway
Fix performance regression in dblink connection speed. Previous commit e5de601267d98c5d60df6de8d436685c7105d149 modified dblink to ensure client encoding matched the server. However the added PQsetClientEncoding() call added significant overhead. Restore original performance in the common case whe

[COMMITTERS] pgsql: Fix performance regression in dblink connection speed.

2013-12-07 Thread Joe Conway
Fix performance regression in dblink connection speed. Previous commit e5de601267d98c5d60df6de8d436685c7105d149 modified dblink to ensure client encoding matched the server. However the added PQsetClientEncoding() call added significant overhead. Restore original performance in the common case whe

[COMMITTERS] pgsql: Fix performance regression in dblink connection speed.

2013-12-07 Thread Joe Conway
Fix performance regression in dblink connection speed. Previous commit e5de601267d98c5d60df6de8d436685c7105d149 modified dblink to ensure client encoding matched the server. However the added PQsetClientEncoding() call added significant overhead. Restore original performance in the common case whe

[COMMITTERS] pgsql: Fix performance regression in dblink connection speed.

2013-12-07 Thread Joe Conway
Fix performance regression in dblink connection speed. Previous commit e5de601267d98c5d60df6de8d436685c7105d149 modified dblink to ensure client encoding matched the server. However the added PQsetClientEncoding() call added significant overhead. Restore original performance in the common case whe

[COMMITTERS] pgsql: Fix performance regression in dblink connection speed.

2013-12-07 Thread Joe Conway
Fix performance regression in dblink connection speed. Previous commit e5de601267d98c5d60df6de8d436685c7105d149 modified dblink to ensure client encoding matched the server. However the added PQsetClientEncoding() call added significant overhead. Restore original performance in the common case whe

[COMMITTERS] pgsql: Fix performance regression in dblink connection speed.

2013-12-07 Thread Joe Conway
Fix performance regression in dblink connection speed. Previous commit e5de601267d98c5d60df6de8d436685c7105d149 modified dblink to ensure client encoding matched the server. However the added PQsetClientEncoding() call added significant overhead. Restore original performance in the common case whe

[COMMITTERS] pgsql: Fix a couple of typos

2013-12-07 Thread Magnus Hagander
Fix a couple of typos Noted by Peter Geoghegan Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/54aa5ef7f2dbe979843daf0c7a0d98f6709da4e6 Modified Files -- doc/src/sgml/pgstatstatements.sgml |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -

Re: [COMMITTERS] pgsql: Expose qurey ID in pg_stat_statements view.

2013-12-07 Thread Magnus Hagander
Fixed. It was three.. //Magnus On Sat, Dec 7, 2013 at 10:27 PM, Peter Geoghegan wrote: > I see now that references to "queryid" in the documentation say > "querid" in one or two places. Whoops. > > -- > Peter Geoghegan > > > -- > Sent via pgsql-committers mailing list (pgsql-committers@postgre

Re: [COMMITTERS] pgsql: Expose qurey ID in pg_stat_statements view.

2013-12-07 Thread Peter Geoghegan
I see now that references to "queryid" in the documentation say "querid" in one or two places. Whoops. -- Peter Geoghegan -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: SSL: Support ECDH key exchange

2013-12-07 Thread Peter Eisentraut
SSL: Support ECDH key exchange This sets up ECDH key exchange, when compiling against OpenSSL that supports EC. Then the ECDHE-RSA and ECDHE-ECDSA cipher suites can be used for SSL connections. The latter one means that EC keys are now usable. The reason for EC key exchange is that it's faster

[COMMITTERS] pgsql: Expose qurey ID in pg_stat_statements view.

2013-12-07 Thread Fujii Masao
Expose qurey ID in pg_stat_statements view. The query ID is the internal hash identifier of the statement, and was not available in pg_stat_statements view so far. Daniel Farina, Sameer Thakur and Peter Geoghegan, reviewed by me. Branch -- master Details --- http://git.postgresql.org/pg

[COMMITTERS] pgsql: SSL: Add configuration option to prefer server cipher order

2013-12-07 Thread Peter Eisentraut
SSL: Add configuration option to prefer server cipher order By default, OpenSSL (and SSL/TLS in general) lets the client cipher order take priority. This is OK for browsers where the ciphers were tuned, but few PostgreSQL client libraries make the cipher order configurable. So it makes sense to