mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Make natural join inner join
Co-authored-by: Erik Johnston <erik@matrix.org>
This commit is contained in:
parent
fdf8346944
commit
e20f18a766
@ -88,8 +88,8 @@ class EventForwardExtremitiesStore(SQLBaseStore):
|
||||
sql = """
|
||||
SELECT event_id, state_group, depth, received_ts
|
||||
FROM event_forward_extremities
|
||||
NATURAL JOIN event_to_state_groups
|
||||
NATURAL JOIN events
|
||||
INNER JOIN event_to_state_groups USING (event_id)
|
||||
INNER JOIN events INNER JOIN USING (event_id)
|
||||
WHERE room_id = ?
|
||||
"""
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user