mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
doc: Whitespace and formatting fixes
This commit is contained in:
parent
f17e247173
commit
338a862256
@ -1906,8 +1906,10 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name);
|
|||||||
<term><literal>protocol</literal></term>
|
<term><literal>protocol</literal></term>
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
SSL/TLS version in use. Common values are "SSLv2", "SSLv3",
|
SSL/TLS version in use. Common values
|
||||||
"TLSv1", "TLSv1.1" and "TLSv1.2", but an implementation may
|
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.
|
return other strings if some other protocol is used.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
@ -648,7 +648,7 @@ INSERT INTO employees_log SELECT *, current_timestamp FROM upd;
|
|||||||
INSERT INTO distributors AS d (did, dname) VALUES (8, 'Anvil Distribution')
|
INSERT INTO distributors AS d (did, dname) VALUES (8, 'Anvil Distribution')
|
||||||
ON CONFLICT (did) DO UPDATE
|
ON CONFLICT (did) DO UPDATE
|
||||||
SET dname = EXCLUDED.dname || ' (formerly ' || d.dname || ')'
|
SET dname = EXCLUDED.dname || ' (formerly ' || d.dname || ')'
|
||||||
WHERE d.zipcode != '21201';
|
WHERE d.zipcode <> '21201';
|
||||||
|
|
||||||
-- Name a constraint directly in the statement (uses associated
|
-- Name a constraint directly in the statement (uses associated
|
||||||
-- index to arbitrate taking the DO NOTHING action)
|
-- index to arbitrate taking the DO NOTHING action)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user