Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.80) (envelope-from ) id 1YzBC4-00040J-0S for pgsql-docs@arkaria.postgresql.org; Sun, 31 May 2015 21:54:56 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.80) (envelope-from ) id 1YzBC3-0006uk-8M for pgsql-docs@arkaria.postgresql.org; Sun, 31 May 2015 21:54:55 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.2:RSA_AES_256_CBC_SHA256:256) (Exim 4.80) (envelope-from ) id 1YzBC2-0006ud-Oc for pgsql-docs@postgresql.org; Sun, 31 May 2015 21:54:54 +0000 Received: from sss.pgh.pa.us ([66.207.139.130]) by magus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84) (envelope-from ) id 1YzBBz-0000JW-Kr for pgsql-docs@postgresql.org; Sun, 31 May 2015 21:54:54 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.14.4/8.14.4) with ESMTP id t4VLsiJs032010; Sun, 31 May 2015 17:54:44 -0400 From: Tom Lane To: =?UTF-8?B?Q2zDqW1lbnQgUHLDqXZvc3Q=?= cc: pgsql-docs@postgresql.org, Peter Eisentraut Subject: Re: Documentation on information_ schema columns that does not exist In-reply-to: References: Comments: In-reply-to =?UTF-8?B?Q2zDqW1lbnQgUHLDqXZvc3Q=?= message dated "Sun, 31 May 2015 23:40:57 +0200" Date: Sun, 31 May 2015 17:54:44 -0400 Message-ID: <32009.1433109284@sss.pgh.pa.us> X-Pg-Spam-Score: -1.9 (-) List-Archive: List-Help: List-ID: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: X-Mailing-List: pgsql-docs Precedence: bulk Sender: pgsql-docs-owner@postgresql.org =?UTF-8?B?Q2zDqW1lbnQgUHLDqXZvc3Q=?= writes: > I found out that the following columns are documented (9.1->9.4) but not > present in the information_schema table of my 9.4 instance (ubuntu): > * information_schema.foreign_table_options.foreign_server_catalog > * information_schema.foreign_table_options.foreign_server_name Yeah, that does seem like a copy-and-pasteo; there should only be 5 columns in the view according to the SQL standard and our code. Another problem in the same area is that the column types of foreign_table_schema and foreign_table_name seem to be "name": # \d *.foreign_table_options View "information_schema.foreign_table_options" Column | Type | Modifiers -----------------------+-----------------------------------+----------- foreign_table_catalog | information_schema.sql_identifier | foreign_table_schema | name | foreign_table_name | name | option_name | information_schema.sql_identifier | option_value | information_schema.character_data | The documentation claims these should be sql_identifier, and that's what I'd expect in a SQL-standard view ... regards, tom lane -- Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs