From e860316818da4bd643d567708adb8d104f4a3351 Mon Sep 17 00:00:00 2001
From: David Robertson <davidr@element.io>
Date: Tue, 29 Nov 2022 13:05:07 +0000
Subject: [PATCH] Fix `UndefinedColumn: column "key_json" does not exist`
 errors when handling users with more than 50 non-E2E devices (#14580)

---
 synapse/storage/databases/main/devices.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/synapse/storage/databases/main/devices.py b/synapse/storage/databases/main/devices.py
index 1e83c62753..0378035cff 100644
--- a/synapse/storage/databases/main/devices.py
+++ b/synapse/storage/databases/main/devices.py
@@ -1559,6 +1559,7 @@ class DeviceBackgroundUpdateStore(SQLBaseStore):
             # that ensures we keep at most 50 devices.
             sql = """
                 SELECT last_seen FROM devices
+                LEFT JOIN e2e_device_keys_json USING (user_id, device_id)
                 WHERE
                     user_id = ?
                     AND NOT hidden
-- 
GitLab