mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
Cut fstring for Python < 3.6
This commit is contained in:
parent
e40ff32d3d
commit
0f4ec7acea
1 changed files with 2 additions and 2 deletions
|
@ -664,7 +664,7 @@ class MySQL_Info(object):
|
||||||
"""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 'db_{}'.format(field_name) not in exclude_fields
|
||||||
|
|
||||||
def create_db_info(db_data):
|
def create_db_info(db_data):
|
||||||
info = {}
|
info = {}
|
||||||
|
@ -681,7 +681,7 @@ class MySQL_Info(object):
|
||||||
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 = "{} FROM information_schema.TABLES GROUP BY table_schema".format(", ".join(query_parts))
|
||||||
|
|
||||||
# Get and process databases with tables
|
# Get and process databases with tables
|
||||||
databases = self.__exec_sql(query) or []
|
databases = self.__exec_sql(query) or []
|
||||||
|
|
Loading…
Add table
Reference in a new issue