]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix more multibyte issues in ltree.
authorJeff Davis <jdavis@postgresql.org>
Thu, 26 Feb 2026 20:25:00 +0000 (12:25 -0800)
committerJeff Davis <jdavis@postgresql.org>
Thu, 26 Feb 2026 20:25:00 +0000 (12:25 -0800)
commit3ed2c7ef7aa40e6c5c6a1bc16433f9768d98787d
treebb73e3c94a878a34f4bccaf46ae3f4bd6eff6d9b
parenta4515c9b41bcf7ff6d9ea012938706bd73e3fd54
Fix more multibyte issues in ltree.

Commit 84d5efa7e3 missed some multibyte issues caused by short-circuit
logic in the callers. The callers assumed that if the predicate string
is longer than the label string, then it couldn't possibly be a match,
but it can be when using case-insensitive matching (LVAR_INCASE) if
casefolding changes the byte length.

Fix by refactoring to get rid of the short-circuit logic as well as
the function pointer, and consolidate the logic in a replacement
function ltree_label_match().

Discussion: https://postgr.es/m/02c6ef6cf56a5013ede61ad03c7a26affd27d449.camel@j-davis.com
Backpatch-through: 14
contrib/ltree/lquery_op.c
contrib/ltree/ltree.h
contrib/ltree/ltxtquery_op.c