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

Commitf0cfff9

Browse files
committed
doc: Whitespace fixes in man pages
1 parentb08df9c commitf0cfff9

15 files changed

+15
-34
lines changed

‎doc/src/sgml/ref/alter_aggregate.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,7 @@ ALTER AGGREGATE mypercentile(float8 ORDER BY integer) SET SCHEMA myschema;
179179
This will work too:
180180
<programlisting>
181181
ALTER AGGREGATE mypercentile(float8, integer) SET SCHEMA myschema;
182-
</programlisting>
183-
</para>
182+
</programlisting></para>
184183
</refsect1>
185184

186185
<refsect1>

‎doc/src/sgml/ref/alter_publication.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ ALTER PUBLICATION noinsert SET (publish = 'update, delete');
140140
Add some tables to the publication:
141141
<programlisting>
142142
ALTER PUBLICATION mypublication ADD TABLE users, departments;
143-
</programlisting>
144-
</para>
143+
</programlisting></para>
145144
</refsect1>
146145

147146
<refsect1>

‎doc/src/sgml/ref/alter_subscription.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,7 @@ ALTER SUBSCRIPTION mysub SET PUBLICATION insert_only;
204204
Disable (stop) the subscription:
205205
<programlisting>
206206
ALTER SUBSCRIPTION mysub DISABLE;
207-
</programlisting>
208-
</para>
207+
</programlisting></para>
209208
</refsect1>
210209

211210
<refsect1>

‎doc/src/sgml/ref/alter_system.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ ALTER SYSTEM SET wal_level = replica;
119119
in <filename>postgresql.conf</>:
120120
<programlisting>
121121
ALTER SYSTEM RESET wal_level;
122-
</programlisting>
123-
</para>
122+
</programlisting></para>
124123
</refsect1>
125124

126125
<refsect1>

‎doc/src/sgml/ref/alter_type.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,7 @@ ALTER TYPE colors ADD VALUE 'orange' AFTER 'red';
356356
To rename an enum value:
357357
<programlisting>
358358
ALTER TYPE colors RENAME VALUE 'purple' TO 'mauve';
359-
</programlisting>
360-
</para>
359+
</programlisting></para>
361360
</refsect1>
362361

363362
<refsect1>

‎doc/src/sgml/ref/create_access_method.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ CREATE ACCESS METHOD <replaceable class="parameter">name</replaceable>
9393
handler function <literal>heptree_handler</>:
9494
<programlisting>
9595
CREATE ACCESS METHOD heptree TYPE INDEX HANDLER heptree_handler;
96-
</programlisting>
97-
</para>
96+
</programlisting></para>
9897
</refsect1>
9998

10099
<refsect1>

‎doc/src/sgml/ref/create_publication.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,7 @@ CREATE PUBLICATION alltables FOR ALL TABLES;
191191
<programlisting>
192192
CREATE PUBLICATION insert_only FOR TABLE mydata
193193
WITH (publish = 'insert');
194-
</programlisting>
195-
</para>
194+
</programlisting></para>
196195
</refsect1>
197196

198197
<refsect1>

‎doc/src/sgml/ref/create_subscription.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,7 @@ CREATE SUBSCRIPTION mysub
265265
CONNECTION 'host=192.168.1.50 port=5432 user=foo dbname=foodb'
266266
PUBLICATION insert_only
267267
WITH (enabled = false);
268-
</programlisting>
269-
</para>
268+
</programlisting></para>
270269
</refsect1>
271270

272271
<refsect1>

‎doc/src/sgml/ref/drop_aggregate.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,7 @@ DROP AGGREGATE myrank(VARIADIC "any" ORDER BY VARIADIC "any");
160160
To remove multiple aggregate functions in one command:
161161
<programlisting>
162162
DROP AGGREGATE myavg(integer), myavg(bigint);
163-
</programlisting>
164-
</para>
163+
</programlisting></para>
165164
</refsect1>
166165

167166
<refsect1>

‎doc/src/sgml/ref/drop_policy.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ DROP POLICY [ IF EXISTS ] <replaceable class="parameter">name</replaceable> ON <
9696

9797
<programlisting>
9898
DROP POLICY p1 ON my_table;
99-
</programlisting>
100-
</para>
99+
</programlisting></para>
101100
</refsect1>
102101

103102
<refsect1>

‎doc/src/sgml/ref/drop_publication.sgml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ DROP PUBLICATION [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
8282
Drop a publication:
8383
<programlisting>
8484
DROP PUBLICATION mypublication;
85-
</programlisting>
86-
</para>
87-
85+
</programlisting></para>
8886
</refsect1>
8987

9088
<refsect1>

‎doc/src/sgml/ref/drop_statistics.sgml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ DROP STATISTICS [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
7373
DROP STATISTICS IF EXISTS
7474
accounting.users_uid_creation,
7575
public.grants_user_role;
76-
</programlisting>
77-
</para>
78-
76+
</programlisting></para>
7977
</refsect1>
8078

8179
<refsect1>

‎doc/src/sgml/ref/drop_subscription.sgml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@ DROP SUBSCRIPTION [ IF EXISTS ] <replaceable class="parameter">name</replaceable
102102
Drop a subscription:
103103
<programlisting>
104104
DROP SUBSCRIPTION mysub;
105-
</programlisting>
106-
</para>
107-
105+
</programlisting></para>
108106
</refsect1>
109107

110108
<refsect1>

‎doc/src/sgml/ref/import_foreign_schema.sgml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,7 @@ IMPORT FOREIGN SCHEMA foreign_films
141141
<programlisting>
142142
IMPORT FOREIGN SCHEMA foreign_films LIMIT TO (actors, directors)
143143
FROM SERVER film_server INTO films;
144-
</programlisting>
145-
</para>
146-
144+
</programlisting></para>
147145
</refsect1>
148146

149147
<refsect1 id="SQL-IMPORTFOREIGNSCHEMA-compatibility">

‎doc/src/sgml/ref/insert.sgml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -725,8 +725,7 @@ INSERT INTO distributors (did, dname) VALUES (9, 'Antwerp Design')
725725
-- just use a regular unique constraint on "did"
726726
INSERT INTO distributors (did, dname) VALUES (10, 'Conrad International')
727727
ON CONFLICT (did) WHERE is_active DO NOTHING;
728-
</programlisting>
729-
</para>
728+
</programlisting></para>
730729
</refsect1>
731730

732731
<refsect1>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp