From 9f91344223aad903ff70301f40183691a89f6cd4 Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Thu, 31 Mar 2022 15:27:09 -0400 Subject: [PATCH] Fix comments with "a expression" --- src/backend/optimizer/path/equivclass.c | 2 +- src/backend/parser/parse_expr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/optimizer/path/equivclass.c b/src/backend/optimizer/path/equivclass.c index 1681a55c3d..34c5ab1cb6 100644 --- a/src/backend/optimizer/path/equivclass.c +++ b/src/backend/optimizer/path/equivclass.c @@ -1001,7 +1001,7 @@ relation_can_be_sorted_early(PlannerInfo *root, RelOptInfo *rel, } /* - * Try to find a expression computable from the reltarget. + * Try to find an expression computable from the reltarget. */ em = find_computable_ec_member(root, ec, target->exprs, rel->relids, require_parallel_safe); diff --git a/src/backend/parser/parse_expr.c b/src/backend/parser/parse_expr.c index 31f0c9f693..911f355460 100644 --- a/src/backend/parser/parse_expr.c +++ b/src/backend/parser/parse_expr.c @@ -4251,7 +4251,7 @@ transformJsonFuncExprOutput(ParseState *pstate, JsonFuncExpr *func, } /* - * Coerce a expression in JSON DEFAULT behavior to the target output type. + * Coerce an expression in JSON DEFAULT behavior to the target output type. */ static Node * coerceDefaultJsonExpr(ParseState *pstate, JsonExpr *jsexpr, Node *defexpr)