Trim trailing whitespace

This commit is contained in:
Peter Eisentraut 2017-06-12 09:51:18 -04:00
parent ddd7b22b22
commit bf6e4c3c82
10 changed files with 22 additions and 22 deletions

View File

@ -4361,7 +4361,7 @@ SELECT (regexp_match('foobarbequebaz', 'bar.*que'))[1];
<para> <para>
Some examples: Some examples:
<programlisting> <programlisting>
SELECT regexp_matches('foo', 'not there'); SELECT regexp_matches('foo', 'not there');
regexp_matches regexp_matches
---------------- ----------------
(0 rows) (0 rows)

View File

@ -1175,7 +1175,7 @@ synchronous_standby_names = 'FIRST 2 (s1, s2, s3)'
An example of <varname>synchronous_standby_names</> for An example of <varname>synchronous_standby_names</> for
a quorum-based multiple synchronous standbys is: a quorum-based multiple synchronous standbys is:
<programlisting> <programlisting>
synchronous_standby_names = 'ANY 2 (s1, s2, s3)' synchronous_standby_names = 'ANY 2 (s1, s2, s3)'
</programlisting> </programlisting>
In this example, if four standby servers <literal>s1</>, <literal>s2</>, In this example, if four standby servers <literal>s1</>, <literal>s2</>,
<literal>s3</> and <literal>s4</> are running, transaction commits will <literal>s3</> and <literal>s4</> are running, transaction commits will

View File

@ -5941,9 +5941,9 @@ char *PQencryptPasswordConn(PGconn *conn, const char *passwd, const char *user,
<listitem> <listitem>
<para> <para>
Prepares the md5-encrypted form of a <productname>PostgreSQL</> password. Prepares the md5-encrypted form of a <productname>PostgreSQL</> password.
<synopsis> <synopsis>
char *PQencryptPassword(const char *passwd, const char *user); char *PQencryptPassword(const char *passwd, const char *user);
</synopsis> </synopsis>
<function>PQencryptPassword</> is an older, deprecated version of <function>PQencryptPassword</> is an older, deprecated version of
<function>PQencryptPasswodConn</>. The difference is that <function>PQencryptPasswodConn</>. The difference is that
<function>PQencryptPassword</> does not <function>PQencryptPassword</> does not

View File

@ -119,13 +119,13 @@ free_percent | 1.95
</table> </table>
<note> <note>
<para> <para>
The <literal>table_len</literal> will always be greater than the sum The <literal>table_len</literal> will always be greater than the sum
of the <literal>tuple_len</literal>, <literal>dead_tuple_len</literal> of the <literal>tuple_len</literal>, <literal>dead_tuple_len</literal>
and <literal>free_space</literal>. The difference is accounted for by and <literal>free_space</literal>. The difference is accounted for by
fixed page overhead, the per-page table of pointers to tuples, and fixed page overhead, the per-page table of pointers to tuples, and
padding to ensure that tuples are correctly aligned. padding to ensure that tuples are correctly aligned.
</para> </para>
</note> </note>
<para> <para>