diff options
author | Erik Johnston <erik@matrix.org> | 2015-12-02 13:50:43 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-12-02 13:50:43 +0000 |
commit | 976cb5aaa8e052a27b1dc249798e12c80e8aa329 (patch) | |
tree | 7600312c30920f3c9742f8085fe806e0a8ef7a27 /synapse/storage | |
parent | Fix so highlight matching works again (diff) | |
download | synapse-976cb5aaa8e052a27b1dc249798e12c80e8aa329.tar.xz |
Throw if unrecognized DB type
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/search.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/storage/search.py b/synapse/storage/search.py index fd7b688cf5..39f600f53c 100644 --- a/synapse/storage/search.py +++ b/synapse/storage/search.py @@ -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") |