Re: BUG #12679: temprary table not exists when close session and reconnect - Mailing list pgsql-bugs

From Francisco Olarte
Subject Re: BUG #12679: temprary table not exists when close session and reconnect
Date
Msg-id CA+bJJbz65PEVzU4Hz4D0fep-DcM6X10rCL-qAKVizTTXPeZA0g@mail.gmail.com
Whole thread Raw
In response to BUG #12679: temprary table not exists when close session and reconnect  (ousema2003@yahoo.fr)
List pgsql-bugs
Hi:

On Tue, Jan 27, 2015 at 12:02 PM, <ousema2003@yahoo.fr> wrote:
...

> Logged by:          temprary table not exists when close session and
> reconnect
>
...

> in fact i created a temprary table as floowing :
> create temp table a_temp(name varchar);
>

> then insert some rows and later when i reconnect with psql program,
>
> the temp table i created earlier, doesn't exists .
>
> please advice how can i deal with this issue ?
>

Seems to be working, try ReadingTFM:
http://www.postgresql.org/docs/9.2/static/sql-createtable.html
"TEMPORARY or TEMP

If specified, the table is created as a temporary table. Temporary tables
are automatically dropped at the end of a session, or optionally at the end
of the current transaction...
"

disconnecting/reconnecting puts you into different sesions, table is
dropped. This is what temporary tables are for.


Francisco Olarte.

pgsql-bugs by date:

Previous
From: ousema2003@yahoo.fr
Date:
Subject: BUG #12679: temprary table not exists when close session and reconnect
Next
From: Heikki Linnakangas
Date:
Subject: Re: BUG #12675: BIGINT Datatype performance