Fix typo in regression test comment

per Michael Banck
This commit is contained in:
Andrew Dunstan 2018-10-24 19:39:50 -04:00
parent 040a1df614
commit 4beea5508e
2 changed files with 2 additions and 2 deletions

View File

@ -728,7 +728,7 @@ SELECT * FROM t;
DROP TABLE t;
-- make sure expanded tuple has correct self pointer
-- it will be required by the RI tigger doing the cascading delete
-- it will be required by the RI trigger doing the cascading delete
CREATE TABLE leader (a int PRIMARY KEY, b int);
CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int);
INSERT INTO leader VALUES (1, 1), (2, 2);

View File

@ -472,7 +472,7 @@ SELECT * FROM t;
DROP TABLE t;
-- make sure expanded tuple has correct self pointer
-- it will be required by the RI tigger doing the cascading delete
-- it will be required by the RI trigger doing the cascading delete
CREATE TABLE leader (a int PRIMARY KEY, b int);
CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int);