Skip to content

Commit 4beea55

Browse files
committed
Fix typo in regression test comment
per Michael Banck
1 parent 040a1df commit 4beea55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/regress/expected/fast_default.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ SELECT * FROM t;
728728

729729
DROP TABLE t;
730730
-- make sure expanded tuple has correct self pointer
731-
-- it will be required by the RI tigger doing the cascading delete
731+
-- it will be required by the RI trigger doing the cascading delete
732732
CREATE TABLE leader (a int PRIMARY KEY, b int);
733733
CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int);
734734
INSERT INTO leader VALUES (1, 1), (2, 2);

src/test/regress/sql/fast_default.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ SELECT * FROM t;
472472
DROP TABLE t;
473473

474474
-- make sure expanded tuple has correct self pointer
475-
-- it will be required by the RI tigger doing the cascading delete
475+
-- it will be required by the RI trigger doing the cascading delete
476476

477477
CREATE TABLE leader (a int PRIMARY KEY, b int);
478478
CREATE TABLE follower (a int REFERENCES leader ON DELETE CASCADE, b int);

0 commit comments

Comments
 (0)