mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
Don't uselessly escape a string that doesn't need escaping
Per gripe from Ian Barwick Co-authored-by: Ian Barwick <ian@2ndquadrant.com> Discussion: https://postgr.es/m/CABvVfJWNnNKb8cHsTLhkTsvL1+G6BVcV+57+w1JZ61p8YGPdWQ@mail.gmail.com
This commit is contained in:
parent
8ab66081ca
commit
0994cfc0ac
@ -1716,9 +1716,9 @@ GenerateRecoveryConf(PGconn *conn)
|
|||||||
|
|
||||||
if (replication_slot)
|
if (replication_slot)
|
||||||
{
|
{
|
||||||
escaped = escape_quotes(replication_slot);
|
/* unescaped: ReplicationSlotValidateName allows [a-z0-9_] only */
|
||||||
appendPQExpBuffer(recoveryconfcontents, "primary_slot_name = '%s'\n", replication_slot);
|
appendPQExpBuffer(recoveryconfcontents, "primary_slot_name = '%s'\n",
|
||||||
free(escaped);
|
replication_slot);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (PQExpBufferBroken(recoveryconfcontents) ||
|
if (PQExpBufferBroken(recoveryconfcontents) ||
|
||||||
|
Loading…
x
Reference in New Issue
Block a user