mirror of
https://github.com/lldap/lldap.git
synced 2026-04-25 08:15:52 +03:00
[GH-ISSUE #1336] [FEATURE REQUEST] Substring search for string attributes #468
Labels
No labels
backend
blocked
bug
cleanup
dependencies
docker
documentation
duplicate
enhancement
enhancement
frontend
github_actions
good first issue
help wanted
help wanted
integration
invalid
ldap
pull-request
question
rust
rust
tests
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/lldap-lldap#468
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kaiwenleee on GitHub (Oct 24, 2025).
Original GitHub issue: https://github.com/lldap/lldap/issues/1336
Motivation
User attribute values are stored as blobs and do not support substring matching in search filter, although attribute type is already known and stored in another table.
Describe the solution you'd like
Add a
user_attribute_value_textcolumn inuser_attributestable. Fill in the text value when attribute has String type.Implement
AttributeSubtringsearch filter and query for String attributes.Describe alternatives you've considered
Additional context
The issue is mentioned in #705.
With the additional text column, search on string attributes can also be case-insensitive #999