Skip to content

Commit 1be6be8

Browse files
committed
Make an editorial pass over the 9.0 release notes.
This is mostly about grammar, style, and presentation, though I did find a few small factual errors.
1 parent 84d3026 commit 1be6be8

File tree

3 files changed

+774
-621
lines changed

3 files changed

+774
-621
lines changed

doc/src/sgml/config.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.294.2.6 2010/08/22 02:37:38 momjian Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.294.2.7 2010/08/23 02:43:35 tgl Exp $ -->
22

33
<chapter Id="runtime-config">
44
<title>Server Configuration</title>
@@ -3474,7 +3474,7 @@ local0.* /var/log/postgresql
34743474
</row>
34753475
<row>
34763476
<entry><literal>%e</literal></entry>
3477-
<entry>SQL state</entry>
3477+
<entry>SQLSTATE error code</entry>
34783478
<entry>no</entry>
34793479
</row>
34803480
<row>
@@ -3545,7 +3545,7 @@ FROM pg_stat_activity;
35453545
<para>
35463546
<application>Syslog</> produces its own
35473547
time stamp and process ID information, so you probably do not want to
3548-
use those escapes if you are logging to <application>syslog</>.
3548+
include those escapes if you are logging to <application>syslog</>.
35493549
</para>
35503550
</tip>
35513551
</listitem>
@@ -3672,7 +3672,7 @@ FROM pg_stat_activity;
36723672
virtual transaction ID,
36733673
regular transaction ID,
36743674
error severity,
3675-
SQL state code,
3675+
SQLSTATE code,
36763676
error message,
36773677
error message detail,
36783678
hint,

doc/src/sgml/ddl.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.93.2.1 2010/07/29 19:34:36 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.93.2.2 2010/08/23 02:43:35 tgl Exp $ -->
22

33
<chapter id="ddl">
44
<title>Data Definition</title>
@@ -36,7 +36,7 @@
3636
is fixed, and each column has a name. The number of rows is
3737
variable &mdash; it reflects how much data is stored at a given moment.
3838
SQL does not make any guarantees about the order of the rows in a
39-
table. When a table is read, the rows will appear in random order,
39+
table. When a table is read, the rows will appear in an unspecified order,
4040
unless sorting is explicitly requested. This is covered in <xref
4141
linkend="queries">. Furthermore, SQL does not assign unique
4242
identifiers to rows, so it is possible to have several completely
@@ -846,7 +846,7 @@ CREATE TABLE order_items (
846846
</para>
847847
</sect2>
848848

849-
<sect2>
849+
<sect2 id="ddl-constraints-exclusion">
850850
<title>Exclusion constraints</title>
851851

852852
<indexterm>

0 commit comments

Comments
 (0)