]> granicus.if.org Git - postgresql/commitdiff
Remove unnecessary and unreliable test
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 20 Feb 2015 17:03:49 +0000 (14:03 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 20 Feb 2015 17:03:49 +0000 (14:03 -0300)
src/test/regress/expected/prepared_xacts.out
src/test/regress/expected/prepared_xacts_1.out
src/test/regress/sql/prepared_xacts.sql

index 9dbf874b63e86dfd3056b7f0737f43e1197acb3f..c0b08649e8d8b4543e47384a2a2975f590151ec7 100644 (file)
@@ -247,58 +247,8 @@ SELECT gid FROM pg_prepared_xacts;
 -----
 (0 rows)
 
-CREATE TABLE pxtest5 (a SERIAL);
-INSERT INTO pxtest5 DEFAULT VALUES;
-SELECT * FROM pxtest5;
- a 
----
- 1
-(1 row)
-
-BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-  TRUNCATE pxtest5;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-PREPARE TRANSACTION 'trunc-and-pgstat';
-SELECT pg_sleep(0.5);
- pg_sleep 
-----------
-(1 row)
-
-SELECT n_tup_ins, n_tup_upd, n_tup_del, n_live_tup, n_dead_tup
-  FROM pg_stat_user_tables
- WHERE relname='pxtest5';
- n_tup_ins | n_tup_upd | n_tup_del | n_live_tup | n_dead_tup 
------------+-----------+-----------+------------+------------
-         1 |         0 |         0 |          1 |          0
-(1 row)
-
-COMMIT PREPARED 'trunc-and-pgstat';
-SELECT pg_sleep(0.5);
- pg_sleep 
-----------
-(1 row)
-
-SELECT n_tup_ins, n_tup_upd, n_tup_del, n_live_tup, n_dead_tup
-  FROM pg_stat_user_tables
- WHERE relname='pxtest5';
- n_tup_ins | n_tup_upd | n_tup_del | n_live_tup | n_dead_tup 
------------+-----------+-----------+------------+------------
-         2 |         0 |         0 |          1 |          0
-(1 row)
-
-SELECT * FROM pxtest5;
- a 
----
- 4
-(1 row)
-
 -- Clean up
 DROP TABLE pxtest2;
 DROP TABLE pxtest3;  -- will still be there if prepared xacts are disabled
 ERROR:  table "pxtest3" does not exist
 DROP TABLE pxtest4;
-DROP TABLE pxtest5;
index dfdd5eb0dc1952391348ed44892a17e0b29660a7..898f278c11ed8aab20ea1a6bc45a2fcabda04dbc 100644 (file)
@@ -249,62 +249,9 @@ SELECT gid FROM pg_prepared_xacts;
 -----
 (0 rows)
 
-CREATE TABLE pxtest5 (a SERIAL);
-INSERT INTO pxtest5 DEFAULT VALUES;
-SELECT * FROM pxtest5;
- a 
----
- 1
-(1 row)
-
-BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-  TRUNCATE pxtest5;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-PREPARE TRANSACTION 'trunc-and-pgstat';
-ERROR:  prepared transactions are disabled
-HINT:  Set max_prepared_transactions to a nonzero value.
-SELECT pg_sleep(0.5);
- pg_sleep 
-----------
-(1 row)
-
-SELECT n_tup_ins, n_tup_upd, n_tup_del, n_live_tup, n_dead_tup
-  FROM pg_stat_user_tables
- WHERE relname='pxtest5';
- n_tup_ins | n_tup_upd | n_tup_del | n_live_tup | n_dead_tup 
------------+-----------+-----------+------------+------------
-         3 |         0 |         0 |          1 |          2
-(1 row)
-
-COMMIT PREPARED 'trunc-and-pgstat';
-ERROR:  prepared transaction with identifier "trunc-and-pgstat" does not exist
-SELECT pg_sleep(0.5);
- pg_sleep 
-----------
-(1 row)
-
-SELECT n_tup_ins, n_tup_upd, n_tup_del, n_live_tup, n_dead_tup
-  FROM pg_stat_user_tables
- WHERE relname='pxtest5';
- n_tup_ins | n_tup_upd | n_tup_del | n_live_tup | n_dead_tup 
------------+-----------+-----------+------------+------------
-         3 |         0 |         0 |          1 |          2
-(1 row)
-
-SELECT * FROM pxtest5;
- a 
----
- 1
-(1 row)
-
 -- Clean up
 DROP TABLE pxtest2;
 ERROR:  table "pxtest2" does not exist
 DROP TABLE pxtest3;  -- will still be there if prepared xacts are disabled
 DROP TABLE pxtest4;
 ERROR:  table "pxtest4" does not exist
-DROP TABLE pxtest5;
index 56d5857ae9c2a5e991763aba286c8856fc79221c..7902152775c70751ff8ceaf67114559f5736ac04 100644 (file)
@@ -152,34 +152,7 @@ SELECT * FROM pxtest3;
 -- There should be no prepared transactions
 SELECT gid FROM pg_prepared_xacts;
 
-CREATE TABLE pxtest5 (a SERIAL);
-INSERT INTO pxtest5 DEFAULT VALUES;
-
-SELECT * FROM pxtest5;
-
-BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-  TRUNCATE pxtest5;
-  INSERT INTO pxtest5 DEFAULT VALUES;
-PREPARE TRANSACTION 'trunc-and-pgstat';
-
-SELECT pg_sleep(0.5);
-SELECT n_tup_ins, n_tup_upd, n_tup_del, n_live_tup, n_dead_tup
-  FROM pg_stat_user_tables
- WHERE relname='pxtest5';
-
-COMMIT PREPARED 'trunc-and-pgstat';
-
-SELECT pg_sleep(0.5);
-SELECT n_tup_ins, n_tup_upd, n_tup_del, n_live_tup, n_dead_tup
-  FROM pg_stat_user_tables
- WHERE relname='pxtest5';
-
-SELECT * FROM pxtest5;
-
 -- Clean up
 DROP TABLE pxtest2;
 DROP TABLE pxtest3;  -- will still be there if prepared xacts are disabled
 DROP TABLE pxtest4;
-DROP TABLE pxtest5;