mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
sanity
This commit is contained in:
parent
1d56f80976
commit
e40ff32d3d
1 changed files with 5 additions and 5 deletions
|
@ -662,10 +662,10 @@ class MySQL_Info(object):
|
||||||
|
|
||||||
def __get_databases(self, exclude_fields, return_empty_dbs):
|
def __get_databases(self, exclude_fields, return_empty_dbs):
|
||||||
"""Get info about databases."""
|
"""Get info about databases."""
|
||||||
|
|
||||||
def is_field_included(field_name):
|
def is_field_included(field_name):
|
||||||
return not exclude_fields or f'db_{field_name}' not in exclude_fields
|
return not exclude_fields or f'db_{field_name}' not in exclude_fields
|
||||||
|
|
||||||
def create_db_info(db_data):
|
def create_db_info(db_data):
|
||||||
info = {}
|
info = {}
|
||||||
if is_field_included('size'):
|
if is_field_included('size'):
|
||||||
|
@ -680,14 +680,14 @@ class MySQL_Info(object):
|
||||||
query_parts.append('SUM(data_length + index_length) AS "size"')
|
query_parts.append('SUM(data_length + index_length) AS "size"')
|
||||||
if is_field_included('table_count'):
|
if is_field_included('table_count'):
|
||||||
query_parts.append('COUNT(table_name) as "tables"')
|
query_parts.append('COUNT(table_name) as "tables"')
|
||||||
|
|
||||||
query = f"{', '.join(query_parts)} FROM information_schema.TABLES GROUP BY table_schema"
|
query = f"{', '.join(query_parts)} FROM information_schema.TABLES GROUP BY table_schema"
|
||||||
|
|
||||||
# Get and process databases with tables
|
# Get and process databases with tables
|
||||||
databases = self.__exec_sql(query) or []
|
databases = self.__exec_sql(query) or []
|
||||||
for db in databases:
|
for db in databases:
|
||||||
self.info['databases'][db['name']] = create_db_info(db)
|
self.info['databases'][db['name']] = create_db_info(db)
|
||||||
|
|
||||||
# Handle empty databases if requested
|
# Handle empty databases if requested
|
||||||
if return_empty_dbs:
|
if return_empty_dbs:
|
||||||
empty_databases = self.__exec_sql('SHOW DATABASES') or []
|
empty_databases = self.__exec_sql('SHOW DATABASES') or []
|
||||||
|
|
Loading…
Add table
Reference in a new issue