mirror of
https://github.com/element-hq/synapse.git
synced 2025-03-31 03:45:13 +00:00
Make natural join inner join
Co-authored-by: Erik Johnston <erik@matrix.org>
This commit is contained in:
parent
fdf8346944
commit
e20f18a766
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue