Re: How to drop a temporary view? - Mailing list pgsql-general

From Vincenzo Romano
Subject Re: How to drop a temporary view?
Date
Msg-id CAHjZ2x5NHOoEG3cTGe+H60r6fxcthNhjEFEyGjqCmUaFkzqxnw@mail.gmail.com
Whole thread Raw
In response to Re: How to drop a temporary view?  (Merlin Moncure <mmoncure@gmail.com>)
Responses Re: How to drop a temporary view?  (Merlin Moncure <mmoncure@gmail.com>)
List pgsql-general
2012/4/20 Merlin Moncure <mmoncure@gmail.com>:
> On Fri, Apr 20, 2012 at 10:36 AM, Vincenzo Romano
> <vincenzo.romano@notorand.it> wrote:
>> Hi all.
>> I'd like use a temporary view "to hide" a non-temp one  for some queries.
>> Later I'd need to drop that view in order to "revert to normal operations".
>> As there is no "DROP TEMPORARY VIEW ..." I'd be forced to "CREATE OR
>> REPLACE TEMPORARY VIEW ..." in order to "overwrite" the temporary one
>> with the same code as the non-temporary.
>> All this sounds quite complex to me. Is there a way to drop temporary
>> stuff before closing the session?
>> TIA.
>
> you can do it with vanilla DROP VIEW:
>
> postgres=# create temp view t as select 1;
> CREATE VIEW
> postgres=# drop view t;
> DROP VIEW
>
> merlin

Ok. That works. How can I know if there's a temporary view with the
same name in my session?

pgsql-general by date:

Previous
From: Chris Angelico
Date:
Subject: Re: pg_advisory_lock() and row deadlocks
Next
From: Merlin Moncure
Date:
Subject: Re: How to drop a temporary view?