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

Commitd4019b7

Browse files
committed
Remove a bunch of content-free Diagnostics sections, as per previous
discussion. (Still have some work to do editing the remainder.)
1 parent1815f61 commitd4019b7

File tree

70 files changed

+290
-1566
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+290
-1566
lines changed

‎doc/src/sgml/ref/abort.sgml

Lines changed: 19 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/abort.sgml,v 1.14 2003/08/31 17:32:21 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/abort.sgml,v 1.15 2003/09/09 18:28:52 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -31,7 +31,8 @@ ABORT [ WORK | TRANSACTION ]
3131
<command>ABORT</command> rolls back the current transaction and causes
3232
all the updates made by the transaction to be discarded.
3333
This command is identical
34-
in behavior to the standard <acronym>SQL</acronym> command <command>ROLLBACK</command>,
34+
in behavior to the standard <acronym>SQL</acronym> command
35+
<xref linkend="SQL-ROLLBACK" endterm="SQL-ROLLBACK-TITLE">,
3536
and is present only for historical reasons.
3637
</para>
3738
</refsect1>
@@ -52,36 +53,17 @@ ABORT [ WORK | TRANSACTION ]
5253
</variablelist>
5354
</refsect1>
5455

55-
<refsect1>
56-
<title>Diagnostics</title>
57-
58-
<variablelist>
59-
<varlistentry>
60-
<term><computeroutput>ROLLBACK</computeroutput></term>
61-
<listitem>
62-
<para>
63-
Message returned if successful.
64-
</para>
65-
</listitem>
66-
</varlistentry>
67-
68-
<varlistentry>
69-
<term><computeroutput>WARNING: ROLLBACK: no transaction in progress</computeroutput></term>
70-
<listitem>
71-
<para>
72-
If there is not any transaction currently in progress.
73-
</para>
74-
</listitem>
75-
</varlistentry>
76-
</variablelist>
77-
</refsect1>
78-
7956
<refsect1>
8057
<title>Notes</title>
8158

8259
<para>
83-
Use <command>COMMIT</command> to successfully
84-
terminate a transaction.
60+
Use <xref linkend="SQL-COMMIT" endterm="SQL-COMMIT-TITLE"> to
61+
successfully terminate a transaction.
62+
</para>
63+
64+
<para>
65+
Issuing <command>ABORT</> when not inside a transaction does
66+
no harm, but it will provoke a warning message.
8567
</para>
8668
</refsect1>
8769

@@ -106,6 +88,15 @@ ABORT;
10688
</para>
10789
</refsect1>
10890

91+
<refsect1>
92+
<title>See Also</title>
93+
94+
<simplelist type="inline">
95+
<member><xref linkend="sql-begin" endterm="sql-begin-title"></member>
96+
<member><xref linkend="sql-commit" endterm="sql-commit-title"></member>
97+
<member><xref linkend="sql-rollback" endterm="sql-rollback-title"></member>
98+
</simplelist>
99+
</refsect1>
109100
</refentry>
110101

111102
<!-- Keep this comment at the end of the file

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

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_aggregate.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_aggregate.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -29,8 +29,8 @@ ALTER AGGREGATE <replaceable>name</replaceable> ( <replaceable>type</replaceable
2929

3030
<para>
3131
<command>ALTER AGGREGATE</command> changes the definition of an
32-
aggregate function. The only functionality is to rename the
33-
aggregate function.
32+
aggregate function. The onlycurrently availablefunctionality is to
33+
rename theaggregate function.
3434
</para>
3535
</refsect1>
3636

@@ -67,21 +67,6 @@ ALTER AGGREGATE <replaceable>name</replaceable> ( <replaceable>type</replaceable
6767
</varlistentry>
6868
</variablelist>
6969
</refsect1>
70-
71-
<refsect1>
72-
<title>Diagnostics</title>
73-
74-
<variablelist>
75-
<varlistentry>
76-
<term><computeroutput>ALTER AGGREGATE</computeroutput></term>
77-
<listitem>
78-
<para>
79-
Message returned if the command was successful.
80-
</para>
81-
</listitem>
82-
</varlistentry>
83-
</variablelist>
84-
</refsect1>
8570

8671
<refsect1>
8772
<title>Examples</title>

‎doc/src/sgml/ref/alter_conversion.sgml

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_conversion.sgml,v 1.2 2003/08/31 17:32:21 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_conversion.sgml,v 1.3 2003/09/09 18:28:52 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -29,7 +29,8 @@ ALTER CONVERSION <replaceable>name</replaceable> RENAME TO <replaceable>newname<
2929

3030
<para>
3131
<command>ALTER CONVERSION</command> changes the definition of a
32-
conversion. The only functionality is to rename the conversion.
32+
conversion. The only currently available functionality is to rename the
33+
conversion.
3334
</para>
3435
</refsect1>
3536

@@ -56,21 +57,6 @@ ALTER CONVERSION <replaceable>name</replaceable> RENAME TO <replaceable>newname<
5657
</varlistentry>
5758
</variablelist>
5859
</refsect1>
59-
60-
<refsect1>
61-
<title>Diagnostics</title>
62-
63-
<variablelist>
64-
<varlistentry>
65-
<term><computeroutput>ALTER CONVERSION</computeroutput></term>
66-
<listitem>
67-
<para>
68-
Message returned if the command was successful.
69-
</para>
70-
</listitem>
71-
</varlistentry>
72-
</variablelist>
73-
</refsect1>
7460

7561
<refsect1>
7662
<title>Examples</title>

‎doc/src/sgml/ref/alter_database.sgml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.8 2003/08/31 17:32:21 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.9 2003/09/09 18:28:52 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -103,31 +103,6 @@ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RENAME TO <repl
103103
</variablelist>
104104
</refsect1>
105105

106-
<refsect1>
107-
<title>Diagnostics</title>
108-
109-
<variablelist>
110-
<varlistentry>
111-
<term><computeroutput>ALTER DATABASE</computeroutput></term>
112-
<listitem>
113-
<para>
114-
Message returned if the alteration was successful.
115-
</para>
116-
</listitem>
117-
</varlistentry>
118-
119-
<varlistentry>
120-
<term><computeroutput>ERROR: database "dbname" does not exist</computeroutput></term>
121-
<listitem>
122-
<para>
123-
Error message returned if the specified database is not known
124-
to the system.
125-
</para>
126-
</listitem>
127-
</varlistentry>
128-
</variablelist>
129-
</refsect1>
130-
131106
<refsect1>
132107
<title>Notes</title>
133108

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp