This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- checklist_1c_fixed.sql | |
| WITH checks AS ( | |
| -- 1. Проверка распухания таблиц (BLOAT) | |
| SELECT | |
| 'BLOAT' as category, | |
| 'Распухание таблиц (мёртвые строки > 20%)' as check_name, | |
| COUNT(*) as problems_count, | |
| ARRAY_AGG(n.nspname || '.' || s.relname) as problem_items, | |
| CASE WHEN COUNT(*) > 0 THEN 'ЕСТЬ ПРОБЛЕМЫ' ELSE 'OK' END as status, | |
| 'VACUUM/автоочистка' as solution |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Igor Borges <igor@borges.me> | |
| _pkgname=mmex | |
| pkgname=mmex-git | |
| pkgver=1.1.r347.gc991818 | |
| pkgrel=1 | |
| pkgdesc="Money Manager Ex, git version" | |
| arch=('i686' 'x86_64') | |
| url="http://www.moneymanagerex.org/" | |
| license=('GPL') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Maintainer: Igor Borges <igor@borges.me> | |
| _pkgname=mmex | |
| pkgname=mmex-git | |
| pkgver=1.1.r347.gc991818 | |
| pkgrel=1 | |
| pkgdesc="Money Manager Ex" | |
| arch=('i686' 'x86_64') | |
| url="http://www.moneymanagerex.org/" | |
| license=('GPL') |