> zzz=# create table zzz(f1 int4);
> zzz=# create temporary table zzz(f1 int4);
>
> ...works
>
> zzz=# create temporary table zzz(f1 int4);
> zzz=# create table zzz(f1 int4);
> ERROR: Relation 'zzz' already exists
>
> Is this a problem?
Temporary tables mask real tables. Real tables can't mask temporary
tables. This is the way it should be, I think.
-- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610)
853-3000+ If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill,
Pennsylvania19026