-
Improvement
-
Resolution: Fixed
-
Minor
-
3.3.2
-
Nginx 1.19.6, PostgreSQL 13.1, PHP 7.4.14
Currently it makes 3 queries to get database size:
- Check if function pg_database_size()
exists - Get the database OID
- Finally, get database size
It could be rewritten to use the function pg_database_size() directly, which is available since PostgreSQL 8.1, and phpBB according to the user guide requires 8.3 or greater.