summaryrefslogtreecommitdiff
path: root/src/test/modules/libpq_pipeline/libpq_pipeline.c
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2021-06-10 21:56:13 -0700
committerNoah Misch <noah@leadboat.com>2021-06-10 21:56:13 -0700
commitd0e750c0acaf31f60667b1635311bcef5ab38bbe (patch)
tree72b97031c6352b372d22a0f9fad6f39998d8f99f /src/test/modules/libpq_pipeline/libpq_pipeline.c
parent04539e73faaaaa1c06c1407671910dceaffdfcd4 (diff)
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
Diffstat (limited to 'src/test/modules/libpq_pipeline/libpq_pipeline.c')
-rw-r--r--src/test/modules/libpq_pipeline/libpq_pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/modules/libpq_pipeline/libpq_pipeline.c b/src/test/modules/libpq_pipeline/libpq_pipeline.c
index e4bba103ed1..71eedb6dbb4 100644
--- a/src/test/modules/libpq_pipeline/libpq_pipeline.c
+++ b/src/test/modules/libpq_pipeline/libpq_pipeline.c
@@ -1326,7 +1326,7 @@ main(int argc, char **argv)
setvbuf(trace, NULL, PG_IOLBF, 0);
PQtrace(conn, trace);
- PQtraceSetFlags(conn,
+ PQsetTraceFlags(conn,
PQTRACE_SUPPRESS_TIMESTAMPS | PQTRACE_REGRESS_MODE);
}