From 655d32d01b29ce5458ffb00c0ccd738a0ebbc357 Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Mon, 17 Jun 2024 17:16:15 +0200 Subject: [PATCH v20240617 53/56] Fix typo error, s/grantee/guarantee/. --- src/backend/optimizer/path/clausesel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/optimizer/path/clausesel.c b/src/backend/optimizer/path/clausesel.c index 206fe627e58..31dba9f7621 100644 --- a/src/backend/optimizer/path/clausesel.c +++ b/src/backend/optimizer/path/clausesel.c @@ -213,14 +213,14 @@ clauselist_selectivity_ext(PlannerInfo *root, * to detect when this makes sense, but we can check that there are join * clauses, and that at least some of the rels have stats. * - * rel != NULL can't grantee the clause is not a join clause, for example - * t1 left join t2 ON t1.a = 3, but it can grantee we can't use extended + * rel != NULL can't guarantee the clause is not a join clause, for example + * t1 left join t2 ON t1.a = 3, but it can guarantee we can't use extended * statistics for estimation since it has only 1 relid. * * XXX Is that actually behaving like that? Won't the (t1.a=3) be turned * into a regular clause? I haven't tried, though. * - * XXX: so we can grantee estimatedclauses == NULL now, so + * XXX: so we can guarantee estimatedclauses == NULL now, so * estimatedclauses in statext_try_join_estimates is removed. * * XXX Maybe remove the comment and add an assert estimatedclauses==NULL. -- 2.45.2