diff options
author | Robert Haas <rhaas@postgresql.org> | 2015-11-03 08:32:22 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2015-11-03 08:32:22 -0500 |
commit | 0279f62fdca7ff19ef34a836f5201935dc7f627c (patch) | |
tree | f9a85767110c715e2bdc3e75fd1b660480cd1ecc /src | |
parent | 620ac88d6fd39c01bd25c90491333f088d186151 (diff) | |
download | postgresql-0279f62fdca7ff19ef34a836f5201935dc7f627c.tar.gz postgresql-0279f62fdca7ff19ef34a836f5201935dc7f627c.zip |
Correct tiny inaccuracy in strxfrm cache comment.
Peter Geoghegan
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/adt/varlena.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/varlena.c b/src/backend/utils/adt/varlena.c index 821e3e7864f..a89f586abad 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? */ |