@@ -1719,7 +1719,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
1719
1719
There is no environment variable equivalent to this option, and no
1720
1720
facility for looking it up in <filename>.pgpass</filename>. It can be
1721
1721
used in a service file connection definition. Users with
1722
- more sophisticated uses should consider using openssl engines and
1722
+ more sophisticated uses should consider using <productname>OpenSSL</productname> engines and
1723
1723
tools like PKCS#11 or USB crypto offload devices.
1724
1724
</para>
1725
1725
</listitem>
@@ -5032,7 +5032,7 @@ int PQflush(PGconn *conn);
5032
5032
<para>
5033
5033
While the pipeline API was introduced in
5034
5034
<productname>PostgreSQL</productname> 14, it is a client-side feature
5035
- which doesn't require special server support, and works on any server
5035
+ which doesn't require special server support and works on any server
5036
5036
that supports the v3 extended query protocol.
5037
5037
</para>
5038
5038
@@ -5451,8 +5451,8 @@ int PQsendFlushRequest(PGconn *conn);
5451
5451
are being performed in rapid succession. There is usually less benefit
5452
5452
in using pipelined commands when each query takes many multiples of the client/server
5453
5453
round-trip time to execute. A 100-statement operation run on a server
5454
- 300ms round-trip-time away would take 30 seconds in network latency alone
5455
- without pipelining; with pipelining it may spend as little as 0.3s waiting for
5454
+ 300 ms round-trip-time away would take 30 seconds in network latency alone
5455
+ without pipelining; with pipelining it may spend as little as 0.3 s waiting for
5456
5456
results from the server.
5457
5457
</para>
5458
5458
@@ -7109,9 +7109,9 @@ defaultNoticeProcessor(void *arg, const char *message)
7109
7109
<para>
7110
7110
Each registered event handler is associated with two pieces of data,
7111
7111
known to <application>libpq</application> only as opaque <literal>void *</literal>
7112
- pointers. There is a <firstterm>passthrough </firstterm> pointer that is provided
7112
+ pointers. There is a <firstterm>pass-through </firstterm> pointer that is provided
7113
7113
by the application when the event handler is registered with a
7114
- <structname>PGconn</structname>. The passthrough pointer never changes for the
7114
+ <structname>PGconn</structname>. The pass-through pointer never changes for the
7115
7115
life of the <structname>PGconn</structname> and all <structname>PGresult</structname>s
7116
7116
generated from it; so if used, it must point to long-lived data.
7117
7117
In addition there is an <firstterm>instance data</firstterm> pointer, which starts
@@ -7121,9 +7121,9 @@ defaultNoticeProcessor(void *arg, const char *message)
7121
7121
<xref linkend="libpq-PQsetInstanceData"/>,
7122
7122
<xref linkend="libpq-PQresultInstanceData"/> and
7123
7123
<function>PQsetResultInstanceData</function> functions. Note that
7124
- unlike the passthrough pointer, instance data of a <structname>PGconn</structname>
7124
+ unlike the pass-through pointer, instance data of a <structname>PGconn</structname>
7125
7125
is not automatically inherited by <structname>PGresult</structname>s created from
7126
- it. <application>libpq</application> does not know what passthrough
7126
+ it. <application>libpq</application> does not know what pass-through
7127
7127
and instance data pointers point to (if anything) and will never attempt
7128
7128
to free them — that is the responsibility of the event handler.
7129
7129
</para>
0 commit comments