mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-24 18:55:04 +08:00
Fix performance regression in dblink connection speed.
Previous commit e5de601267
modified dblink
to ensure client encoding matched the server. However the added
PQsetClientEncoding() call added significant overhead. Restore original
performance in the common case where client encoding already matches
server encoding by doing nothing in that case. Applies to all active
branches.
Issue reported and work sponsored by Zonar Systems.
This commit is contained in:
parent
36352ceb40
commit
9057adc232
@ -193,7 +193,8 @@ typedef struct remoteConnHashEnt
|
||||
errdetail("%s", msg))); \
|
||||
} \
|
||||
dblink_security_check(conn, rconn); \
|
||||
PQsetClientEncoding(conn, GetDatabaseEncodingName()); \
|
||||
if (PQclientEncoding(conn) != GetDatabaseEncoding()) \
|
||||
PQsetClientEncoding(conn, GetDatabaseEncodingName()); \
|
||||
freeconn = true; \
|
||||
} \
|
||||
} while (0)
|
||||
@ -272,8 +273,9 @@ dblink_connect(PG_FUNCTION_ARGS)
|
||||
/* check password actually used if not superuser */
|
||||
dblink_security_check(conn, rconn);
|
||||
|
||||
/* attempt to set client encoding to match server encoding */
|
||||
PQsetClientEncoding(conn, GetDatabaseEncodingName());
|
||||
/* attempt to set client encoding to match server encoding, if needed */
|
||||
if (PQclientEncoding(conn) != GetDatabaseEncoding())
|
||||
PQsetClientEncoding(conn, GetDatabaseEncodingName());
|
||||
|
||||
if (connname)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user