From: Robert Haas Date: Tue, 3 Nov 2015 13:32:22 +0000 (-0500) Subject: Correct tiny inaccuracy in strxfrm cache comment. X-Git-Tag: REL9_6_BETA1~1147 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0279f62fdca7ff19ef34a836f5201935dc7f627c;p=postgresql Correct tiny inaccuracy in strxfrm cache comment. Peter Geoghegan --- diff --git a/src/backend/utils/adt/varlena.c b/src/backend/utils/adt/varlena.c index 821e3e7864..a89f586aba 100644 --- a/src/backend/utils/adt/varlena.c +++ b/src/backend/utils/adt/varlena.c @@ -62,7 +62,7 @@ typedef struct char *buf2; /* 2nd string, or abbreviation strxfrm() buf */ int buflen1; int buflen2; - int last_len1; /* Length of last buf1 string/strxfrm() blob */ + int last_len1; /* Length of last buf1 string/strxfrm() input */ int last_len2; /* Length of last buf2 string/strxfrm() blob */ int last_returned; /* Last comparison result (cache) */ bool cache_blob; /* Does buf2 contain strxfrm() blob, etc? */