X-Original-To: pgsql-docs-postgresql.org@localhost.postgresql.org Received: from localhost (unknown [200.46.204.144]) by svr1.postgresql.org (Postfix) with ESMTP id 710A35375D for ; Fri, 1 Apr 2005 07:17:32 +0100 (BST) Received: from svr1.postgresql.org ([200.46.204.71]) by localhost (av.hub.org [200.46.204.144]) (amavisd-new, port 10024) with ESMTP id 90554-07 for ; Fri, 1 Apr 2005 06:17:22 +0000 (GMT) Received: from kemia.me.tut.fi (kemia.me.tut.fi [130.230.40.29]) by svr1.postgresql.org (Postfix) with ESMTP id 501945324E for ; Fri, 1 Apr 2005 07:17:21 +0100 (BST) Received: from kempc17.me.tut.fi (kempc46.me.tut.fi [130.230.40.64]) by kemia.me.tut.fi (8.13.1/8.13.1) with ESMTP id j316HD29027701 for ; Fri, 1 Apr 2005 09:17:13 +0300 Date: Fri, 01 Apr 2005 09:17:12 +0300 From: "Vladimir Chukharev" To: pgsql-docs@postgresql.org Subject: Two points about docs Organization: Tampere University of Technology Message-ID: User-Agent: Opera M2/7.54 (FreeBSD, build 955) Content-Type: text/plain; format=flowed; delsp=yes; charset=koi8-r MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at hub.org X-Spam-Status: No, hits=0 tagged_above=0 required=5 tests= X-Spam-Level: X-Archive-Number: 200504/1 X-Sequence-Number: 2931 Hi, I think that docs can be improved a bit in two places. 1. Description of SELECT ( http://www.postgresql.org/docs/8.0/static/sql-select.html ) says 'SELECT retrieves rows from one or more tables.' This is not perfectly correct, because 0 tables can be used like in 'SELECT 1;'. When I tried to find how I can check the meaning of some simple function, at first attempt I really thought that SELECT cannot be used without tables. Chapter 7.1 also says that the simpleast query is 'SELECT * FROM table1;', but at least the example 'SELECT 3 * 4;' is close enough to catch an eye. 2. 'Chapter 9. Functions and Operators' has no reference to server side functions for large object manipulation (lo_creat et al.) Yesterday wanted to check the names of those functions (I remembered there are some in psql). So, first I found that blob is a keyword, but is not implemented. Then I tried to find them in Chapter 9. I just couldn't beleave it's not there. Then I tried to find a list of all functions, similar to list of all keywords. And only after all that I found the location of the lo_* functions. Well, may it is just me, of course. I don't know... -- V.Chukharev