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

From Tom Lane
Subject Re: What's the CURRENT schema ?
Date
Msg-id 20724.1017894019@sss.pgh.pa.us
Whole thread Raw
In response to What's the CURRENT schema ?  (Hiroshi Inoue <Inoue@tpf.co.jp>)
Responses Re: What's the CURRENT schema ?  (Peter Eisentraut <peter_e@gmx.net>)
List pgsql-hackers
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 likeselect * from "public".vs1;
if there is a vs1 hiding it in an earlier namespace in the search
path.

I've been vacillating about whether to choose another name for the
public namespace to avoid the need for quotes here.  I can't think
of another good name :-(
        regards, tom lane


pgsql-hackers by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: Locale support is now on by default
Next
From: Hiroshi Inoue
Date:
Subject: Re: timeout implementation issues