mirror of
https://github.com/element-hq/synapse.git
synced 2026-08-28 23:08:22 +00:00
Add index on events (topological_ordering, stream_ordering) to help with ORDER BY clauses
This commit is contained in:
@@ -0,0 +1 @@
|
||||
CREATE INDEX events_order ON events (topological_ordering, stream_ordering);
|
||||
@@ -29,6 +29,7 @@ CREATE TABLE IF NOT EXISTS events(
|
||||
|
||||
CREATE INDEX events_stream_ordering ON events (stream_ordering);
|
||||
CREATE INDEX events_topological_ordering ON events (topological_ordering);
|
||||
CREATE INDEX events_order ON events (topological_ordering, stream_ordering);
|
||||
CREATE INDEX events_room_id ON events (room_id);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user