mod_storage_sql: Improve check for old table index on PostgreSQL

The "pg_indexes" view is much simpler to inspect than "pg_class"
This commit is contained in:
Kim Alvefur 2023-06-16 23:57:15 +02:00
parent b2cc309529
commit f70ab44b4c

View file

@ -854,7 +854,7 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
indices[row[1]] = true;
end
elseif params.driver == "PostgreSQL" then
for row in engine:select [[SELECT "relname" FROM "pg_class" WHERE "relname"='prosody_index';]] do
for row in engine:select [[SELECT "relname" FROM "pg_indexes" WHERE "tablename"='prosody' AND "indexname"='prosody_index';]] do
indices[row[1]] = true;
end
end