mention MariaDB in descriptions and notes

This commit is contained in:
robertsilen 2024-05-30 13:53:34 +03:00
parent 554d99e58b
commit 172ada9e20
7 changed files with 25 additions and 15 deletions

6
plugins/modules/mysql_query.py Normal file → Executable file
View file

@ -10,9 +10,9 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
module: mysql_query
short_description: Run MySQL queries
short_description: Run MySQL or MariaDB queries
description:
- Runs arbitrary MySQL queries.
- Runs arbitrary MySQL or MariaDB queries.
- Pay attention, the module does not support check mode!
All queries will be executed in autocommit mode.
- To run SQL queries from a file, use M(community.mysql.mysql_db) module.
@ -56,6 +56,8 @@ attributes:
support: none
seealso:
- module: community.mysql.mysql_db
notes:
- Compatible with MariaDB or MySQL
author:
- Andrew Klychkov (@Andersson007)
extends_documentation_fragment: