Re: Unexpected behavior from psql

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: Unexpected behavior from psql
Дата
Msg-id 1231713684.32466.4.camel@jdavis
обсуждение исходный текст
Ответ на Unexpected behavior from psql  (Tim Hart <tjhart@mac.com>)
Ответы Re: Unexpected behavior from psql
Список pgsql-general
On Sun, 2009-01-11 at 15:33 -0600, Tim Hart wrote:
> tjhart=# set search_path to foo, public;
> SET
> tjhart=# \d
>            List of relations
>   Schema |   Name    | Type  | Owner
> --------+-----------+-------+--------
>   foo    | bar_table | table | tjhart
>   foo    | foo_table | table | tjhart
> (2 rows)
>
> tjhart=# set search_path to public, foo;
> SET
> tjhart=# \d
>            List of relations
>   Schema |   Name    | Type  | Owner
> --------+-----------+-------+--------
>   foo    | bar_table | table | tjhart
>   public | foo_table | table | tjhart
> (2 rows)

This behavior seems consistent to me. If you type an unqualified name
like:

SELECT * FROM foo_table;

You'll get the one from the first namespace listed in search_path. It
makes sense for "\d" to display only the tables that can be seen without
specifying a fully-qualified name.

Regards,
    Jeff Davis


В списке pgsql-general по дате отправления:

Предыдущее
От: Tim Hart
Дата:
Сообщение: Unexpected behavior from psql
Следующее
От: Tim Hart
Дата:
Сообщение: Re: Unexpected behavior from psql