]> granicus.if.org Git - postgresql/commitdiff
Fix typo in regression test comment
authorAndrew Dunstan <andrew@dunslane.net>
Wed, 24 Oct 2018 23:39:50 +0000 (19:39 -0400)
committerAndrew Dunstan <andrew@dunslane.net>
Wed, 24 Oct 2018 23:39:50 +0000 (19:39 -0400)
per Michael Banck

src/test/regress/expected/fast_default.out
src/test/regress/sql/fast_default.sql

index 0797e111285f8d896ebedba7c9144e3f6dca6b9f..1c1924cd5c161d66da9fd56591121d1f238c2114 100644 (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);
index eefcd497e5107b0f00172dcddccd033d735801ab..344b5841d7343b9b562669b3af0db71c3699f80d 100644 (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);