mod_storage_sql: Be more specific when checking for old index in SQLite3

Prevents false positives in the odd case where something other than an
index with this name might exist.
This commit is contained in:
Kim Alvefur 2023-06-17 00:00:21 +02:00
parent f70ab44b4c
commit a45c06b51f

View file

@ -850,7 +850,7 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
local indices = {};
engine:transaction(function ()
if params.driver == "SQLite3" then
for row in engine:select [[SELECT "name" from "sqlite_schema" WHERE "name"='prosody_index';]] do
for row in engine:select [[SELECT "name" FROM "sqlite_schema" WHERE "type"='index' AND "tbl_name"='prosody' AND "name"='prosody_index';]] do
indices[row[1]] = true;
end
elseif params.driver == "PostgreSQL" then