mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -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 = """
|
sql = """
|
||||||
SELECT event_id, state_group, depth, received_ts
|
SELECT event_id, state_group, depth, received_ts
|
||||||
FROM event_forward_extremities
|
FROM event_forward_extremities
|
||||||
NATURAL JOIN event_to_state_groups
|
INNER JOIN event_to_state_groups USING (event_id)
|
||||||
NATURAL JOIN events
|
INNER JOIN events INNER JOIN USING (event_id)
|
||||||
WHERE room_id = ?
|
WHERE room_id = ?
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user