doc: Whitespace and formatting fixes

This commit is contained in:
Peter Eisentraut 2015-08-20 22:34:35 -04:00
parent a93545e13f
commit 90a1d0aa76
9 changed files with 44 additions and 42 deletions

View File

@ -1906,8 +1906,10 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name);
<term><literal>protocol</literal></term>
<listitem>
<para>
SSL/TLS version in use. Common values are "SSLv2", "SSLv3",
"TLSv1", "TLSv1.1" and "TLSv1.2", but an implementation may
SSL/TLS version in use. Common values
are <literal>"SSLv2"</literal>, <literal>"SSLv3"</literal>,
<literal>"TLSv1"</literal>, <literal>"TLSv1.1"</literal>
and <literal>"TLSv1.2"</literal>, but an implementation may
return other strings if some other protocol is used.
</para>
</listitem>

View File

@ -648,7 +648,7 @@ INSERT INTO employees_log SELECT *, current_timestamp FROM upd;
INSERT INTO distributors AS d (did, dname) VALUES (8, 'Anvil Distribution')
ON CONFLICT (did) DO UPDATE
SET dname = EXCLUDED.dname || ' (formerly ' || d.dname || ')'
WHERE d.zipcode != '21201';
WHERE d.zipcode &lt;&gt; '21201';
-- Name a constraint directly in the statement (uses associated
-- index to arbitrate taking the DO NOTHING action)