summary refs log tree commit diff
path: root/synapse/storage/engines/sqlite.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-01-28 13:44:21 +0000
committerGitHub <noreply@github.com>2020-01-28 13:44:21 +0000
commit02b44db922f01a35787d2535a834c9774b68020b (patch)
tree0633655539933d9d054f7f0e774b66e6e2ec00f0 /synapse/storage/engines/sqlite.py
parentMerge branch 'master' into develop (diff)
downloadsynapse-02b44db922f01a35787d2535a834c9774b68020b.tar.xz
Warn if postgres database has non-C locale. (#6734)
As using non-C locale can cause issues on upgrading OS.
Diffstat (limited to 'synapse/storage/engines/sqlite.py')
-rw-r--r--synapse/storage/engines/sqlite.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/storage/engines/sqlite.py b/synapse/storage/engines/sqlite.py

index cbf52f5191..641e490697 100644 --- a/synapse/storage/engines/sqlite.py +++ b/synapse/storage/engines/sqlite.py
@@ -59,6 +59,11 @@ class Sqlite3Engine(object): if version < (3, 11, 0): raise RuntimeError("Synapse requires sqlite 3.11 or above.") + def check_new_database(self, txn): + """Gets called when setting up a brand new database. This allows us to + apply stricter checks on new databases versus existing database. + """ + def convert_param_style(self, sql): return sql