1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-19 23:22:23 +03:00

Rename PQtraceSetFlags() to PQsetTraceFlags().

We have a dozen PQset*() functions.  PQresultSetInstanceData() and this
were the libpq setter functions having a different word order.  Adopt
the majority word order.

Reviewed by Alvaro Herrera and Robert Haas, though this choice of name
was not unanimous.

Discussion: https://postgr.es/m/20210605060555.GA216695@rfd.leadboat.com
This commit is contained in:
Noah Misch
2021-06-10 21:56:13 -07:00
parent 04539e73fa
commit d0e750c0ac
5 changed files with 7 additions and 7 deletions

View File

@@ -61,7 +61,7 @@ PQuntrace(PGconn *conn)
/* Set flags for current tracing session */
void
PQtraceSetFlags(PGconn *conn, int flags)
PQsetTraceFlags(PGconn *conn, int flags)
{
if (conn == NULL)
return;