Commit 4beea550 authored by Andrew Dunstan's avatar Andrew Dunstan

Fix typo in regression test comment

per Michael Banck
parent 040a1df6
...@@ -728,7 +728,7 @@ SELECT * FROM t; ...@@ -728,7 +728,7 @@ SELECT * FROM t;
DROP TABLE t; DROP TABLE t;
-- make sure expanded tuple has correct self pointer -- 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 leader (a int PRIMARY KEY, b int);
CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int); CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int);
INSERT INTO leader VALUES (1, 1), (2, 2); INSERT INTO leader VALUES (1, 1), (2, 2);
......
...@@ -472,7 +472,7 @@ SELECT * FROM t; ...@@ -472,7 +472,7 @@ SELECT * FROM t;
DROP TABLE t; DROP TABLE t;
-- make sure expanded tuple has correct self pointer -- 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 leader (a int PRIMARY KEY, b int);
CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int); CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment