Skip to content
Snippets Groups Projects
Commit 17795161 authored by Erik Johnston's avatar Erik Johnston
Browse files

Merge pull request #289 from matrix-org/markjh/fix_sql

Fix order of ON constraints in _get_rooms_for_user_where_membership
parents 8a519ac7 cf110088
No related branches found
No related tags found
No related merge requests found
......@@ -142,12 +142,12 @@ class RoomMemberStore(SQLBaseStore):
sql = (
"SELECT m.room_id, m.sender, m.membership, m.event_id, e.stream_ordering"
" FROM room_memberships as m"
" INNER JOIN current_state_events as c"
" ON e.event_id = c.event_id "
" INNER JOIN events as e "
" ON m.event_id = c.event_id "
" AND m.room_id = c.room_id "
" FROM current_state_events as c"
" INNER JOIN room_memberships as m"
" ON m.event_id = c.event_id"
" INNER JOIN events as e"
" ON e.event_id = c.event_id"
" AND m.room_id = c.room_id"
" AND m.user_id = c.state_key"
" WHERE %s"
) % (where_clause,)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment