summary refs log tree commit diff
path: root/synapse/storage/engines/sqlite.py
diff options
context:
space:
mode:
authorJonathan de Jong <jonathan@automatia.nl>2021-02-04 14:29:47 +0100
committerGitHub <noreply@github.com>2021-02-04 08:29:47 -0500
commit2814028ce57264d9ea1e97811a727793f301ee5b (patch)
treefc9088a81c866f0333d4b8d80eaf3a79aef02401 /synapse/storage/engines/sqlite.py
parentAdd debug logging to DNS SRV requests. (#9305) (diff)
downloadsynapse-2814028ce57264d9ea1e97811a727793f301ee5b.tar.xz
Add experimental support for PyPy. (#9123)
* Adds proper dependencies.
* Minor fixes in database layer.
Diffstat (limited to 'synapse/storage/engines/sqlite.py')
-rw-r--r--synapse/storage/engines/sqlite.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/storage/engines/sqlite.py b/synapse/storage/engines/sqlite.py
index 5db0f0b520..b3d1834efb 100644
--- a/synapse/storage/engines/sqlite.py
+++ b/synapse/storage/engines/sqlite.py
@@ -12,6 +12,7 @@
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
+import platform
 import struct
 import threading
 import typing
@@ -30,6 +31,11 @@ class Sqlite3Engine(BaseDatabaseEngine["sqlite3.Connection"]):
         database = database_config.get("args", {}).get("database")
         self._is_in_memory = database in (None, ":memory:",)
 
+        if platform.python_implementation() == "PyPy":
+            # pypy's sqlite3 module doesn't handle bytearrays, convert them
+            # back to bytes.
+            database_module.register_adapter(bytearray, lambda array: bytes(array))
+
         # The current max state_group, or None if we haven't looked
         # in the DB yet.
         self._current_state_group_id = None