From 1890448102f6f1c663322a72b8d33465b6d7e95e Mon Sep 17 00:00:00 2001 From: "Chao Li (HighGo Inc.)" Date: Fri, 1 Aug 2025 14:33:20 +0800 Subject: [PATCH v1] Fixed a typo in src/test/regress/sql/foreign_key.sql I happened to notice this typo and corrected it. Author: Chao Li --- src/test/regress/sql/foreign_key.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/regress/sql/foreign_key.sql b/src/test/regress/sql/foreign_key.sql index cfcecb4e911..39174ad1eb9 100644 --- a/src/test/regress/sql/foreign_key.sql +++ b/src/test/regress/sql/foreign_key.sql @@ -1296,7 +1296,7 @@ UPDATE fk_notpartitioned_pk SET b = 2504 WHERE a = 2500; -- check psql behavior \d fk_notpartitioned_pk --- Check the exsting FK trigger +-- Check the existing FK trigger SELECT conname, tgrelid::regclass as tgrel, regexp_replace(tgname, '[0-9]+', 'N') as tgname, tgtype FROM pg_trigger t JOIN pg_constraint c ON (t.tgconstraint = c.oid) WHERE tgrelid IN (SELECT relid FROM pg_partition_tree('fk_partitioned_fk'::regclass) -- 2.39.5 (Apple Git-154)