Files
2026-05-18 06:40:19 +00:00

9 lines
225 B
SQL

SELECT cc.relname as table,
ci.relname as index
FROM pg_index i
JOIN pg_class cc ON (cc.oid = i.indrelid)
JOIN pg_class ci ON (ci.oid = i.indexrelid)
WHERE ci.relname = 'idx_normal_distro_name'
ORDER BY 1;