Added PKEY index in the index statistics summary. #8971

pull/9013/head
Rohit Bhati 2025-07-31 17:12:15 +05:30 committed by GitHub
parent 99b822e472
commit 3b9359945e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -14,5 +14,5 @@ FROM
WHERE
schemaname = '{{schema}}'
AND stat.relname = '{{table}}'
AND con.contype IS NULL
AND (con.contype IS NULL OR con.contype = 'p')
ORDER BY indexrelname;

View File

@ -13,5 +13,5 @@ FROM
WHERE
schemaname = '{{schema}}'
AND stat.relname = '{{table}}'
AND con.contype IS NULL
AND (con.contype IS NULL OR con.contype = 'p')
ORDER BY indexrelname;