1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
----
-- Regression test to Global Temporary Table implementation
--
-- Test for transaction manamgement on GTT.
--
-- Test that the creation a GTT in rollbacked transaction
-- will not preserve it.
--
----
BEGIN;
-- Register the Global temporary table in a transaction
CREATE /*GLOBAL*/ TEMPORARY TABLE t_glob_temptable1 (id integer, lbl text) ON COMMIT PRESERVE ROWS;
-- Look at Global Temporary Table definition
SELECT nspname, relname, preserved, code FROM pgtt_schema.pg_global_temp_tables;
nspname | relname | preserved | code
-------------+-------------------+-----------+----------------------
pgtt_schema | t_glob_temptable1 | t | id integer, lbl text
(1 row)
-- A "template" unlogged table should exists
SELECT n.nspname, c.relname FROM pg_class c JOIN pg_namespace n ON (c.relnamespace=n.oid) WHERE relname = 't_glob_temptable1';
nspname | relname
-------------+-------------------
pgtt_schema | t_glob_temptable1
(1 row)
-- Insert some value will create the temporary table
INSERT INTO t_glob_temptable1 VALUES (1, 'One');
INSERT INTO t_glob_temptable1 VALUES (2, 'Two');
-- Look at content of the template for Global Temporary Table, must be empty
SET pgtt.enabled TO off;
SELECT * FROM pgtt_schema.t_glob_temptable1;
id | lbl
----+-----
(0 rows)
SET pgtt.enabled TO on;
-- Look at content of the Global Temporary Table
SELECT * FROM t_glob_temptable1;
id | lbl
----+-----
1 | One
2 | Two
(2 rows)
ROLLBACK;
-- The GTT must not exists
SELECT * FROM t_glob_temptable1;
ERROR: relation "t_glob_temptable1" does not exist
LINE 1: SELECT * FROM t_glob_temptable1;
^
-- Return nothing
SELECT n.nspname, c.relname FROM pg_class c JOIN pg_namespace n ON (c.relnamespace=n.oid) WHERE relname = 't_glob_temptable1';
nspname | relname
---------+---------
(0 rows)
-- Register the Global temporary table outside the transaction
CREATE /*GLOBAL*/ TEMPORARY TABLE t_glob_temptable1 (id integer, lbl text) ON COMMIT PRESERVE ROWS;
BEGIN;
-- Drop the GTT
DROP TABLE t_glob_temptable1;
ROLLBACK;
-- Insert some value will create the temporary table
INSERT INTO t_glob_temptable1 VALUES (1, 'One');
INSERT INTO t_glob_temptable1 VALUES (2, 'Two');
-- The GTT must not exists
SELECT * FROM t_glob_temptable1;
id | lbl
----+-----
1 | One
2 | Two
(2 rows)
-- Both tables muste exists
SELECT n.nspname, c.relname FROM pg_class c JOIN pg_namespace n ON (c.relnamespace=n.oid) WHERE relname = 't_glob_temptable1';
nspname | relname
-------------+-------------------
pgtt_schema | t_glob_temptable1
(1 row)
-- Reconnect and drop it
\c - -
-- Cleanup
DROP TABLE t_glob_temptable1;
|