mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 21:44:52 -04:00
Throw if unrecognized DB type
This commit is contained in:
parent
b9acef5301
commit
976cb5aaa8
1 changed files with 4 additions and 1 deletions
|
@ -419,5 +419,8 @@ def _parse_query(database_engine, search_term):
|
|||
|
||||
if isinstance(database_engine, PostgresEngine):
|
||||
return " & ".join(result + ":*" for result in results)
|
||||
else:
|
||||
elif isinstance(database_engine, Sqlite3Engine):
|
||||
return " & ".join(result + "*" for result in results)
|
||||
else:
|
||||
# This should be unreachable.
|
||||
raise Exception("Unrecognized database engine")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue