aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1998-08-15 07:00:37 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1998-08-15 07:00:37 +0000
commita80f034dc27ab37e2b92c21a46646395ee85d5f3 (patch)
tree8e547a99db70673c6da7437cb71b4201e87a8e93
parenta9e9f59308a14856921bfcfb41b2bee1f531de8a (diff)
downloadpostgresql-a80f034dc27ab37e2b92c21a46646395ee85d5f3.tar.gz
postgresql-a80f034dc27ab37e2b92c21a46646395ee85d5f3.zip
Make minor formatting improvements to statement synopses.
Make sure all files end with a newline.
-rw-r--r--doc/src/sgml/ref/create_operator.sgml4
-rw-r--r--doc/src/sgml/ref/create_rule.sgml4
-rw-r--r--doc/src/sgml/ref/create_sequence.sgml4
-rw-r--r--doc/src/sgml/ref/create_table.sgml13
-rw-r--r--doc/src/sgml/ref/create_trigger.sgml4
-rw-r--r--doc/src/sgml/ref/create_type.sgml4
6 files changed, 18 insertions, 15 deletions
diff --git a/doc/src/sgml/ref/create_operator.sgml b/doc/src/sgml/ref/create_operator.sgml
index e491fd10f30..29400bf3ce3 100644
--- a/doc/src/sgml/ref/create_operator.sgml
+++ b/doc/src/sgml/ref/create_operator.sgml
@@ -10,7 +10,7 @@
CREATE OPERATOR
</REFNAME>
<REFPURPOSE>
- Defines a new user operator.
+ Defines a new user operator
</REFPURPOSE>
<REFSYNOPSISDIV>
@@ -413,4 +413,4 @@ sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
---> \ No newline at end of file
+-->
diff --git a/doc/src/sgml/ref/create_rule.sgml b/doc/src/sgml/ref/create_rule.sgml
index 6f931eeeb5f..f8d9ce204e3 100644
--- a/doc/src/sgml/ref/create_rule.sgml
+++ b/doc/src/sgml/ref/create_rule.sgml
@@ -10,7 +10,7 @@
CREATE RULE
</REFNAME>
<REFPURPOSE>
- Defines a new rule.
+ Defines a new rule
</REFPURPOSE>
<REFSYNOPSISDIV>
<REFSYNOPSISDIVINFO>
@@ -360,4 +360,4 @@ sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
---> \ No newline at end of file
+-->
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml
index fc6e3a45114..262a6467483 100644
--- a/doc/src/sgml/ref/create_sequence.sgml
+++ b/doc/src/sgml/ref/create_sequence.sgml
@@ -10,7 +10,7 @@
CREATE SEQUENCE
</REFNAME>
<REFPURPOSE>
- creates a new sequence number generator.
+ Creates a new sequence number generator
</REFPURPOSE>
<REFSYNOPSISDIV>
@@ -314,4 +314,4 @@ sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
---> \ No newline at end of file
+-->
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index d754ada9a1f..6358ba9b7ca 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -10,7 +10,7 @@
CREATE TABLE
</REFNAME>
<REFPURPOSE>
- Creates a new table.
+ Creates a new table
</REFPURPOSE>
<REFSYNOPSISDIV>
@@ -983,8 +983,8 @@
SQL92
</TITLE>
<PARA>
- In addition to normal CREATE TABLE, SQL92 also supports a
- CREATE TEMPORARY TABLE statement.
+ In addition to normal CREATE TABLE, SQL92 also defines a
+ CREATE TEMPORARY TABLE statement:
</PARA>
<synopsis>
CREATE [ {GLOBAL | LOCAL} ] TEMPORARY TABLE table (
@@ -1014,7 +1014,9 @@
) ON COMMIT DELETE ROWS
</programlisting>
<para>
- TIP: In the current release of PostgreSQL (6.3.2), to create a temporary
+Temporary tables are not currently available in <productname>Postgres</productname>.
+ <para>
+ TIP: In the current release of <productname>Postgres</productname> (v6.3.2), to create a temporary
table you must create and drop the table by explicit commands.
</para>
@@ -1027,6 +1029,7 @@
</TITLE>
<PARA>
SQL92 specifies some additional capabilities for UNIQUE:
+ <para>
Table Constraint definition
</PARA>
<synopsis>
@@ -1301,4 +1304,4 @@ sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
---> \ No newline at end of file
+-->
diff --git a/doc/src/sgml/ref/create_trigger.sgml b/doc/src/sgml/ref/create_trigger.sgml
index a183a80186f..7d145f0929e 100644
--- a/doc/src/sgml/ref/create_trigger.sgml
+++ b/doc/src/sgml/ref/create_trigger.sgml
@@ -10,7 +10,7 @@
CREATE TRIGGER
</REFNAME>
<REFPURPOSE>
- CREATE TRIGGER - creates a new trigger.
+ Creates a new trigger
</REFPURPOSE>
<REFSYNOPSISDIV>
<REFSYNOPSISDIVINFO>
@@ -244,4 +244,4 @@ sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
---> \ No newline at end of file
+-->
diff --git a/doc/src/sgml/ref/create_type.sgml b/doc/src/sgml/ref/create_type.sgml
index 2f1cc46a8df..78967a7d0a6 100644
--- a/doc/src/sgml/ref/create_type.sgml
+++ b/doc/src/sgml/ref/create_type.sgml
@@ -10,7 +10,7 @@
CREATE TYPE
</REFNAME>
<REFPURPOSE>
- CREATE TYPE - defines a new base data type.
+ Defines a new base data type
</REFPURPOSE>
<REFSYNOPSISDIV>
<REFSYNOPSISDIVINFO>
@@ -435,4 +435,4 @@ sgml-exposed-tags:nil
sgml-local-catalogs:"/usr/lib/sgml/catalog"
sgml-local-ecat-files:nil
End:
---> \ No newline at end of file
+-->