Fix whitespace issues in the man pages
See 00b0c73f1f2b98a7d09de63aaa14d6498ac521ae for an explanation.
This commit is contained in:
parent
a149d8bd56
commit
93874ce064
@ -165,8 +165,7 @@ CREATE VIEW a_view AS SELECT * FROM base_table;
|
|||||||
ALTER VIEW a_view ALTER COLUMN ts SET DEFAULT now();
|
ALTER VIEW a_view ALTER COLUMN ts SET DEFAULT now();
|
||||||
INSERT INTO base_table(id) VALUES(1); -- ts will receive a NULL
|
INSERT INTO base_table(id) VALUES(1); -- ts will receive a NULL
|
||||||
INSERT INTO a_view(id) VALUES(2); -- ts will receive the current time
|
INSERT INTO a_view(id) VALUES(2); -- ts will receive the current time
|
||||||
</programlisting>
|
</programlisting></para>
|
||||||
</para>
|
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
|
@ -137,8 +137,7 @@ $$;
|
|||||||
|
|
||||||
CREATE EVENT TRIGGER abort_ddl ON ddl_command_start
|
CREATE EVENT TRIGGER abort_ddl ON ddl_command_start
|
||||||
EXECUTE PROCEDURE abort_any_command();
|
EXECUTE PROCEDURE abort_any_command();
|
||||||
</programlisting>
|
</programlisting></para>
|
||||||
</para>
|
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
<refsect1 id="sql-createeventtrigger-compatibility">
|
<refsect1 id="sql-createeventtrigger-compatibility">
|
||||||
|
@ -307,8 +307,7 @@ CREATE RECURSIVE VIEW nums_1_100 (n) AS
|
|||||||
VALUES (1)
|
VALUES (1)
|
||||||
UNION ALL
|
UNION ALL
|
||||||
SELECT n+1 FROM nums_1_100 WHERE n < 100;
|
SELECT n+1 FROM nums_1_100 WHERE n < 100;
|
||||||
</programlisting>
|
</programlisting></para>
|
||||||
</para>
|
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
|
@ -87,8 +87,7 @@ REFRESH MATERIALIZED VIEW order_summary;
|
|||||||
state:
|
state:
|
||||||
<programlisting>
|
<programlisting>
|
||||||
REFRESH MATERIALIZED VIEW annual_statistics_basis WITH NO DATA;
|
REFRESH MATERIALIZED VIEW annual_statistics_basis WITH NO DATA;
|
||||||
</programlisting>
|
</programlisting></para>
|
||||||
</para>
|
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
|
@ -514,8 +514,7 @@ TABLE [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ * ]
|
|||||||
<literal>FROM</> item.)
|
<literal>FROM</> item.)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para><literal>LATERAL</literal> can also precede a function-call
|
||||||
<literal>LATERAL</literal> can also precede a function-call
|
|
||||||
<literal>FROM</> item, but in this case it is a noise word, because
|
<literal>FROM</> item, but in this case it is a noise word, because
|
||||||
the function expression can refer to earlier <literal>FROM</> items
|
the function expression can refer to earlier <literal>FROM</> items
|
||||||
in any case.
|
in any case.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user