2022-12-06 17:41:46 -06:00
|
|
|
SELECT
|
|
|
|
indexname AS index_name,
|
2024-03-12 10:20:48 +05:30
|
|
|
pg_size_pretty(pg_table_size(('"' || schemaname || '"."' || indexname || '"')::regclass)) AS index_size,
|
2022-12-06 17:41:46 -06:00
|
|
|
indexdef AS index_definition
|
|
|
|
FROM
|
|
|
|
pg_indexes
|
|
|
|
WHERE
|
|
|
|
schemaname = $1
|
|
|
|
AND tablename = $2
|