mod_storage_sql: Add index covering sort_id to improve performance (fixes #1505)

This commit is contained in:
Kim Alvefur 2020-03-22 21:05:59 +01:00
parent 89af997157
commit 65a654d726

View file

@ -500,6 +500,7 @@ local function create_table(engine) -- luacheck: ignore 431/engine
Index { name="prosodyarchive_index", unique = engine.params.driver ~= "MySQL", "host", "user", "store", "key" };
Index { name="prosodyarchive_with_when", "host", "user", "store", "with", "when" };
Index { name="prosodyarchive_when", "host", "user", "store", "when" };
Index { name="prosodyarchive_sort", "host", "user", "store", "sort_id" };
};
engine:transaction(function()
ProsodyArchiveTable:create(engine);