v1-0001-Fixes-a-typo-in-tablecmd.patch
application/octet-stream
Filename: v1-0001-Fixes-a-typo-in-tablecmd.patch
Type: application/octet-stream
Part: 0
Message:
Fixes a typo in tablecmd
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch v1-0001
Subject: Fixes a typo in tablecmd
| File | + | − |
|---|---|---|
| src/backend/commands/tablecmds.c | 1 | 1 |
From b4b72ede4eac7fdb32ec4fb7e4b0270ec767ad4e Mon Sep 17 00:00:00 2001 From: "Chao Li (Evan)" <lic@highgo.com> Date: Mon, 15 Dec 2025 07:09:32 +0800 Subject: [PATCH v1] Fixes a typo in tablecmd Replaced "unvalidate" with "unvalidated". Author: Chao Li <lic@highgo.com> --- src/backend/commands/tablecmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 7550ee7c164..6b1a00ed477 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -13070,7 +13070,7 @@ QueueFKConstraintValidation(List **wqueue, Relation conrel, Relation fkrel, /* * If the table at either end of the constraint is partitioned, we need to - * recurse and handle every unvalidate constraint that is a child of this + * recurse and handle every unvalidated constraint that is a child of this * constraint. */ if (fkrel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE || -- 2.39.5 (Apple Git-154)