From bdf6c4f0121c1251692196d730e588d29f17eb25 Mon Sep 17 00:00:00 2001 From: "Thomas G. Lockhart" Date: Tue, 11 Apr 2000 05:39:15 +0000 Subject: [PATCH] Update porting list. Fix markup to get clean compile. --- doc/src/sgml/advanced.sgml | 101 +---------------------------- doc/src/sgml/ports.sgml | 10 ++- doc/src/sgml/query.sgml | 6 +- doc/src/sgml/ref/comment.sgml | 4 +- doc/src/sgml/ref/create_index.sgml | 6 +- doc/src/sgml/ref/update.sgml | 4 +- 6 files changed, 18 insertions(+), 113 deletions(-) diff --git a/doc/src/sgml/advanced.sgml b/doc/src/sgml/advanced.sgml index af7030e392..3444abfb42 100644 --- a/doc/src/sgml/advanced.sgml +++ b/doc/src/sgml/advanced.sgml @@ -1,5 +1,5 @@ @@ -234,105 +234,6 @@ SELECT SAL_EMP.schedule[1:2][1:1] - - More Advanced Features diff --git a/doc/src/sgml/ports.sgml b/doc/src/sgml/ports.sgml index c4e426683c..7247ec6c18 100644 --- a/doc/src/sgml/ports.sgml +++ b/doc/src/sgml/ports.sgml @@ -150,11 +150,15 @@ (Tatsuo Ishii) - NetBSD + NetBSD 1.4 arm32 - v6.5 - 1999-04-14 + v7.0 + 2000-04-08 + (Patrick + Welche) + NetBSD 1.4U diff --git a/doc/src/sgml/query.sgml b/doc/src/sgml/query.sgml index 971be24838..ef519c7346 100644 --- a/doc/src/sgml/query.sgml +++ b/doc/src/sgml/query.sgml @@ -1,5 +1,5 @@ @@ -21,8 +21,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/query.sgml,v 1.10 2000/04/07 13:30:58 thoma flavor of SQL and is in no way a complete tutorial on SQL. Numerous books have been written on SQL92, including - and - . + and + . You should be aware that some language features are extensions to the ANSI standard. diff --git a/doc/src/sgml/ref/comment.sgml b/doc/src/sgml/ref/comment.sgml index 21f1e7b993..af127beeed 100644 --- a/doc/src/sgml/ref/comment.sgml +++ b/doc/src/sgml/ref/comment.sgml @@ -1,5 +1,5 @@ @@ -101,7 +101,7 @@ COMMENT COMMENT adds a comment to an object that can be easily retrieved with psql's - \dd command. + \dd command. To remove a comment, use NULL. Comments are automatically dropped when the object is dropped. diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml index 6ed340f377..13f9f612e0 100644 --- a/doc/src/sgml/ref/create_index.sgml +++ b/doc/src/sgml/ref/create_index.sgml @@ -1,5 +1,5 @@ @@ -46,8 +46,8 @@ CREATE [ UNIQUE ] INDEX index_name Causes the system to check for duplicate values in the table when the index is created (if data already exist) and each time data is added. Attempts to - insert or update non-duplicate data will generate an - error. + insert or update data which would result in duplicate entries + will generate an error. diff --git a/doc/src/sgml/ref/update.sgml b/doc/src/sgml/ref/update.sgml index 8f4858de3b..ff668a6254 100644 --- a/doc/src/sgml/ref/update.sgml +++ b/doc/src/sgml/ref/update.sgml @@ -1,5 +1,5 @@ @@ -182,7 +182,7 @@ SELECT * FROM films WHERE kind = 'Dramatic' OR kind = 'Drama'; the positioned UPDATE statement: -UPDATE table SET column = expression [, ...] +UPDATE table SET column = expression [, ...] WHERE CURRENT OF cursor