Search Postgresql Archives

possible psql \d bug in 8.3 beta2

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Is seems that \d is missing the following entry
when I set search_path to display two schemas:
            List of relations
 Schema  |    Name     | Type  |  Owner
---------+-------------+-------+----------
 project | managers    | table | teaminst





instrumentation=> select version();
                        version
--------------------------------------------------------
 PostgreSQL 8.3beta2, compiled by Visual C++ build 1400
(1 row)

instrumentation=> set search_path to project;
SET
instrumentation=> \d
            List of relations
 Schema  |    Name     | Type  |  Owner
---------+-------------+-------+----------
 project | managers    | table | teaminst
 project | project_tls | table | teaminst
 project | projects    | table | teaminst
(3 rows)

instrumentation=> set search_path to history;
SET
instrumentation=> \d
           List of relations
 Schema  |   Name   | Type  |  Owner
---------+----------+-------+----------
 history | managers | table | teaminst
(1 row)

instrumentation=> set search_path to history, project;
SET
instrumentation=> \d
            List of relations
 Schema  |    Name     | Type  |  Owner
---------+-------------+-------+----------
 history | managers    | table | teaminst  <--where is project.managers
 project | project_tls | table | teaminst
 project | projects    | table | teaminst
(3 rows)

instrumentation=>

Regards,
Richard Broersma Jr.

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
       subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your
       message can get through to the mailing list cleanly

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux