]> granicus.if.org Git - postgresql/commit
Fix query-based tab completion for multibyte characters.
authorRobert Haas <rhaas@postgresql.org>
Fri, 4 Mar 2016 16:53:20 +0000 (11:53 -0500)
committerRobert Haas <rhaas@postgresql.org>
Fri, 4 Mar 2016 16:57:40 +0000 (11:57 -0500)
commitb4895bf796d66245080cb37acaf2b396014b7225
tree9523a92df40ca5803f366f0b90b3c2ae1b659a0c
parentf32b8bc9e0e0e3096bcdae15f9946b39851e10f9
Fix query-based tab completion for multibyte characters.

The existing code confuses the byte length of the string (which is
relevant when passing it to pg_strncasecmp) with the character length
of the string (which is relevant when it is used with the SQL substring
function).  Separate those two concepts.

Report and patch by Kyotaro Horiguchi, reviewed by Thomas Munro and
reviewed and further revised by me.
src/bin/psql/tab-complete.c