From ea5d3f52334a1693a8b9e110095718c79a678a5f Mon Sep 17 00:00:00 2001 From: Richard Guo Date: Thu, 3 Apr 2025 16:43:53 +0900 Subject: [PATCH] Remove duplicated comment in get_relation_constraints The check for non-inheritable constraints is performed later, and the same comment is included at that point. While we're here, remove one extraneous blank line. Author: jian he Reviewed-by: Kirill Reshke Reviewed-by: Richard Guo Discussion: https://postgr.es/m/CACJufxETi6x86S8EkH8mRfOcm2AenoE9t1pyCFVMpU34gVhF3w@mail.gmail.com --- src/backend/optimizer/util/plancat.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/backend/optimizer/util/plancat.c b/src/backend/optimizer/util/plancat.c index 65b7d73bb5e..441684a72b1 100644 --- a/src/backend/optimizer/util/plancat.c +++ b/src/backend/optimizer/util/plancat.c @@ -1303,8 +1303,7 @@ get_relation_constraints(PlannerInfo *root, /* * If this constraint hasn't been fully validated yet, we must - * ignore it here. Also ignore if NO INHERIT and we weren't told - * that that's safe. + * ignore it here. */ if (!constr->check[i].ccvalid) continue; @@ -1321,7 +1320,6 @@ get_relation_constraints(PlannerInfo *root, if (constr->check[i].ccnoinherit && !include_noinherit) continue; - cexpr = stringToNode(constr->check[i].ccbin); /*