mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 01:14:31 +02:00
parent
1fe73c898b
commit
53fec0d863
2 changed files with 32 additions and 0 deletions
|
|
@ -38,6 +38,8 @@ import uuid
|
|||
|
||||
SQLITE_MAX_VARS = 999
|
||||
|
||||
_quote_fts_re = re.compile(r'\s+|(".*?")')
|
||||
|
||||
_virtual_table_using_re = re.compile(
|
||||
r"""
|
||||
^ # Start of string
|
||||
|
|
@ -431,6 +433,25 @@ class Database:
|
|||
{"value": value},
|
||||
).fetchone()[0]
|
||||
|
||||
def quote_fts(self, query: str) -> str:
|
||||
"Escape special characters in a SQLite full-text search query"
|
||||
# NOTE: This is not a query validator for FTS. Sqlite has
|
||||
# a well defined query syntax here:
|
||||
# https://www2.sqlite.org/fts5.html#full_text_query_syntax
|
||||
# but this function just aggressively quotes strings
|
||||
# to ensure that they are valid. In particular, passing
|
||||
# queries which make use of the query syntax will be incorrect,
|
||||
# e.g 'NEAR(one, two, 3)'.
|
||||
|
||||
# If query has unbalanced ", add one at end
|
||||
if query.count('"') % 2:
|
||||
query += '"'
|
||||
bits = _quote_fts_re.split(query)
|
||||
bits = [b for b in bits if b and b != '""']
|
||||
return " ".join(
|
||||
'"{}"'.format(bit) if not bit.startswith('"') else bit for bit in bits
|
||||
)
|
||||
|
||||
def table_names(self, fts4: bool = False, fts5: bool = False) -> List[str]:
|
||||
"A list of string table names in this database."
|
||||
where = ["type = 'table'"]
|
||||
|
|
|
|||
|
|
@ -501,3 +501,14 @@ def test_search_sql(kwargs, fts, expected):
|
|||
db["books"].enable_fts(["title", "author"], fts_version=fts)
|
||||
sql = db["books"].search_sql(**kwargs)
|
||||
assert sql == expected
|
||||
|
||||
def test_quote_fts_query(fresh_db):
|
||||
|
||||
table = fresh_db["searchable"]
|
||||
table.insert_all(search_records)
|
||||
table.enable_fts(["text", "country"])
|
||||
|
||||
query = "cat's"
|
||||
result = fresh_db.quote_fts(query)
|
||||
# Executing query does not crash.
|
||||
list(table.search(result))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue