diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2017-08-16 11:03:33 -0400 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2017-08-16 11:03:33 -0400 |
| commit | 9b5140fb503eb50634cd7e080d41f4d9af41e0a6 (patch) | |
| tree | a0b7e0dae28a8aaf32c4ccbb349fb469a084e99e /doc/src | |
| parent | 3cda10f41bfed7e34b0db7013b66dd40a5f75926 (diff) | |
Correct representation of foreign tables in information schema
tables.table_type is supposed to be 'FOREIGN' rather than 'FOREIGN
TABLE' according to the SQL standard.
Diffstat (limited to 'doc/src')
| -rw-r--r-- | doc/src/sgml/information_schema.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index b85849b2588..e07ff35bca0 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -5456,7 +5456,7 @@ ORDER BY c.ordinal_position; <entry> Type of the table: <literal>BASE TABLE</literal> for a persistent base table (the normal table type), - <literal>VIEW</literal> for a view, <literal>FOREIGN TABLE</literal> + <literal>VIEW</literal> for a view, <literal>FOREIGN</literal> for a foreign table, or <literal>LOCAL TEMPORARY</literal> for a temporary table </entry> |
