On Wed, Aug 03, 2005 at 10:29:38AM +0100, DKnoto wrote:
> I have database with two schemas: S1 and S2. In each schema exist table T1
> but psql show only table in first schema listet in SEARCH_PATH.
Is this what you mean?
CREATE SCHEMA s1;
CREATE TABLE s1.t1 (x integer);
CREATE SCHEMA s2;
CREATE
The following bug has been logged online:
Bug reference: 1803
Logged by: DKnoto
Email address: [EMAIL PROTECTED]
PostgreSQL version: 8.0.3
Operating system: Linux 2.6.11.10
Description:Incomplete table list in psql
Details:
Hi,
I have database with two schemas: S1 a