Thread: Re: [HACKERS] CREATE TEMP TABLE

Re: [HACKERS] CREATE TEMP TABLE

From
Thomas Lockhart
Date:
> CREATE  [{ GLOBAL | LOCAL } TEMPORARY ] TABLE class_name

postgres=> create local temporary table tt (i int);
CREATE
postgres=> create global temporary table tg (i int);
ERROR:  GLOBAL TEMPORARY TABLE is not currently supported
postgres=> create temporary table tn (i int);
CREATE

I just adjusted the source tree to include this, along with internal
changes to integrate Vadim's transaction level and locking syntax.
This will probably require a full "make clean install" since some
keywords were added.
                    - Tom

-- 
Thomas Lockhart                lockhart@alumni.caltech.edu
South Pasadena, California