mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
doc: Whitespace and formatting fixes
This commit is contained in:
parent
a93545e13f
commit
90a1d0aa76
@ -10912,7 +10912,7 @@ table2-mapping
|
||||
<entry><literal>jsonb_pretty('[{"f1":1,"f2":null},2,null,3]')</literal></entry>
|
||||
<entry>
|
||||
<programlisting>
|
||||
[
|
||||
[
|
||||
{
|
||||
"f1": 1,
|
||||
"f2": null
|
||||
@ -10920,7 +10920,7 @@ table2-mapping
|
||||
2,
|
||||
null,
|
||||
3
|
||||
]
|
||||
]
|
||||
</programlisting>
|
||||
</entry>
|
||||
</row>
|
||||
|
@ -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>
|
||||
|
@ -382,7 +382,7 @@ test=# SELECT * FROM gin_page_opaque_info(get_raw_page('gin_index', 2));
|
||||
<function>gin_leafpage_items</function> returns information about
|
||||
the data stored in a <acronym>GIN</acronym> leaf page. For example:
|
||||
<screen>
|
||||
test=# SELECT first_tid, nbytes, tids[0:5] as some_tids
|
||||
test=# SELECT first_tid, nbytes, tids[0:5] as some_tids
|
||||
FROM gin_leafpage_items(get_raw_page('gin_test_idx', 2));
|
||||
first_tid | nbytes | some_tids
|
||||
-----------+--------+----------------------------------------------------------
|
||||
|
@ -83,9 +83,9 @@ DROP POLICY [ IF EXISTS ] <replaceable class="parameter">name</replaceable> ON <
|
||||
To drop the policy called <literal>p1</literal> on the table named
|
||||
<literal>my_table</literal>:
|
||||
|
||||
<programlisting>
|
||||
DROP POLICY p1 ON my_table;
|
||||
</programlisting>
|
||||
<programlisting>
|
||||
DROP POLICY p1 ON my_table;
|
||||
</programlisting>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
|
@ -621,7 +621,7 @@ INSERT INTO employees_log SELECT *, current_timestamp FROM upd;
|
||||
expression is used to reference values originally proposed for
|
||||
insertion:
|
||||
<programlisting>
|
||||
INSERT INTO distributors (did, dname)
|
||||
INSERT INTO distributors (did, dname)
|
||||
VALUES (5, 'Gizmo transglobal'), (6, 'Associated Computing, inc')
|
||||
ON CONFLICT (did) DO UPDATE SET dname = EXCLUDED.dname;
|
||||
</programlisting>
|
||||
@ -633,7 +633,7 @@ INSERT INTO employees_log SELECT *, current_timestamp FROM upd;
|
||||
Example assumes a unique index has been defined that constrains
|
||||
values appearing in the <literal>did</literal> column:
|
||||
<programlisting>
|
||||
INSERT INTO distributors (did, dname) VALUES (7, 'Redline GmbH')
|
||||
INSERT INTO distributors (did, dname) VALUES (7, 'Redline GmbH')
|
||||
ON CONFLICT (did) DO NOTHING;
|
||||
</programlisting>
|
||||
</para>
|
||||
@ -644,15 +644,15 @@ INSERT INTO employees_log SELECT *, current_timestamp FROM upd;
|
||||
used to limit the rows actually updated (any existing row not
|
||||
updated will still be locked, though):
|
||||
<programlisting>
|
||||
-- Don't update existing distributors based in a certain ZIP code
|
||||
INSERT INTO distributors AS d (did, dname) VALUES (8, 'Anvil Distribution')
|
||||
-- Don't update existing distributors based in a certain ZIP code
|
||||
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 <> '21201';
|
||||
|
||||
-- Name a constraint directly in the statement (uses associated
|
||||
-- index to arbitrate taking the DO NOTHING action)
|
||||
INSERT INTO distributors (did, dname) VALUES (9, 'Antwerp Design')
|
||||
-- Name a constraint directly in the statement (uses associated
|
||||
-- index to arbitrate taking the DO NOTHING action)
|
||||
INSERT INTO distributors (did, dname) VALUES (9, 'Antwerp Design')
|
||||
ON CONFLICT ON CONSTRAINT distributors_pkey DO NOTHING;
|
||||
</programlisting>
|
||||
</para>
|
||||
@ -664,10 +664,10 @@ INSERT INTO employees_log SELECT *, current_timestamp FROM upd;
|
||||
<literal>is_active</literal> boolean column evaluates to
|
||||
<literal>true</literal>:
|
||||
<programlisting>
|
||||
-- This statement could infer a partial unique index on "did"
|
||||
-- with a predicate of "WHERE is_active", but it could also
|
||||
-- just use a regular unique constraint on "did"
|
||||
INSERT INTO distributors (did, dname) VALUES (10, 'Conrad International')
|
||||
-- This statement could infer a partial unique index on "did"
|
||||
-- with a predicate of "WHERE is_active", but it could also
|
||||
-- just use a regular unique constraint on "did"
|
||||
INSERT INTO distributors (did, dname) VALUES (10, 'Conrad International')
|
||||
ON CONFLICT (did) WHERE is_active DO NOTHING;
|
||||
</programlisting>
|
||||
</para>
|
||||
|
@ -487,7 +487,7 @@ pg_upgrade.exe
|
||||
directories, run this for each slave:
|
||||
|
||||
<programlisting>
|
||||
rsync --archive --delete --hard-links --size-only old_pgdata new_pgdata remote_dir
|
||||
rsync --archive --delete --hard-links --size-only old_pgdata new_pgdata remote_dir
|
||||
</programlisting>
|
||||
|
||||
where <option>old_pgdata</> and <option>new_pgdata</> are relative
|
||||
|
@ -2617,7 +2617,7 @@ SELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'Wor
|
||||
<para>
|
||||
An older syntax based on ":=" is supported for backward compatibility:
|
||||
<screen>
|
||||
SELECT concat_lower_or_upper(a := 'Hello', uppercase := true, b := 'World');
|
||||
SELECT concat_lower_or_upper(a := 'Hello', uppercase := true, b := 'World');
|
||||
concat_lower_or_upper
|
||||
-----------------------
|
||||
HELLO WORLD
|
||||
|
Loading…
Reference in New Issue
Block a user