File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5456,7 +5456,7 @@ ORDER BY c.ordinal_position;
5456
5456
<entry>
5457
5457
Type of the table: <literal>BASE TABLE</literal> for a
5458
5458
persistent base table (the normal table type),
5459
- <literal>VIEW</literal> for a view, <literal>FOREIGN TABLE </literal>
5459
+ <literal>VIEW</literal> for a view, <literal>FOREIGN</literal>
5460
5460
for a foreign table, or
5461
5461
<literal>LOCAL TEMPORARY</literal> for a temporary table
5462
5462
</entry>
Original file line number Diff line number Diff line change @@ -1914,7 +1914,7 @@ CREATE VIEW tables AS
1914
1914
CASE WHEN nc .oid = pg_my_temp_schema() THEN ' LOCAL TEMPORARY'
1915
1915
WHEN c .relkind IN (' r' , ' p' ) THEN ' BASE TABLE'
1916
1916
WHEN c .relkind = ' v' THEN ' VIEW'
1917
- WHEN c .relkind = ' f' THEN ' FOREIGN TABLE '
1917
+ WHEN c .relkind = ' f' THEN ' FOREIGN'
1918
1918
ELSE null END
1919
1919
AS character_data) AS table_type,
1920
1920
You can’t perform that action at this time.
0 commit comments