1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-24 10:47:04 +03:00

Tweak tests in COPY FREEZE

This commit is contained in:
Simon Riggs 2012-12-01 13:46:41 +00:00
parent 8de72b66a2
commit ddf509eb4a
2 changed files with 10 additions and 6 deletions

View File

@ -297,16 +297,20 @@ SELECT * FROM vistest;
(2 rows) (2 rows)
COMMIT; COMMIT;
BEGIN;
TRUNCATE vistest; TRUNCATE vistest;
COPY vistest FROM stdin CSV FREEZE; COPY vistest FROM stdin CSV FREEZE;
NOTICE: FREEZE option specified but pre-conditions not met
SELECT * FROM vistest; SELECT * FROM vistest;
a a
--- ---
a x
b y
(2 rows) (2 rows)
COMMIT;
TRUNCATE vistest;
COPY vistest FROM stdin CSV FREEZE;
NOTICE: FREEZE option specified but pre-conditions not met
BEGIN; BEGIN;
INSERT INTO vistest VALUES ('z'); INSERT INTO vistest VALUES ('z');
SAVEPOINT s1; SAVEPOINT s1;
@ -318,8 +322,8 @@ NOTICE: FREEZE option specified but pre-conditions not met
SELECT * FROM vistest; SELECT * FROM vistest;
a a
--- ---
a p
b g
z z
d d
e e
@ -360,6 +364,7 @@ SELECT * FROM vistest;
(2 rows) (2 rows)
DROP TABLE vistest; DROP TABLE vistest;
DROP FUNCTION truncate_in_subxact();
DROP TABLE x, y; DROP TABLE x, y;
DROP FUNCTION fn_x_before(); DROP FUNCTION fn_x_before();
DROP FUNCTION fn_x_after(); DROP FUNCTION fn_x_after();

View File

@ -229,7 +229,6 @@ INSERT INTO vistest VALUES ('z');
SAVEPOINT s1; SAVEPOINT s1;
TRUNCATE vistest; TRUNCATE vistest;
ROLLBACK TO SAVEPOINT s1; ROLLBACK TO SAVEPOINT s1;
-- FREEZE should be silently ignored here
COPY vistest FROM stdin CSV FREEZE; COPY vistest FROM stdin CSV FREEZE;
d d
e e