Skip to content

Commit a2e6a5a

Browse files
Make diacritic_sensitive parameter optional to support $text operator on Cosmos DB (#1089)
* Fix(find): allow excluding the diacritic sensitivity parameter This fixes [the issue](#1088) with Azure CosmosDB for MongoDB which does not support diacritic sensitivity. * Docs(find): explain when to set `diacritic_sensitive` to `None` * Test(find): test when `diacritic_sensitive` is set to `None`
1 parent 0b5c49f commit a2e6a5a

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

beanie/odm/operators/find/evaluation.py

+10-3
Original file line numberDiff line numberDiff line change
@@ -141,21 +141,25 @@ class Sample(Document):
141141
142142
MongoDB doc:
143143
<https://docs.mongodb.com/manual/reference/operator/query/text/>
144+
145+
Note: if you need to run a query against Azure Cosmos DB for MongoDB,
146+
which does not support diacritic sensitivity yet, you can set
147+
`diacritic_sensitive` argument to `None` to exclude it from the query.
144148
"""
145149

146150
def __init__(
147151
self,
148152
search: str,
149153
language: Optional[str] = None,
150154
case_sensitive: bool = False,
151-
diacritic_sensitive: bool = False,
155+
diacritic_sensitive: Optional[bool] = False,
152156
):
153157
"""
154158
155159
:param search: str
156160
:param language: Optional[str] = None
157161
:param case_sensitive: bool = False
158-
:param diacritic_sensitive: bool = False
162+
:param diacritic_sensitive: Optional[bool] = False
159163
"""
160164
self.search = search
161165
self.language = language
@@ -168,11 +172,14 @@ def query(self):
168172
"$text": {
169173
"$search": self.search,
170174
"$caseSensitive": self.case_sensitive,
171-
"$diacriticSensitive": self.diacritic_sensitive,
172175
}
173176
}
174177
if self.language:
175178
expression["$text"]["$language"] = self.language
179+
if self.diacritic_sensitive is not None:
180+
expression["$text"]["$diacriticSensitive"] = (
181+
self.diacritic_sensitive
182+
)
176183
return expression
177184

178185

tests/odm/operators/find/test_evaluation.py

+7
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,13 @@ async def test_text():
5757
"$diacriticSensitive": True,
5858
}
5959
}
60+
q = Text("something", diacritic_sensitive=None)
61+
assert q == {
62+
"$text": {
63+
"$search": "something",
64+
"$caseSensitive": False,
65+
}
66+
}
6067
q = Text("something", language="test")
6168
assert q == {
6269
"$text": {

0 commit comments

Comments
 (0)