\d don't print all the tables

Поиск
Список
Период
Сортировка
Искать
От
Wen Yi
Тема
\d don't print all the tables
Дата
Msg-id
tencent_5ECEDFCD4F1AD945A3AE6835DE9400D22805@qq.com
Список
Дерево обсуждения
\d don't print all the tables "Wen Yi" <wen-yi@qq.com>
Re: \d don't print all the tables Adrian Klaver <adrian.klaver@aklaver.com>
Re: \d don't print all the tables Antonio Čale <antonio.cale@gmail.com>
Re: \d don't print all the tables Ron <ronljohnsonjr@gmail.com>
Re: \d don't print all the tables Alvaro Herrera <alvherre@alvh.no-ip.org>
Hi community,
here's my shell:

postgres=# \d
Did not find any relations.
postgres=# create schema namespace_a;
CREATE SCHEMA
postgres=# create schema namespace_b;
CREATE SCHEMA
postgres=# create table simple (name varchar);
CREATE TABLE
postgres=# create table namespace_a.simple (name varchar);
CREATE TABLE
postgres=# create table namespace_b.simple (name varchar);
CREATE TABLE
postgres=# \d
         List of relations
 Schema |  Name  | Type  |  Owner   
--------+--------+-------+----------
 public | simple | table | postgres
(1 row)

postgres=#

I think it should print the table on namespace_a & namespace_b, not just public, it really confused me.
Can someone give me some advice?

Yours,
Wen Yi.
В списке pgsql-general по дате отправления
От: Julien Rouhaud
Дата:
От: Laurenz Albe
Дата:
FAQ