From: Michael Paquier Date: Tue, 30 Dec 2025 07:42:21 +0000 (+0900) Subject: Fix comment in lsyscache.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffdcc9c638eeb71d2e6990e27f91623736603b58;p=thirdparty%2Fpostgresql.git Fix comment in lsyscache.c Author: Chao Li Discussion: https://postgr.es/m/CAEoWx2miv0KGcM9j29ANRN45-Vz-2qAqrM0cv9OtaLx8e_WCMQ@mail.gmail.com --- diff --git a/src/backend/utils/cache/lsyscache.c b/src/backend/utils/cache/lsyscache.c index 5aa7a26d95c..9be36583835 100644 --- a/src/backend/utils/cache/lsyscache.c +++ b/src/backend/utils/cache/lsyscache.c @@ -768,9 +768,9 @@ get_op_index_interpretation(Oid opno) * semantics. * * This is trivially true if they are the same operator. Otherwise, - * Otherwise, we look to see if they both belong to an opfamily that - * guarantees compatible semantics for equality. Either finding allows us to - * assume that they have compatible notions of equality. (The reason we need + * we look to see if they both belong to an opfamily that guarantees + * compatible semantics for equality. Either finding allows us to assume + * that they have compatible notions of equality. (The reason we need * to do these pushups is that one might be a cross-type operator; for * instance int24eq vs int4eq.) */