Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit93874ce

Browse files
committed
Fix whitespace issues in the man pages
See00b0c73 for an explanation.
1 parenta149d8b commit93874ce

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

‎doc/src/sgml/ref/alter_view.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,7 @@ CREATE VIEW a_view AS SELECT * FROM base_table;
165165
ALTER VIEW a_view ALTER COLUMN ts SET DEFAULT now();
166166
INSERT INTO base_table(id) VALUES(1); -- ts will receive a NULL
167167
INSERT INTO a_view(id) VALUES(2); -- ts will receive the current time
168-
</programlisting>
169-
</para>
168+
</programlisting></para>
170169
</refsect1>
171170

172171
<refsect1>

‎doc/src/sgml/ref/create_event_trigger.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@ $$;
137137

138138
CREATE EVENT TRIGGER abort_ddl ON ddl_command_start
139139
EXECUTE PROCEDURE abort_any_command();
140-
</programlisting>
141-
</para>
140+
</programlisting></para>
142141
</refsect1>
143142

144143
<refsect1 id="sql-createeventtrigger-compatibility">

‎doc/src/sgml/ref/create_view.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,7 @@ CREATE RECURSIVE VIEW nums_1_100 (n) AS
307307
VALUES (1)
308308
UNION ALL
309309
SELECT n+1 FROM nums_1_100 WHERE n < 100;
310-
</programlisting>
311-
</para>
310+
</programlisting></para>
312311
</refsect1>
313312

314313
<refsect1>

‎doc/src/sgml/ref/refresh_materialized_view.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ REFRESH MATERIALIZED VIEW order_summary;
8787
state:
8888
<programlisting>
8989
REFRESH MATERIALIZED VIEW annual_statistics_basis WITH NO DATA;
90-
</programlisting>
91-
</para>
90+
</programlisting></para>
9291
</refsect1>
9392

9493
<refsect1>

‎doc/src/sgml/ref/select.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,8 +514,7 @@ TABLE [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ * ]
514514
<literal>FROM</> item.)
515515
</para>
516516

517-
<para>
518-
<literal>LATERAL</literal> can also precede a function-call
517+
<para><literal>LATERAL</literal> can also precede a function-call
519518
<literal>FROM</> item, but in this case it is a noise word, because
520519
the function expression can refer to earlier <literal>FROM</> items
521520
in any case.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp