May 17, 2026, 11:40 PM
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user