mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
f70ab44b4c
commit
a45c06b51f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue