From: Bruce Momjian Date: Fri, 21 Jul 2000 04:25:05 +0000 (+0000) Subject: Cleanup X-Git-Tag: REL7_1_BETA~886 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d07d5d8d0182b69c8043fdb1ea95b35abfe15e61;p=postgresql Cleanup --- diff --git a/doc/src/sgml/ref/create_rule.sgml b/doc/src/sgml/ref/create_rule.sgml index 8938fc6e37..e8be382304 100644 --- a/doc/src/sgml/ref/create_rule.sgml +++ b/doc/src/sgml/ref/create_rule.sgml @@ -1,5 +1,5 @@ @@ -302,7 +302,7 @@ CREATE RULE example_3 AS - Create a view of the employees working in the toy department. + Create a view of the employees working in the toy department: CREATE toyemp(name = char16, salary = int4); @@ -315,7 +315,7 @@ CREATE RULE example_4 AS - All new employees must make 5,000 or less + All new employees must make 5,000 or less: CREATE RULE example_5 AS ON INERT TO emp WHERE new.salary > 5000 diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index b72a213e7e..00e9000948 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -1,5 +1,5 @@ @@ -311,7 +311,7 @@ SELECT last_value FROM seqname; CREATE SEQUENCE serial START 101; - Select the next number from this sequence + Select the next number from this sequence: SELECT NEXTVAL ('serial');