postgresql/src/test/regress/expected/truncate.out
Tom Lane 0f1112923c Code review for recent TRUNCATE changes. Tighten relation-kind check,
tighten foreign-key check (a self-reference should not prevent TRUNCATE),
improve error message, cause a relation's TOAST table to be truncated
along with the relation.
2002-08-22 14:23:36 +00:00

39 lines
884 B
Plaintext

-- Test basic TRUNCATE functionality.
CREATE TABLE truncate_a (col1 integer primary key);
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index 'truncate_a_pkey' for table 'truncate_a'
INSERT INTO truncate_a VALUES (1);
INSERT INTO truncate_a VALUES (2);
SELECT * FROM truncate_a;
col1
------
1
2
(2 rows)
TRUNCATE truncate_a;
SELECT * FROM truncate_a;
col1
------
(0 rows)
-- Test foreign constraint check
CREATE TABLE truncate_b(col1 integer references truncate_a);
NOTICE: CREATE TABLE will create implicit trigger(s) for FOREIGN KEY check(s)
INSERT INTO truncate_a VALUES (1);
SELECT * FROM truncate_a;
col1
------
1
(1 row)
TRUNCATE truncate_a;
ERROR: TRUNCATE cannot be used as table truncate_b references this one via foreign key constraint $1
SELECT * FROM truncate_a;
col1
------
1
(1 row)
DROP TABLE truncate_b;
DROP TABLE truncate_a;