Add index on events (topological_ordering, stream_ordering) to help with ORDER BY clauses
This commit is contained in:
parent
6606f7c659
commit
cce5d057d3
|
@ -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);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue