Re: BUG #14317: psql \dt not working as expected

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: lucian(dot)ciufudean(at)gmail(dot)com
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #14317: psql \dt not working as expected
Date: 2016-09-08 15:52:57
Message-ID: 4557.1473349977@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

lucian(dot)ciufudean(at)gmail(dot)com writes:
> If one creates a table with the same name as one of the pg_catalog tables
> then \dt will not show it:

This is expected, if you are using the default search_path, because
pg_catalog will be in front of public and will mask your version of
pg_tables.

> Expectations: \dt shows all tables in the public schema.

Nope, \dt shows *visible* tables, ie those that can be referenced without
schema qualification. See this bit in the psql documentation:

Whenever the pattern parameter is omitted completely, the \d
commands display all objects that are visible in the current schema
search path this is equivalent to using * as the pattern. (An
object is said to be visible if its containing schema is in the
search path and no object of the same kind and name appears earlier
in the search path. This is equivalent to the statement that the
object can be referenced by name without explicit schema
qualification.) To see all objects in the database regardless of
visibility, use *.* as the pattern.

> Note that it is also unexpected that this query:
> select * from pg_tables;
> goes to pg_catalog.pg_tables instead of public.pg_tables.

Again, you are confused about how the search path works.

If you really want to, you can put public in front of pg_catalog
in your search path, but it's not recommendable --- it's a security
hazard, for one thing.

regards, tom lane

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Shay Rojansky 2016-09-08 17:25:11 Array dimension lost if dimension length is zero
Previous Message John R Pierce 2016-09-08 15:46:42 Re: BUG #14317: psql \dt not working as expected