>>>>> "PG" == PG Bug reporting form <noreply@postgresql.org> writes:
PG> Looks like that the \det[+] [PATTERN] list foreign tables
PG> ignoring current searh_path settings:
Nope, what you're missing is that pg_catalog is implicitly on the front
of the search path (if not otherwise specified), so
pg_catalog.pg_stat_user_tables is considered to "hide"
public.pg_stat_user_tables. Object X in schema Y is only considered
"visible" if using the unqualified name "X" actually resolves to the Y.X
object, and in this case, if one just refers to "pg_stat_user_tables"
one gets pg_catalog.pg_stat_user_tables, not public.pg_stat_user_tables.
--
Andrew (irc:RhodiumToad)