Hello!
A query with the OR operator does not work if double quotes are used.
test_base.py:
r = c.execute(
"SELECT * FROM docs WHERE docs MATCH '\"binding\" OR \"あいうえお\"'"
).fetchall()
assert len(r) == 2
r = c.execute(
"SELECT * FROM docs WHERE docs MATCH '\"provides binding\" OR あいうえお'"
).fetchall()
assert len(r) == 2
Hello! A query with the OR operator does not work if double quotes are used. test_base.py: