Re: What's the CURRENT schema ? - Mailing list pgsql-hackers

From Hiroshi Inoue
Subject Re: What's the CURRENT schema ?
Date
Msg-id 3CABDC81.6ABA60DD@tpf.co.jp
Whole thread Raw
In response to What's the CURRENT schema ?  (Hiroshi Inoue <Inoue@tpf.co.jp>)
Responses Re: What's the CURRENT schema ?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Tom Lane wrote:
> 
> Hiroshi Inoue <Inoue@tpf.co.jp> writes:
> > I can see the content of yamada.vs1 by the command
> >   select * from vs1
> > but there seems to be no way to see the content of
> > public.vs1.
> 
> PUBLIC is a reserved keyword, so you have to do something like
>         select * from "public".vs1;
> if there is a vs1 hiding it in an earlier namespace in the search
> path.

I see. However my main problem is that the schema of unqualified
vs1 is affected by the existence of yamada.vs1. I don't think
it's a useful behavior.

regards,
Hiroshi Inoue


pgsql-hackers by date:

Previous
From: "Christopher Kings-Lynne"
Date:
Subject: Changing column types...
Next
From: Peter Eisentraut
Date:
Subject: Re: What's the CURRENT schema ?